Quantcast
Channel: help - Forum - FlexGet
Viewing all 837 articles
Browse latest View live

Flexget downloaded same episode twice


[help] configuration movie download

$
0
0

@bymem wrote:

Hi, i really hope some one can help. And its properly because i can't understand how to configure flex get properly, im finde the documentation a bit lacking for new users. So im having a had time figuring out how to setup it up properly.

Im trying to set up flex get, to start with a simple movie download from a imdb watchlist.
my config

tasks:
#  UPDATE-OWNED:
#    template: GET-OWNED
#    priority: 1

  UPDATE-WANTED:
    template: GET-WANTED
    priority: 2

  SEARCH-MOVIES:
    template: SEARCH-MOVIES
    priority: 3





templates:
  GET-OWNED:
    filesystem:
      path:
        - [DIR]
      recursive: true
      retrieve: files
      regexp: '.*\.(avi|mkv|mp4|m4v)$'
    accept_all: yes
    list_add:
      - movie_list: ownedmovies

  GET-WANTED:
    imdb_watchlist:
      user_id: [IMDB_USER]
      list: watchlist
    accept_all: yes
    list_add:
      - movie_list: wantedmovies

  SEARCH-MOVIES:
    discover:
      release_estimations:
        optimistic: 60 days
      interval: 1 seconds
      what:
        - movie_list: wantedmovies
      from:
        - newznab:
            website: [SITE]
            apikey: [KEY]
            category: movie
    content_size:
      min: 3000
      max: 15000
      strict: no
    regexp:
      from: title
      reject:
        - german
    sabnzbd:
      key: [KEY]
      url: [URL]
      category: movies

I have set this up to a test imdb account to only have one film for testing purposes. And when running flex get this works.
BUT this always ends up with

Summary - Accepted: 0 (Rejected: 4 Undecided: 5 Failed: 0)

and no movies are sent to sabnzbd

i tried adding accept_all before sabnzbd but that resulted in it sending all 5 movies to sabnzbd? I though it only would take one or? What am i missing? Hope someone can help.

Posts: 13

Participants: 3

Read full topic

Anime Rename (2 - 04 to s02e04 instead of s01e02)

$
0
0

@Merwenus wrote:

[Naruto-Kun.Hu] Attack on Titan 2 - 04 [720p].mp4

Became

Attack on Titan - s01e02 - That Day: The Fall of Shiganshina, Part 2.mp4

Instead of

Attack on Titan - s02e04 - Soldier.mp4

Can someone help me to make it smarter to recognize 2 - 04 as s02e04? There are a few new renaming plugins in flexget, but not really familiar with them, and I hope someone already made something clever to achieve what I need.

This is the current downloading/renaming task for anime:

tasks:
  Anime:
    priority: 40
    rss: https://www.nyaa.se/?page=rss
    verify_ssl_certificates: no
    template: ja
    thetvdb_lookup: yes
    set:
      content_filename: "{{ tvdb_series_name|default(series_name)|replace('/','-')|replace('~','-')|replace(':',' -')|replace('?','_') }} - s{{ tvdb_season|pad(2) }}e{{ tvdb_episode|pad(2) }} - {{ tvdb_ep_name|default('')|replace('/','-')|replace('~','-')|replace(':',' -')|replace('?','_') }}"
      rename_like_files: yes
    transmission:
      host: synology
      port: 9091
      username: username
      password: password
      path: "/volume1/Downloads/!Anime/Series/{{series_name}}/"

Thanks for your help!

Posts: 1

Participants: 1

Read full topic

Missing something in populate-series-db

$
0
0

@bymem wrote:

hi, im trying to follow the settings made by @jonybat here:

But i think maybe it's missing something, and im do not understand flexget enough to find out what is missing.
But he's has these taks to populate a series db with the episodes he allready have, fill the series list from trakt, and discover and download then (i hope that is what he doing, and i did'nt miss enything)

