Skip to content

Instantly share code, notes, and snippets.

View victor-shelepen's full-sized avatar

Victor Shelepen victor-shelepen

View GitHub Profile
@victor-shelepen
victor-shelepen / eBay Wish List Parser
Created April 28, 2013 12:34
This script scrap pages and returns product info from an user wish list. I know that eBay has got own communication REST API. I've some problems during the registration. eBay REST API will the next step. I share this code to get advise from another programmers how I should write the code right. Thank you.
#!/usr/bin/env python
import logging
import urllib2
from lxml.html import etree
from lxml.html.clean import Cleaner
class EbayParser:
def __init__(self, logger_name='ebay_parser', logger_level=logging.DEBUG):