No description
Find a file
2011-02-08 12:50:57 +05:30
ox unicode 2011-02-08 12:50:57 +05:30
.bzrignore rename bt->torrent 2008-04-27 19:10:34 +02:00
README update readme 2010-11-23 10:24:38 +01:00
requirements.txt use setuptools, depend on chardet and feedparser 2010-11-19 20:18:19 +01:00
setup.py ... 2010-11-26 15:02:14 +01:00
test.sh fix test.sh 2010-07-08 01:28:04 +02:00

python-ox - the web in a dict

Depends:
 python2.5
 python-chardet (http://chardet.feedparser.org/)
 python-feedparser (http://www.feedparser.org/)
 python-lxml (http://codespeak.net/lxml/)          [optional]
 django (otherwise dates < 1900 are not supported) [optional]

Usage:
 import ox
 
 data = ox.cache.readUrl('http:/...')
 text = ox.stripTags(data)
 ox.normalizeNewlines(text)
 ox.formatBytes(len(data))

 ox.formatBytes(1234567890)
 '1.15 GB'

 import ox.web.imdb
 imdbId = ox.web.imdb.guess('The Matrix')
 info = ox.web.imdb.Imdb(imdbId)
 info['year']
 1999

Install:
  python setup.py install

Cookies:
  some ox.web modules require user accont information or cookies to work,
  those are saved in ~/.ox/auth.json, most basic form looks like this:
  {
    "key": "value"
  }

Tests:
 nosetests --with-doctest ox