tasks:
  populate-series-db:
    priority: 10
    template:
      - series-metainfo
    seen: local
    filesystem:
      path: "{? folder.root ?}{? folder.series ?}"
      recursive: yes
      retrieve: files
      regexp: '.*\.(avi|mkv|mp4)$'
    accept_all: yes
    configure_series:
      from:
        filesystem:
          path: "{? folder.root ?}{? folder.series ?}"
          retrieve: dirs
      settings:
        tracking: no

  fill-series-list:
    priority: 11
    template:
      - disable-seen-retry
      - series-metainfo
    list_clear:
      what:
        - entry_list: trakt-series
    trakt_list:
      account: "{? trakt.account ?}"
      list: "{? trakt.series ?}"
      type: shows
    accept_all: yes
    set:
      title: "{{tvdb_series_name|escape|replace(''', '')}}"
    list_add:
      - entry_list: trakt-series

  download-series-discover:
    priority: 12
    template:
      - series
      - reject
      - sabnzbd-series
    discover:
      release_estimations: strict
      interval: 15 minutes
      what:
        - next_series_episodes:
            from_start: yes
      from:
        - newznab:
            website: {? newznsb.website ?}
            apikey: {? newznab.apikey ?}
            category: tv

templates:
  series:
    thetvdb_lookup: yes
    tvmaze_lookup: yes
    configure_series:
      from:
        entry_list: trakt-series
      settings:
        identified_by: ep
        timeframe: 16 hours
        target: hdtv+ 720p !10bit !h265
        quality: webrip+ 720p !10bit !h265
        propers: 16 hours
        specials: yes
    content_size:
      min: 350
    content_filter:
      require:
        - '*.mkv'

this is working and runing, BUT this for me scans all my series. Finds my watchlist on trackt. and Start finding ALL episodes and start downloading then, regardless if i have then or not.

what is the task missing?

Posts: 4

Participants: 2

Read full topic

Prefer quality movies

$
0
0

@bymem wrote:

Hi all. I hope some one would help because tried to read up on the quality plugin but can't understand it. And it don't seems like it does what i want.

How do et setup it should go for 720p but can take a 1080p if no 720p are available.
And it should prefer dts or truehd, but they are not require.

my current config looks like this. but that always downloads a 1080p

