Giter Club home page Giter Club logo

Comments (12)

nocksock avatar nocksock commented on May 17, 2024

The last line shows that I can't kill it with ⌃c - I had to kill the process.

from mitmproxy.

karlbright avatar karlbright commented on May 17, 2024

Have had the same issue.

Running OS X Lion 10.7.2 and have installed Urwid(1.0.1) from git clone + setup.py install with no issues.

from mitmproxy.

karlbright avatar karlbright commented on May 17, 2024

Just solved my issue by running the jumping back to stable releases using following commands.

Reinstall Urwid from stable release via PyPi
sudo pip install -I urwid

Reinstall mitmproxy from stable release via PyPi
sudo pip install -I mitmproxy

from mitmproxy.

cortesi avatar cortesi commented on May 17, 2024

Could you please check whether this problem is still present in the current master branch? My testing with Urwid 1.0.1 seems to show that it isn't. If that's the case, I'll close this report since it will be addressed in the next release (a week or two away).

from mitmproxy.

karlbright avatar karlbright commented on May 17, 2024

Can confirm this works correctly with current master branch.

My guess is that it's something recent in the Urwid repo? Installing Urwid via PyPi seems to have fixed the issue.

from mitmproxy.

cortesi avatar cortesi commented on May 17, 2024

OK, closing this. It looks like an incompatibility between the previous version of mitmproxy and cutting-edge Urwid. The current dev version doesn't have this issue, and a new release should be out in the next few weeks.

from mitmproxy.

capt8bit avatar capt8bit commented on May 17, 2024

I am still having this issue on OS X 10.6.8. I just did a git pull

If I install with sudo ARCHFLAGS="-arch i386" pip install -I urwid I get:

Traceback (most recent call last):
  File "/usr/local/bin/mitmproxy", line 61, in <module>
    m.run()
  File "/Library/Python/2.6/site-packages/libmproxy/console/__init__.py", line 507, in run
    self.ui.run_wrapper(self.loop)
  File "/Library/Python/2.6/site-packages/urwid-1.0.1-py2.6-macosx-10.6-universal.egg/urwid/raw_display.py", line 237, in run_wrapper
    return fn()
  File "/Library/Python/2.6/site-packages/libmproxy/console/__init__.py", line 705, in loop
    changed = self.tick(self.masterq)
  File "/Library/Python/2.6/site-packages/libmproxy/flow.py", line 1280, in tick
    return controller.Master.tick(self, q)
  File "/Library/Python/2.6/site-packages/libmproxy/controller.py", line 77, in tick
    self.handle(msg)
  File "/Library/Python/2.6/site-packages/libmproxy/controller.py", line 97, in handle
    m(msg)
  File "/Library/Python/2.6/site-packages/libmproxy/flow.py", line 1358, in handle_clientconnect
    self.add_event("Connect from: %s:%s"%cc.address)
  File "/Library/Python/2.6/site-packages/libmproxy/console/__init__.py", line 891, in add_event
    self.eventlist.set_focus(len(self.eventlist))
  File "/Library/Python/2.6/site-packages/urwid-1.0.1-py2.6-macosx-10.6-universal.egg/urwid/listbox.py", line 144, in set_focus
    raise IndexError
IndexError
Terminated

If I install from urwid's git, or latest stable, I get:


