Metadata-Version: 1.0
Name: PyOpenGraph
Version: 0.2
Summary: PyOpenGraph is a library written in Python for parsing Open Graph protocol information from web sites.
Home-page: http://github.com/minichiello/PyOpenGraph
Author: Gerson Minichiello
Author-email: gerson.minichiello@gmail.com
License: MIT License
Download-URL: http://pypi.python.org/pypi/PyOpenGraph
Description: =============
        PyOpenGraph
        =============
        
        PyOpenGraph is a library written in Python for parsing Open Graph protocol information from web sites.
        
        Learn more about the protocol at:
        
        http://opengraphprotocol.org
        
        --------------
        Installation
        --------------
        
        To install, download the archive at http://pypi.python.org/pypi/PyOpenGraph and decompress, run python setup.py install.
        
        -------
        Usage
        -------
        ::
        
        import PyOpenGraph
        
        og = PyOpenGraph('http://www.rottentomatoes.com/m/10011268-oceans/')
        
        print og.metadata # => {'url': 'http://www.rottentomatoes.com/m/10011268-oceans/', 'site_name': 'Rotten Tomatoes', 'image': 'http://images.rottentomatoes.com/images/movie/custom/68/10011268.jpg', 'type': 'movie', 'title': 'Oceans'}
        
        print og.metadata['title'] # => Oceans
        
        og.is_valid() # => return True or False
        
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
