Metadata-Version: 2.3
Name: scrap-imdb
Version: 0.1.7
Summary: Scrap Imdb website to retrieve detail informations from movies or tvshows
License: MIT
Keywords: imdb,scraper,movies,tvshows
Author: David Steinberger
Author-email: david.steinberger@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: cloudscraper (>=1.2.71,<2.0.0)
Requires-Dist: lxml (>=6.0.2,<7.0.0)
Requires-Dist: requests (>=2.32.5,<3.0.0)
Project-URL: Homepage, https://github.com/dsteinberger/scrapimdb
Project-URL: Repository, https://github.com/dsteinberger/scrapimdb
Description-Content-Type: text/x-rst

=========
scrapimdb
=========


.. image:: https://img.shields.io/pypi/v/scrap-imdb.svg
        :target: https://pypi.python.org/pypi/scrap-imdb

.. image:: https://img.shields.io/travis/dsteinberger/scrapimdb.svg
        :target: https://travis-ci.org/dsteinberger/scrapimdb

.. image:: https://pyup.io/repos/github/dsteinberger/scrapimdb/shield.svg
     :target: https://pyup.io/repos/github/dsteinberger/scrapimdb/
     :alt: Updates



Scrap Imdb website to retrieve detail informations from movies or tvshows


Install
-------

For end users:

.. code-block:: shell

    pip install scrap-imdb

For development:

.. code-block:: shell

    # Clone the repository
    git clone https://github.com/dsteinberger/scrapimdb.git
    cd scrapimdb

    # Install Poetry if not already installed
    pip install poetry

    # Install dependencies
    poetry install

    # Run tests
    make test


Usages
------

.. code-block:: python

    from scrapimdb import ImdbSpider

    im = ImdbSpider('terminator')

    im.get_rating()
    im.get_original_title()
    im.get_year()



Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage

