Metadata-Version: 2.1
Name: pyparsedvd
Version: 0.0.2
Summary: Parse and extract binary data from dvd files
Home-page: https://github.com/Ichunjo/pyparsedvd
Author: Vardë
Author-email: ichunjo.le.terrible@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# pyparsedvd

Parse and extract binary data from dvd files

# Installation
```
python -m pip install pyparsedvd
```
or from Github:
```
python -m pip install git+https://github.com/Ichunjo/pyparsedvd.git
```



# Example

```py
from pyparsedvd import load_vts_pgci


with open('DVD/VIDEO_TS/VTS_01_0.IFO', 'rb') as ifo_file:
    vts_pgci = load_vts_pgci(ifo_file)

    print(vts_pgci)

```

# TODO
* Maybe one day add the sectors left

# Credits
* [ChapterTool](https://github.com/tautcony/ChapterTool)
* [DVD Video Information](http://dvd.sourceforge.net/dvdinfo/ifo.html)


