Skip to main content

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 file;
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 Channels (Feature):

channel_tp_data_feature = dict()
importer = TP_Importer_Channels(
        valid_statuses=(("ok", "change", "new"))
    )
wb = importer._load_workbook(
    path='G:\Listen\Titelplanung Channels aktuell_absolutiert_new.xlsm'
)
for worksheet_name, channel_type in {
    'Planung ACNMA': 'arthousecnma',
    'Planung HOH': 'homeofhorror',
    'Planung Filmtastic': 'filmtastic',
    'Planung Cinehearts': 'cinehearts',
    'Planung Filmlegenden': 'filmlegenden',
}.items():
    tp_data = importer._get_data_from_wb(
        workbook=wb,
        first_row=4,
        worksheet_name=worksheet_name,
        channel_type=channel_type
    )
    channel_tp_data_feature[channel_type] = tp_data


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 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 series.get('episodes').items():
            # do something for episodes

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tpimporter-0.6.4.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tpimporter-0.6.4-py2.py3-none-any.whl (16.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file tpimporter-0.6.4.tar.gz.

File metadata

  • Download URL: tpimporter-0.6.4.tar.gz
  • Upload date:
  • Size: 14.9 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

Hashes for tpimporter-0.6.4.tar.gz
Algorithm Hash digest
SHA256 02e1d2cd247309ff410f83b88fc6447af638b8cce98e9ae0dc07dc0f71ad9c7e
MD5 be407232b49d616ff9700926c4b8bbab
BLAKE2b-256 c9a569b591fc814eae1468a00f6d95b2f6a24164b8051f57a5c69e403d4be0e7

See more details on using hashes here.

File details

Details for the file tpimporter-0.6.4-py2.py3-none-any.whl.

File metadata

  • Download URL: tpimporter-0.6.4-py2.py3-none-any.whl
  • Upload date:
  • Size: 16.4 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

Hashes for tpimporter-0.6.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7df077c5629f191ebd9797ed008c0e42529c316a2e963704e7474dcf20a1f044
MD5 917efd516692a740551030db407a06f4
BLAKE2b-256 ba97711daf6debf99e99702cefe61498b909e90a4faedc8f09ea18d59b69153a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page