a package to import excel files - specifically our Titelplanung and TV Titelplanung
Project description
TP Importer
This package is used for importing our main Titelplanung Excel files;
as this data is used in different systems this package provides adapters to use the imported data within different products
Usage
Usage Example (Transaktional - Feature):
def import_tp_data_for_mam():
"""
importiert TP-Daten mit den fürs MAM genutzten Keys
"""
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:
# do something with title
if __name__ == '__main__':
tp_data_mam = import_tp_data_for_mam()
Usage Example for TVTP Transaktional:
def _get_data(self) -> dict:
"""
diese Methode liest die Daten aus der TV Titelplanung ein
:return: Dict (one entry per series with the series-Basis-VendorID as key) - die Daten zu den Staffeln
kann man als Liste von Dicts unter dem Key "seasons" aufrufen
(auch wieder als Dict mit Key = Season-Basis-VID),
die zu den Episoden sind im Staffel-Dict als Liste von Dicts unter dem Key "episodes" zu finden
(auch wieder als Dict mit Key = Episode-Basis-VID)
"""
filepath = "G:\Listen\TV Titelplanung DD_absolutiert_v2.xlsm"
tp_data = TVTP_Importer(
valid_statuses=(
"ok",
"change",
"new",
"alt/keine Rechte",
"canceled",
"INDIZIERT",
"no avail",
"Rights expired",
"ausgelaufen",
)
).get_tp_data_from_file(filepath)
return tp_data
tp_data = self._get_date()
for vendor_id, series in tqdm(tp_data.items()):
# do something for series
for vendor_id_season, season in series.get('seasons').items():
# do something for seasons
for vendor_id_episode, episode in season.get('episodes').items():
# do something for episodes
Usage Example for Channels (Feature):
channel_tp_data_feature = dict()
importer = TP_Importer_Channels(
valid_statuses=(("ok", "change", "new"))
)
path = 'G:\Listen\Titelplanung Channels aktuell_absolutiert_new.xlsm'
tp_data = importer.get_tp_data_from_file(path)
print(tp_data.keys())
for channel_type, channel_titles in tp_data.items():
# durch alle Channels iterieren
for title in tqdm(channel_titles):
# durch Titel in jeweiligem Channel iterieren
Usage Example for Channels (TV):
channel_tp_data_feature = dict()
importer = TVTP_Importer_Channels(
valid_statuses=(("ok", "change", "new"))
)
path = 'G:\Listen\Titelplanung Channels aktuell_absolutiert_new.xlsm'
tp_data = importer.get_tp_data_from_file(path)
print(tp_data.keys())
for channel_type, channel_titles in tp_data.items():
# durch alle Channels iterieren
for vendor_id, series in tqdm(channel_titles.items()):
# do something for series
for vendor_id_season, season in series.get('seasons').items():
# do something for seasons
for vendor_id_episode, episode in season.get('episodes').items():
# do something for episodes
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tpimporter-0.7.5.tar.gz.
File metadata
- Download URL: tpimporter-0.7.5.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1370525d0c0e46853b99c3f82ff557f03b19391f7f475629772f7f2949edc9b8
|
|
| MD5 |
081d53b1be7f400ee0300b8ca1f61dc5
|
|
| BLAKE2b-256 |
f30d2c4299910afef2e76af2d2d7c4eb7e6087373e48826f08baaaa5ae5254f4
|
File details
Details for the file tpimporter-0.7.5-py2.py3-none-any.whl.
File metadata
- Download URL: tpimporter-0.7.5-py2.py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03024b9948e5d4fe13b773ce5db37c6b91f580eb74118e72b1391d19389b8294
|
|
| MD5 |
ab99565cb55e0656c9ce08c1d688b87c
|
|
| BLAKE2b-256 |
38f285ad6dc2db4d4659714e7a2a5ab42f55e647bebb78f7aa7dcd467644a963
|