Here's github link: https://github.com/avinassh/haxor
pypi link - https://pypi.python.org/pypi/haxor/
To install just use pip:
pip install haxor
Example usage: To find all the 'jobs' post from Top Stories: for story_id in hn.top_stories():
story = hn.get_item(story_id)
if story.item_type == 'job':
print story
# <hackernews.Item: 8437631 - Lever (YC S12) hiring JavaScript experts ...>
# <hackernews.Item: 8437036 - Product Designer (employee #1) to ...>
# <hackernews.Item: 8436584 - Django and iOS Hackers Needed – fix ...>
# ...
# ...
Appreciate any suggestions/feedback :)