Traceback (most recent call last):
  File "./mitmproxy", line 61, in <module>
    m.run()
  File "/Users/mike/Remote/mitmproxy/libmproxy/console/__init__.py", line 507, in run
    self.ui.run_wrapper(self.loop)
  File "/Library/Python/2.6/site-packages/urwid/raw_display.py", line 237, in run_wrapper
    return fn()
  File "/Users/mike/Remote/mitmproxy/libmproxy/console/__init__.py", line 704, in loop
    size = self.drawscreen()
  File "/Users/mike/Remote/mitmproxy/libmproxy/console/__init__.py", line 687, in drawscreen
    canvas = self.view.render(size, focus=1)
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 132, in cached_render
    canv = fn(self, size, focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/container.py", line 596, in render
    focus and self.focus_part == 'body')
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 132, in cached_render
    canv = fn(self, size, focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/listbox.py", line 351, in render
    focus_canvas = focus_widget.render((maxcol,), focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 132, in cached_render
    canv = fn(self, size, focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 1318, in render
    canv = get_delegate(self).render(size, focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 132, in cached_render
    canv = fn(self, size, focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/container.py", line 867, in render
    focus=focus and    item_focus)
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 132, in cached_render
    canv = fn(self, size, focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/container.py", line 1228, in render
    focus = focus and self.focus_col == i)
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 132, in cached_render
    canv = fn(self, size, focus=focus)
  File "/Library/Python/2.6/site-packages/urwid/widget.py", line 624, in render
    return apply_text_layout(text, attr, trans, maxcol)
  File "/Library/Python/2.6/site-packages/urwid/canvas.py", line 1277, in apply_text_layout
    text[s.offs:s.end])
  File "/Library/Python/2.6/site-packages/urwid/util.py", line 124, in apply_target_encoding
    s = s.encode( _target_encoding )
UnicodeEncodeError: 'ascii' codec can't encode character u'\\u2190' in position 0: ordinal not in range(128)

from mitmproxy.

capt8bit avatar capt8bit commented on May 17, 2024

For Internet Posterity:

To fix my UnicodeEncodeError, cortesi found out that my locale/lang settings were screwed up.

This worked fine: env LANG=en_US.UTF-8 ./mitmproxy

To permanently fix, place the appropriate line within your shell rc file.

eg .bashrc:

export LANG=en_US.UTF-8
export LC_COLLATE=en_US.UTF-8

from mitmproxy.

cortesi avatar cortesi commented on May 17, 2024

Also, commit 3f6619f provides a fall-back for non-unicode terminals, so the crash should not recur either way.

from mitmproxy.

2xyo avatar 2xyo commented on May 17, 2024

Same issue here :

Installation :

$ sudo pip install -v -M -I -U mitmproxy
Using PyPI mirrors: http://g.pypi.python.org/simple/, http://b.pypi.python.org/simple/, http://e.pypi.python.org/simple/, http://d.pypi.python.org/simple/, http://f.pypi.python.org/simple/, http://c.pypi.python.org/simple/, http://a.pypi.python.org/simple/
Downloading/unpacking mitmproxy
  Using version 0.8 (newest of versions: 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8)
  Downloading mitmproxy-0.8.tar.gz (2.8Mb): 2.8Mb downloaded
  Running setup.py egg_info for package mitmproxy
    running egg_info
    creating pip-egg-info/mitmproxy.egg-info
    writing requirements to pip-egg-info/mitmproxy.egg-info/requires.txt
    writing pip-egg-info/mitmproxy.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/mitmproxy.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/mitmproxy.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/mitmproxy.egg-info/SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'pip-egg-info/mitmproxy.egg-info/SOURCES.txt'
    writing manifest file 'pip-egg-info/mitmproxy.egg-info/SOURCES.txt'
Downloading/unpacking urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://pypi.python.org/simple/urwid/): <urlopen error [Errno 113] No route to host>
  Will skip URL http://excess.org/urwid/urwid-0.8.2.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/ (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/ when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.8.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.10.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.6.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.3.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.7.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.4.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://pypi.python.org/simple/urwid/): <urlopen error [Errno 113] No route to host>
  Will skip URL http://excess.org/urwid/urwid-0.8.1.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.8.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.9.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.8.3.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.1.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.5.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.5.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.9.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.2.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.3.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.9.1.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.4.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.8.4.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-1.1.0.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-1.1.0.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-1.0.2.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-1.0.2.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://pypi.python.org/simple/urwid/): <urlopen error [Errno 113] No route to host>
  Will skip URL http://excess.org/urwid/urwid-0.9.8.2.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-1.0.1.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-1.0.1.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://pypi.python.org/simple/urwid/): <urlopen error [Errno 113] No route to host>
  Will skip URL http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.0.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.9.2.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://pypi.python.org/simple/urwid/): <urlopen error [Errno 113] No route to host>
  Will skip URL http://excess.org/urwid/urwid-0.9.7.2.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.8.7.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.6.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-1.0.0.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-1.0.0.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Could not fetch URL http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://pypi.python.org/simple/urwid/): timed out
  Will skip URL http://excess.org/urwid/urwid-0.9.0.tar.gz when looking for download links for urwid>=1.0 (from mitmproxy)
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://d.pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://f.pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://b.pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://c.pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://g.pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://a.pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.2.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.8.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.10.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.10 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.6.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.3.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.4.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.8 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.1.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.9.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.3.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.1.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.5.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.5.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.5 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.9 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.2.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.3.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.1.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.9.1 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.4.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.4.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.8.4 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.0.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.0 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.9.2.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.9.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.8.7.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.8.7 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.8.2.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.8.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.7.2.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.7.2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.6.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.6 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre2.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.0-pre2 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0-pre3.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.0-pre3 doesn't match >=1.0
  Ignoring link http://excess.org/urwid/urwid-0.9.0.tar.gz (from http://e.pypi.python.org/simple/urwid/), version 0.9.0 doesn't match >=1.0
  Using version 1.1.0 (newest of versions: 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.1.0, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.2, 1.0.1, 1.0.1, 1.0.1, 1.0.1, 1.0.1, 1.0.1, 1.0.1, 1.0.1, 1.0.0, 1.0.0, 1.0.0, 1.0.0, 1.0.0, 1.0.0, 1.0.0, 1.0.0)
  Downloading urwid-1.1.0.tar.gz (482Kb): 482Kb downloaded
  Running setup.py egg_info for package urwid
    running egg_info
    creating pip-egg-info/urwid.egg-info
    writing pip-egg-info/urwid.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/urwid.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/urwid.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/urwid.egg-info/SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'pip-egg-info/urwid.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file 'pip-egg-info/urwid.egg-info/SOURCES.txt'
Downloading/unpacking pyasn1 (from mitmproxy)
  Using version 0.1.4 (newest of versions: 0.1.4, 0.1.4, 0.1.4, 0.1.4, 0.1.4, 0.1.4, 0.1.4, 0.1.4, 0.1.3, 0.1.3, 0.1.3, 0.1.3, 0.1.3, 0.1.3, 0.1.3, 0.1.3, 0.1.2, 0.1.2, 0.1.2, 0.1.2, 0.1.2, 0.1.2, 0.1.2, 0.1.2, 0.1.1, 0.1.1, 0.1.1, 0.1.1, 0.1.1, 0.1.1, 0.1.1, 0.1.1, 0.0.13, 0.0.13, 0.0.13, 0.0.13, 0.0.13, 0.0.13, 0.0.13, 0.0.13, 0.0.13b, 0.0.13b, 0.0.13b, 0.0.13b, 0.0.13b, 0.0.13b, 0.0.13b, 0.0.13b, 0.0.13a, 0.0.13a, 0.0.13a, 0.0.13a, 0.0.13a, 0.0.13a, 0.0.13a, 0.0.13a, 0.0.12a, 0.0.12a, 0.0.12a, 0.0.12a, 0.0.12a, 0.0.12a, 0.0.12a, 0.0.12a, 0.0.11a, 0.0.11a, 0.0.11a, 0.0.11a, 0.0.11a, 0.0.11a, 0.0.11a, 0.0.11a, 0.0.10a, 0.0.10a, 0.0.10a, 0.0.10a, 0.0.10a, 0.0.10a, 0.0.10a, 0.0.10a, 0.0.9a, 0.0.9a, 0.0.9a, 0.0.9a, 0.0.9a, 0.0.9a, 0.0.9a, 0.0.9a)
  Downloading pyasn1-0.1.4.tar.gz (74Kb): 74Kb downloaded
  Running setup.py egg_info for package pyasn1
    running egg_info
    creating pip-egg-info/pyasn1.egg-info
    writing pip-egg-info/pyasn1.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/pyasn1.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/pyasn1.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/pyasn1.egg-info/SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'pip-egg-info/pyasn1.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file 'pip-egg-info/pyasn1.egg-info/SOURCES.txt'
Downloading/unpacking pyopenssl>=0.12 (from mitmproxy)
  Could not fetch URL http://d.pypi.python.org/simple/pyopenssl/: HTTP Error 404: Not Found
  Will skip URL http://d.pypi.python.org/simple/pyopenssl/ when looking for download links for pyopenssl>=0.12 (from mitmproxy)
  Could not fetch URL http://f.pypi.python.org/simple/pyopenssl/: HTTP Error 404: Not Found
  Will skip URL http://f.pypi.python.org/simple/pyopenssl/ when looking for download links for pyopenssl>=0.12 (from mitmproxy)
  Could not fetch URL http://c.pypi.python.org/simple/pyopenssl/: HTTP Error 404: Not Found
  Will skip URL http://c.pypi.python.org/simple/pyopenssl/ when looking for download links for pyopenssl>=0.12 (from mitmproxy)
  Could not fetch URL http://b.pypi.python.org/simple/pyopenssl/: HTTP Error 404: Not Found
  Will skip URL http://b.pypi.python.org/simple/pyopenssl/ when looking for download links for pyopenssl>=0.12 (from mitmproxy)
  Could not fetch URL http://g.pypi.python.org/simple/pyopenssl/: HTTP Error 404: Not Found
  Will skip URL http://g.pypi.python.org/simple/pyopenssl/ when looking for download links for pyopenssl>=0.12 (from mitmproxy)
  Could not fetch URL http://e.pypi.python.org/simple/pyopenssl/: HTTP Error 404: Not Found
  Will skip URL http://e.pypi.python.org/simple/pyopenssl/ when looking for download links for pyopenssl>=0.12 (from mitmproxy)
  Ignoring link http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.6.tar.gz#md5=af67fda6d2125cae9c56ee50430a40c7 (from http://pypi.python.org/simple/pyOpenSSL/), version 0.6 doesn't match >=0.12
  Ignoring link http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.9.tar.gz#md5=5bf282b2d6a03af921920c34079580f2 (from http://pypi.python.org/simple/pyOpenSSL/), version 0.9 doesn't match >=0.12
  Ignoring link http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.7.tar.gz#md5=1924edc58c1e99f27763971d9959ea15 (from http://pypi.python.org/simple/pyOpenSSL/), version 0.7 doesn't match >=0.12
  Ignoring link http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.8.tar.gz#md5=c1d86fdeb0cfd33dd42aa243c6a41f5e (from http://pypi.python.org/simple/pyOpenSSL/), version 0.8 doesn't match >=0.12
  Ignoring link http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.10.tar.gz#md5=34db8056ec53ce80c7f5fc58bee9f093 (from http://pypi.python.org/simple/pyOpenSSL/), version 0.10 doesn't match >=0.12
  Ignoring link http://downloads.sourceforge.net/pyopenssl/pyOpenSSL-0.6.tar.gz?modtime=1212595285&amp;big_mirror=0 (from http://pypi.python.org/simple/pyOpenSSL/), version 0.6 doesn't match >=0.12
  Ignoring link http://a.pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.6.tar.gz#md5=af67fda6d2125cae9c56ee50430a40c7 (from http://a.pypi.python.org/simple/pyOpenSSL/), version 0.6 doesn't match >=0.12
  Ignoring link http://a.pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.9.tar.gz#md5=5bf282b2d6a03af921920c34079580f2 (from http://a.pypi.python.org/simple/pyOpenSSL/), version 0.9 doesn't match >=0.12
  Ignoring link http://a.pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.7.tar.gz#md5=1924edc58c1e99f27763971d9959ea15 (from http://a.pypi.python.org/simple/pyOpenSSL/), version 0.7 doesn't match >=0.12
  Ignoring link http://a.pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.8.tar.gz#md5=c1d86fdeb0cfd33dd42aa243c6a41f5e (from http://a.pypi.python.org/simple/pyOpenSSL/), version 0.8 doesn't match >=0.12
  Ignoring link http://a.pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.10.tar.gz#md5=34db8056ec53ce80c7f5fc58bee9f093 (from http://a.pypi.python.org/simple/pyOpenSSL/), version 0.10 doesn't match >=0.12
  Ignoring link http://downloads.sourceforge.net/pyopenssl/pyOpenSSL-0.6.tar.gz?modtime=1212595285&amp;big_mirror=0 (from http://a.pypi.python.org/simple/pyOpenSSL/), version 0.6 doesn't match >=0.12
  Ignoring link https://launchpad.net/pyopenssl/main/0.11/+download/pyOpenSSL-0.11.tar.gz (from https://launchpad.net/pyopenssl), version 0.11 doesn't match >=0.12
  Using version 0.13 (newest of versions: 0.13, 0.13, 0.12, 0.12)
  Downloading pyOpenSSL-0.13.tar.gz (250Kb): 250Kb downloaded
  Running setup.py egg_info for package pyopenssl
    running egg_info
    creating pip-egg-info/pyOpenSSL.egg-info
    writing pip-egg-info/pyOpenSSL.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/pyOpenSSL.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/pyOpenSSL.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/pyOpenSSL.egg-info/SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'pip-egg-info/pyOpenSSL.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no previously-included files matching '*.pyc' found anywhere in distribution
    writing manifest file 'pip-egg-info/pyOpenSSL.egg-info/SOURCES.txt'
Downloading/unpacking PIL (from mitmproxy)
  Could not fetch URL http://www.pythonware.com/downloads/Imaging-1.1.3.tar.gz (from http://pypi.python.org/simple/PIL/): HTTP Error 404: Not Found
  Will skip URL http://www.pythonware.com/downloads/Imaging-1.1.3.tar.gz when looking for download links for PIL (from mitmproxy)
  Using version 1.1.7 (newest of versions: 1.1.7, wmf-1.0b2-20040224)
  Downloading PIL-1.1.7.tar.gz (506Kb): 506Kb downloaded
  Running setup.py egg_info for package PIL
    WARNING: '' not a valid package name; please use only.-separated package names in setup.py
    running egg_info
    creating pip-egg-info/PIL.egg-info
    writing pip-egg-info/PIL.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/PIL.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/PIL.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/PIL.egg-info/SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'pip-egg-info/PIL.egg-info/SOURCES.txt'
    writing manifest file 'pip-egg-info/PIL.egg-info/SOURCES.txt'
Downloading/unpacking lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1beta3.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1beta3.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.2.1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.2.1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3beta.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3beta.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.3.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.3.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.4.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.4.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.5.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.5.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.6.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-1.3.6.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha3.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha3.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha4.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha4.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha5.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha5.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha6.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0alpha6.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0beta1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0beta1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0beta2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0beta2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.3.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.3.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.4.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.4.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.5.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.5.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.6.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.6.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.7.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.7.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.8.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.8.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.9.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.9.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.10.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.10.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.11.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.0.11.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1alpha1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1alpha1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1beta1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1beta1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1beta2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1beta2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.3.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.3.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.4.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.4.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.5.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.5.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2alpha1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2alpha1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta1.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta1.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta2.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta2.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta3.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta3.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta4.tar.gz (from http://pypi.python.org/simple/lxml/): HTTP Error 404: Not Found
  Will skip URL http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.2beta4.tar.gz when looking for download links for lxml (from mitmproxy)
  Could not fetch URL http://cheeseshop.python.org/packages/sourc

from mitmproxy.

cortesi avatar cortesi commented on May 17, 2024

This was a recent regression due to API changes in a newer release of Urwid. I've just rolled a new minor release that repairs the issue.

from mitmproxy.

2xyo avatar 2xyo commented on May 17, 2024

Issue fixed. Thanks.

from mitmproxy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.