item

API to describe schema of data to extract them from HTML


License
MIT
Install
pip install item==0.0.1

Documentation

item

https://travis-ci.org/lorien/item.png?branch=master https://coveralls.io/repos/lorien/item/badge.svg?branch=master https://pypip.in/download/item/badge.svg?period=month https://landscape.io/github/lorien/item/master/landscape.png

Usage Example

from item import Item
from lxml.html import fromstring

class SomeStructure(Item):
    id = IntegerField('//path/to/@id')
    name = StringField('//path/to/name')
    date = DateTimeField('//path/to/@datetime', '%Y-%m-%d %H:%M:%S')

structure = SomeStructure(fromstring(SOME_HTML))
print(structure.id)
print(structure.name)
print(structure.date)

Installation

pip install item