"""Python XMLTV Grabber Library The Python XMLTV Grabber Library is used to extract information from a webpage and outputs in the xmltv format (version 0.5.15 see http://xmltv.sourceforge.net). """ doclines=__doc__.splitlines() __name__ = 'tvgrab' __version__ = '0.5.1' __author__ = 'Chris Ottrey' __author_email__ = 'ottrey at sourceforge dot net' __maintainer__ = __author__ __maintainer_email__ = __author_email__ __url__ = 'http://pytvgrab.sourceforge.net/' __license__ = 'GNU Gerneral Public License' __description__ = doclines[0] __long_description__ = '\n'.join(doclines[2:]) __keywords__ = 'python xmltv grabber' __platforms__ = 'posix' __classifiers__ = [ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', ] __download_url__ = 'http://sourceforge.net/project/showfiles.php?group_id=87433' __dist_name__ = 'pytvgrab-lib' __bugreport_url__ = 'http://sourceforge.net/tracker/?func=add&group_id=87433&atid=583152' __all__ = ['grab', 'mtgrab', 'message', 'customizedparser', 're2']