Metadata-Version: 1.1
Name: imdbparser
Version: 1.0.0
Summary: Python package to access the IMDB Movies
Home-page: https://github.com/JohnDoee/
Author: Anders Jensen
Author-email: johndoee+malparser@tidalstream.org
License: MIT
Description: IMDB Parser
        ===========
        
        Library to parse `IMDB <hhttp://www.imdb.com/>`_ pages.
        
        Help and stuff
        --------------
        https://github.com/JohnDoee (there is an email here)
        
        Example
        -------
        
        .. code-block:: python
        
            >>> from imdbparser import IMDB
            >>> imdb = IMDB()
            >>> movie = imdb.get_movie(1954470)
            >>> movie.fetched
            False
            >>> movie.fetch()
            >>> movie.fetched
            >>> movie.__dict__
            ...
        
        License
        -------
        See LICENSE
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Software Development :: Libraries :: Python Modules
