Metadata-Version: 2.1
Name: imkin
Version: 0.1.1
Summary: Lightweight a movie and TV series data parser from imdb.com and kinopoisk.ru
Home-page: https://bitbucket.org/shllw/imkin/
Author: shllw
Author-email: shllw@yahoo.com
License: UNKNOWN
Keywords: parser imdb kinopoisk
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

Lightweight a movie and TV series data parser like title, alternate title, release date, runtime, age rating and episode titles for TV series from imdb.com and kinopoisk.ru without using third-party packages.

Install:

    pip install imkin

Example 1:

    import imkin
    
    film = imkin.new('https://www.imdb.com/title/tt0068646/')
    
    print(film.title)
    
    print(film.alternate)
    
    print(film.year)
    
    print(film.time)
    
    print(film.age)
    
    print(film)

Example 2:

    import imkin
    
    series = imkin.new('https://www.imdb.com/title/tt2356777/')
    
    print(series.title)
    
    print(len(series.titles))
    
    print(series.titles['1.1'])


