Metadata-Version: 2.1
Name: tpimporter
Version: 0.4.8
Summary: a package to import excel files - specifically our Titelplanung and TV Titelplanung
Home-page: https://github.com/skalizzo/TP_Importer
Author: Christian Richter
Author-email: christian.richter@leoninestudios.com
License: UNKNOWN
Project-URL: Source, https://github.com/skalizzo/TP_Importer
Keywords: Excel importer,Titelplanung,VOD,LEONINE
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
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 :: Only
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: openpyxl
Requires-Dist: msoffcrypto-tool

# TP Importer

This package is used for importing our main Titelplanung Excel file;
<br>
as this data is used in different systems this package provides adapters to use the imported data within different products
<br>
## Usage
Usage Example:
```
def import_tp_data_for_mam():
    tp_path = "G:\Listen\TPDD aktuell absolutiert.xlsm"
    tp_data = TP_Importer().get_tp_data_from_file(tp_path)
    tp_data_mam = Adapter_For_MAM().transform(tp_data)
    for title in tp_data_mam:
        print(title)


if __name__ == '__main__':
    tp_data_mam = import_tp_data_for_mam()
```

