Metadata-Version: 2.4
Name: guessit-fork
Version: 4.0
Summary: Guessit-fork - a library for guessing information from video filenames.
Home-page: https://github.com/masudranaxpert/Guessit-fork
Download-URL: https://pypi.org/project/guessit-fork/
Author: masudranaxpert
Author-email: 
License: LGPLv3
Keywords: python library release parser name filename movies series episodes animes
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Multimedia
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rebulk>=3.2.0
Requires-Dist: babelfish>=0.6.0
Requires-Dist: python-dateutil
Requires-Dist: importlib-resources; python_version < "3.9"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-mock; extra == "test"
Requires-Dist: pytest-benchmark; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pylint; extra == "test"
Requires-Dist: PyYAML; extra == "test"
Provides-Extra: dev
Requires-Dist: tox; extra == "dev"
Requires-Dist: mkdocs; extra == "dev"
Requires-Dist: mkdocs-material; extra == "dev"
Requires-Dist: pyinstaller; extra == "dev"
Requires-Dist: wheel; extra == "dev"
Requires-Dist: python-semantic-release; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: summary

Guessit-fork

[![Latest Version](https://img.shields.io/pypi/v/guessit.svg)](https://pypi.python.org/pypi/guessit)
[![LGPLv3 License](https://img.shields.io/badge/license-LGPLv3-blue.svg)]()
[![Codecov](https://img.shields.io/codecov/c/github/guessit-io/guessit)](https://codecov.io/gh/guessit-io/guessit)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/relekang/python-semantic-release)

Guessit-fork is a python library that extracts as much information as
possible from a video filename.

It has a very powerful matcher that allows to guess properties from a
video using its filename only. This matcher works with both movies and
tv shows episodes.

For example, Guessit-fork can do the following:

    $ guessit-frok "Treme.1x03.Right.Place,.Wrong.Time.HDTV.XviD-NoTV.avi"
    For: Treme.1x03.Right.Place,.Wrong.Time.HDTV.XviD-NoTV.avi
    Guessit-fork found: {
        "title": "Treme",
        "season": 1,
        "episode": 3,
        "episode_title": "Right Place, Wrong Time",
        "source": "HDTV",
        "video_codec": "Xvid",
        "release_group": "NoTV",
        "container": "avi",
        "mimetype": "video/x-msvideo",
        "type": "episode"
    }

More information is available at [guessit-io.github.io/guessit](https://guessit-io.github.io/guessit).

Fork Credits
------------

This repository is maintained as **Guessit-fork** by **masudranaxpert**:
- [masudranaxpert/Guessit-fork](https://github.com/masudranaxpert/Guessit-fork)

Original upstream project and credits:
- [guessit-io/guessit](https://github.com/guessit-io/guessit)

Support
-------

This fork is hosted on GitHub for custom updates and maintenance.
For upstream issues and original implementation details, see
[guessit-io/guessit](https://github.com/guessit-io/guessit).

Guessit-fork relies on [Rebulk](https://github.com/Toilal/rebulk) project for pattern and rules registration.

License
-------

Guessit-fork is licensed under the [LGPLv3 license](http://www.gnu.org/licenses/lgpl.html).