quality:
      - 720p
      - "!cam !workprint !ts !tc !r5 !hdrip !tvrip !sdtv !webrip !webdl"`

hope some one wants to help, thanks.

Posts: 1

Participants: 1

Read full topic

Specify directory for clean_transmission via run_task or Cli?

$
0
0

@DickVicious wrote:

Hi,

I have a task that uploads files to a server from a directory and I would like to have it remove & delete that single torrent from transmission upon successful upload. However I cant seem to figure out a way to pass the directory to the clean transmission task so that it only removes that one. Is it possible to pass parameters/variables to other tasks?

Currently this is what I have for the clean transmission task, however this seems kind of "lazy" and sometimes it deletes torrents before flexget has time to do anything with them.

  Clean-Transmission:
    priority: 20
    template:
      - maintenance-global
    clean_transmission:
      host: '{? transmission.host ?}'
      port: 9091
      username: '{? transmission.username ?}'
      password: '{? transmission.password ?}'
      delete_files: yes
      finished_for: 6 hours
      directories:
        - '{? transmission.regex_tv ?}'
        - '{? transmission.regex_movies ?}'

Things I have tried:
- Run_task doesn't seem to provide that functionality
- Using exec to call flexget with the "--cli-config" option, this doesn't seem to actually do anything when running as a daemon, and I haven't seen a way to have it not be sent to the daemon when its running.
- Using exec to call flexget with the inject command. Doesn't seem to allow me to pass anything.

Posts: 1

Participants: 1

Read full topic

Sftp fails, garbage packet received

$
0
0

@bymem wrote:

can some help me, im trying to download from sftp. and the download starts fine, but then this happens and fails.

move-movies-seed-local Failed to download **** (Garbage packet received)

more here, is it a bug or?

Exception in thread Thread-5:
Traceback (most recent call last):
  File "/usr/lib/python3.4/threading.py", line 920, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3.4/threading.py", line 868, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/local/lib/python3.4/dist-packages/paramiko/sftp_file.py", line 488, in _prefetch_thread
    num = self.sftp._async_request(self, CMD_READ, self.handle, long(offset), int(length))
  File "/usr/local/lib/python3.4/dist-packages/paramiko/sftp_client.py", line 754, in _async_request
    self._send_packet(t, msg)
  File "/usr/local/lib/python3.4/dist-packages/paramiko/sftp.py", line 170, in _send_packet
    self._write_all(out)
  File "/usr/local/lib/python3.4/dist-packages/paramiko/sftp.py", line 133, in _write_all
    n = self.sock.send(out)
  File "/usr/local/lib/python3.4/dist-packages/paramiko/channel.py", line 767, in send
    return self._send(s, m)
  File "/usr/local/lib/python3.4/dist-packages/paramiko/channel.py", line 1134, in _send
    raise socket.error('Socket is closed')
OSError: Socket is closed

Posts: 1

Participants: 1

Read full topic

Flexget giving me an Illegal Instruction error!

$
0
0

@Joey_Laverde wrote:

I can run version checks but when i attempt to do a check on my config the log trace ends at torrent_cache.py and returns illegal instruction error? Any help would be appreciated.

Posts: 1

Participants: 1

Read full topic


Flexget seems to be executing but no torrent is passed through

$
0
0

@gurgle wrote:

I'm running Flexget and Transmission in separate LXC containers. I have flexget grabbing torrents based on regex on a RSS feed, passing to Transmission and notifying via Pushbullet. When I first set it up and manually run flexget execute it runs as expected, everything works. But when i let cron run it, it appears to execute as normal - get a pushbullet notification when a new torrent matching the regext is posted, but nothing is downloaded. Any suggestions?

which flexget -
/usr/local/bin/flexget

crontab -
*/30 * * * * /usr/local/bin/flexget --cron execute

config -

    templates:
      trans:
        transmission:
          host: 192.168.0.201
          port: 9091
          username: <username>
          password: <password>
          path: /mnt/storage/incoming
    #      addpaused: Yes
          ratio: 0
      pushbullet:
        notify:
          entries:
            title: "New"
            message: "check torrents"
            via:
              - pushbullet:
                  api_key: "<key>"
                  device: "<device>"
    tasks:
      torrent:
        rss: <rss feed>
        regexp:
          accept:
            - <regex>
        template: trans
        template: pushbullet

Posts: 9

Participants: 3

Read full topic

BUG Unhandled error in plugin discover: 'NoneType' object has no attribute 'text'

$
0
0

@batong wrote:

Hi,
I upgraded my Flexget to the latest version yesterday, and after some tweaking of my config.yml script, all was working fine. But this morning, I am getting the following error:

    2017-05-03 16:00 CRITICAL task          trakt_movies_search BUG: Unhandled error in plugin discover: 'NoneType' object has no attribute 'text'
    2017-05-03 16:00 CRITICAL manager       trakt_movies_search An unexpected crash has occurred. Writing crash report to /home/pi/.flexget/crash_report.2017.05.03.160045285820.log. Please verify you are running the latest version of flexget by using "flexget -V" from CLI or by using version_checker plugin at http://flexget.com/wiki/Plugins/version_checker. You are currently using version 2.10.40
    2017-05-03 16:00 WARNING  task          trakt_movies_search Aborting task (plugin: discover)

Crash report:

pi@plex ~/.flexget $ cat /home/pi/.flexget/crash_report.2017.05.03.160045285820.log
2017-05-03 16:00 DEBUG    manager                       Figuring out config load paths
2017-05-03 16:00 DEBUG    manager                       Found config: /home/pi/.flexget/config.yml
2017-05-03 16:00 DEBUG    manager                       Config file /home/pi/.flexget/config.yml selected
2017-05-03 16:00 CRITICAL task          trakt_movies_search BUG: Unhandled error in plugin discover: 'NoneType' object has no attribute 'text'
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/flexget/task.py", line 483, in __run_plugin
    return method(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/flexget/event.py", line 23, in __call__
    return self.func(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/input/discover.py", line 290, in on_task_input
    return self.execute_searches(config, entries, task)
  File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/input/discover.py", line 155, in execute_searches
    search_results = search.search(task=task, entry=entry, config=plugin_config)
  File "/usr/local/lib/python2.7/dist-packages/flexget/plugin.py", line 118, in wrapped_func
    return func(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/sites/iptorrents.py", line 150, in search
    entry['title'] = torrent.findPrevious('a', attrs={'class': 'b'}).text
AttributeError: 'NoneType' object has no attribute 'text'

Apparently I am on the latest release:

flexget -V
2.10.40
You are on the latest release.

Config.yml:

   trakt_movies_search:
     template: movie
     priority: 3 # run after the movie queue fill task
     discover:
       what:
         - movie_list: traktmovielist
       from:
         - extratorrent:
             category: movies
         - iptorrents:
             rss_key: '{? iptorrents.passkey ?}'
             uid: '{? iptorrents.uid ?}'
             password: '{? iptorrents.pass ?}'
             category: Movie-HD-Bluray
         - piratebay:
             category: "highres movies"
             sort_by: seeds
         - rarbg:
             category: [ 42, 44, 45 ]
       interval: 1 hour
     list_match:
       from:
         - movie_list: traktmovielist

Python version 2.7.3

What to do?

Posts: 4

Participants: 2

Read full topic

How to deal with magnets and renaming files?

Flexget RSS + Sonarr

$
0
0

@ichihaifu wrote:

Hi, I want to accomplish following:
Fetch RSS feed content and download whatever shows are matched from my Sonarr list of series.

Here is what I tried this with:

schedules:
  - tasks: '*'
    interval:
      minutes: 15

tasks:
  rss_feed:
    rss: https://******
    list_match:
      from:
        - sonarr_list:
            base_url: http://****
            port: ****
            api_key: *****
            include_data: yes
            include_ended: false
            only_monitored: true
      remove_on_match: no
    quality: 1080p
    download: /filepath

I am not getting any errors with this, however the feed items are skipped and I don't know why..
I thought maybe it has something to do with the fact that sonarr is also set to fetch the items elsewhere, and the torrent is actually already downloading (this is intentional, I want to seed on another tracker than the initial download source), but there was no indication that this would be an issue.

The feed was working with

accept_all: yes

replacing the match_list block, however it was obviously downloading everything.

Could someone help me with this, I don't want it to be too complex as this is only meant to download me the second torrent file which is used to seed the original file obtained by sonarr itself.

Posts: 2

Participants: 2

Read full topic

Seen not ignoring quality

$
0
0

@jacknicholsn wrote:

Hi everyone,

I am new to Flexget and have tried to create a script to import movies and shows from RSS feeds - this also seems to be working fairly okay. I have one issue thou; on TV shows I would like the quality to be 720p which work great, but for movies I want quality ranging from 720p to 1080p but I only want one of them. Every time an RSS feed comes in that meets my requirements, it downloads both qualities, which is fairly annoying since I end up having to versions of everything all the time.

What is wrong with my script, why does the "seen" feature not disqualify one of the items automatically since it would be the same movie and everything, but just in different qualities?

Does that make sense?

Please see my script below.

Thanks

/JN

SCRIPT:

schedules:
  - tasks: [TV-SHOWS,IMDB-Min66-Movies]
    interval:
      minutes: 15

templates:
  tv:
    deluge:
      port: 2953
    configure_series:
      settings:
        quality: hdtv-bluray h264 720p
        propers: no
      from:
        trakt_list:
          username: steffensylvest
          list: watchlist
          type: shows
          strip_dates: yes
    content_size:
      min: 200
      max: 2000
      strict: no
    inputs:
      - rss:
          url: RSS_TV_FEED_1
          all_entries: no
          url: RSS_TV_FEED_2
          all_entries: no
          url: RSS_TV_FEED_3
          all_entries: no
          url: RSS_TV_FEED_4
          all_entries: no

  imdbMinimum:
    deluge:
      port: 2953
    quality: hdtv+ h264 720p+
    imdb:
      min_votes: 100
      min_score: 6.6
      min_year: 2012
    regexp:
      reject:
      from: imdb_genres
        - horror
      from: title
      reject:
        - msd
        - afg
        - line
        - hc
        - korsub
        - dvdr
    content_size:
      min: 900
      max: 8500
      strict: no
    content_filter:
      reject: '*.iso'
    inputs:
      - rss:
          url: RSS_MOVIE_FEED_1
          all_entries: no
          url: RSS_MOVIE_FEED_2
          all_entries: no
          url: RSS_MOVIE_FEED_3
          all_entries: no
          url: RSS_MOVIE_FEED_4
          all_entries: no

tasks:
  IMDB-Min66-Movies:
    priority: 2
    template:
      - imdbMinimum

  TV-SHOWS:
    template: tv
    priority: 1

Posts: 10

Participants: 2

Read full topic

The key 'rarbg' is not valid here. Only known plugin names are valid keys

Flexget error with daemon but no error when run manually

$
0
0

@The-red-pill wrote:

Hi There,

I am getting an error when i run the daemon in the background but if i kill it and run manually it works fine and downloads my torrents as it should.

Really don't know why - i am really guessing corrupt database - so how dangerous is it the run the reset command ?

PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)"
NAME="Raspbian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"

root@VINDEBIAN:~# python -V
Python 2.7.9

root@VINDEBIAN:~# flexget check
2017-05-16 23:13 WARNING  check                         Config line 13 is likely missing ':' at the end
2017-05-16 23:13 VERBOSE  check                         Pre-checked 15 configuration lines
2017-05-16 23:13 VERBOSE  check                         Checking config file `/root/.flexget/config.yml`
2017-05-16 23:13 VERBOSE  check                         Config passed check.

**ERROR MSG:**

2017-04-19 00:56 DEBUG    manager                       Traceback:
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/flexget/task_queue.py", line 48, in run
    self.current_task.execute()
  File "/usr/local/lib/python2.7/dist-packages/flexget/task.py", line 72, in wrapper
    return func(self, *args, **kw)
  File "/usr/local/lib/python2.7/dist-packages/flexget/task.py", line 643, in execute
    self.manager.db_cleanup()
  File "/usr/local/lib/python2.7/dist-packages/flexget/manager.py", line 896, in db_cleanup
    fire_event('manager.db_cleanup', self, session)
  File "/usr/local/lib/python2.7/dist-packages/flexget/event.py", line 106, in fire_event
    result = event(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/flexget/event.py", line 23, in __call__
    return self.func(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/operate/status.py", line 145, in db_cleanup
    for status_task in session.query(StatusTask).all():
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/query.py", line 2703, in all
    return list(self)
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/loading.py", line 90, in instances
    util.raise_from_cause(err)
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/util/compat.py", line 203, in raise_from_cause
    reraise(type(exception), exception, tb=exc_tb, cause=cause)
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/loading.py", line 57, in instances
    for query_entity in query._entities
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/query.py", line 3700, in row_processor
    polymorphic_discriminator=self._polymorphic_discriminator
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/loading.py", line 302, in _instance_processor
    context.attributes, "memoized_setups", _none_set)
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/path_registry.py", line 71, in get
    key = (key, self.path)
SystemError: unknown opcode
2017-04-19 00:57 DEBUG    scheduler                     executing tasks: [u'*']
2017-04-19 00:57 DEBUG    scheduler                     task finished executing: <task>
2017-04-19 00:57 INFO     manager       <task>           Running database cleanup.
2017-04-19 00:57 DEBUG    scheduler                     all tasks in schedule finished executing
2017-04-19 00:57 CRITICAL task_queue                    BUG: Unhandled exception during task queue run loop.
2017-04-19 00:57 CRITICAL manager                       An unexpected crash has occurred. Writing crash report to /root/.flexget/crash_report.2017.04.19.005710326704.log. Please verify you are running the latest version of flexget by using "flexget -V" from CLI or by using version_checker plugin at http://flexget.com/wiki/Plugins/version_checker. You are currently using version 2.10.31

The log is old but would be valid if i ran the daemon now in the background so i just run it manually for a while now.

Thank you!

Posts: 1

Participants: 1

Read full topic


Notify:pushover: The keys `message`, `title` are not valid here

$
0
0

@laygo wrote:

I'm truly befuddled as the config is EXACTLY like the Pushover docs on the Wiki:
https://flexget.com/Plugins/Notifiers/pushover

`templates:
    movie-cfg:
        <<: *imdb-list-match
        <<: *movie
        exists_movie:
            - '/home/secretuser/media/video/movie'
        set:
            path: '/home/secretuser/media/video/movie/{{imdb_name}} ({{imdb_year}})/'
        notify:
            entries:
                via:
                    - pushover:
                          user_key: '{? keyz.pushover.user ?}'
                          api_key: '{? keyz.pushover.api ?}'
                          message: '{{imdb_name}} ({{imdb_year}})'
                          title: 'Downloading {{quality}} Movie: {{imdb_name}}'

