No description
Find a file
2018-02-16 12:20:20 +01:00
ox fix year parser, closes #3080 2018-02-16 12:20:20 +01:00
.gitignore add ox.egg-info to .gitignore 2016-02-20 17:51:46 +05:30
README add python3 to README 2014-10-11 20:15:00 +02:00
requirements.txt remove feedparser 2018-01-14 16:48:18 +01:00
setup.py remove feedparser 2018-01-14 16:48:18 +01:00
test.sh fix test.sh 2010-07-08 01:28:04 +02:00

python-ox - the web in a dict

Depends:
 python >= 2.7 or python3 >= 3.4
 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.read_url('http:/...')
 text = ox.strip_tags(data)
 ox.normalize_newlines(text)
 ox.format_bytes(len(data))

 ox.format_bytes(1234567890)
 '1.15 GB'

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

For information on ox.django see https://wiki.0x2620.org/wiki/ox.django

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
 nosetests3 --with-doctest ox