`

I copied DIRECTLY from the wiki & pasted, it all aligns, WHAT GIVES?

(working on trying to get the code to display correctly)

Posts: 4

Participants: 3

Read full topic

Unkown error when downloading mirrors

$
0
0

@hiru wrote:

Here's the full log: https://pastebin.com/w1arBQSj

At first it accepts 5 entries but then it does not download part of them because

trailing junk - broken or invalid torrent file received

What am I doing wrong? 3 of them are already in transmission, SnB: Virgin Soul and Re-Creators instead fail to download :confused:

Posts: 3

Participants: 2

Read full topic

Problem with header

$
0
0

@najmudin94 wrote:

before this all is working fine and i have add header+user agent
(plugin anidblist)

Traceback (most recent call last):
  File "/ffp/lib/python2.7/site-packages/flexget/task.py", line 486, in __run_plugin
    return method(*args, **kwargs)
  File "/ffp/lib/python2.7/site-packages/flexget/event.py", line 23, in __call__
    return self.func(*args, **kwargs)
  File "/ffp/lib/python2.7/site-packages/flexget/plugins/operate/configure_series.py", line 62, in on_task_prepare
    result = method(task, input_config)
  File "/ffp/lib/python2.7/site-packages/flexget/event.py", line 23, in __call__
    return self.func(*args, **kwargs)
  File "/ffp/lib/python2.7/site-packages/flexget/utils/cached_input.py", line 148, in wrapped_func
    response = func(*args, **kwargs)
  File "/ffp/lib/python2.7/site-packages/flexget/plugins/input/anidb_list.py", line 47, in on_task_input
    page = task.requests.get(url)
  File "/ffp/lib/python2.7/site-packages/requests/sessions.py", line 536, in get
    return self.request('GET', url, **kwargs)
  File "/ffp/lib/python2.7/site-packages/flexget/utils/requests.py", line 247, in request
    result.raise_for_status()
  File "/ffp/lib/python2.7/site-packages/requests/models.py", line 929, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
HTTPError: 403 Client Error: Forbidden for url:

Posts: 1

Participants: 1

Read full topic

Can't install on Raspberry Pi

$
0
0

@avalloneandrea wrote:

I'm having problems installing FlexGet on my Raspberry Pi.
I have issued the following commands:

sudo apt-get install python python-pip
sudo pip install flexget

but the last one give me the following error:

Exception:
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main
status = self.run(options, args)
File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 290, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1266, in prepare_files
req_to_install.extras):
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2401, in requires
dm = self._dep_map
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2597, in _dep_map
self.__dep_map = self._compute_dependencies()
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2621, in _compute_dependencies
parsed = next(parse_requirements(distvers))
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 49, in <lambda>
next = lambda o: o.next()
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2721, in parse_requirements
"version spec")
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2686, in scan_list
raise ValueError(msg, line, "at", line[p:])
ValueError: ('Expected version spec in', 'requests ~=2.16.3', 'at', ' ~=2.16.3')
Storing debug log for failure in /root/.pip/pip.log

What does it means? How to resolve?

Posts: 3

Participants: 2

Read full topic

Input from forum page

$
0
0

@avalloneandrea wrote:

I would like to use a forum thread as the source of a task.
The forum is made with SimplePortal, and require to be logged id on a separate page.
I have tried using the html plugin and its basic authentication features, but I only get a redirect to the login page.
Is there a workaround?

Btw, I'm able to reach the actual page behind the login by using a curl string, but I can't find something like a curl input plugin.

Any help would be appreciated.

Posts: 1

Participants: 1

Read full topic

Viewing all 837 articles
Browse latest View live