Library and cli tool for querying tvtid.dk
Project description
TVTid
This is a Python library for interfacing with the unofficial API on tvtid.tv2.dk
.
Installation
pip install tvtid
CLI
To get the schedule off a channel from now and forward
$ tvtid tv 2
Schedule for: TV 2
Date: 2017-09-12
[21:25] Fogeden kommer
[22:00] Nyhederne, Sporten og Vejret
[22:27] Regionale nyheder
...
To get the schedule at a specific date
$ tvtid -d 2020-01-14 dr2
Schedule for: DR2
Date: 2020-01-14
[05:15] Udsendelsesophør - DR2
...
[04:40] Kender du typen 2013
Library Example
import tvtid
client = tvtid.Client()
schedules = client.schedules_for_today()
channel_length = max(len(c.title) for c in client.channels().values())
for schedule in schedules:
channel = schedule.channel
aired, current, upcoming = schedule.current()
if current:
title = channel.title.ljust(channel_length, ' ')
print('\n%s [%s] %s ' % (title, current.start_time.strftime('%H:%M'), current.title), end='')
for program in upcoming[:3]:
print('[%s] %s ' % (program.start_time.strftime('%H:%M'), program.title), end='')
# TV 2 [20:00] Fuld plade [21:15] Baby Surprise [23:05] Obsessed
# DR1 [20:00] X Factor [21:00] TV AVISEN [21:15] Vores vejr
# TV 2 Charlie [20:30] Fede Finn i modvind [21:25] Fede Finn i modvind [22:15] En sag for Frost
# DR2 [20:45] VM håndbold: Kroatien-Norge, direkte [21:20] VM håndbold: Studiet [21:35] VM håndbold: Kroatien-Norge, direkte
# TV3 [20:00] Dagens mand [21:00] American Pie 2 [23:10] The Joneses
# …
License
tvtid
is published under the MIT license which can be read in the LICENSE
file.
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
tvtid-0.2.3.tar.gz
(4.5 kB
view details)
File details
Details for the file tvtid-0.2.3.tar.gz
.
File metadata
- Download URL: tvtid-0.2.3.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9436f07ec8d5489cfd745ba1b4f029cfb7625d97d8bdd0c8ed2ad2a69bf849e4 |
|
MD5 | fb40e03a1e2e50d91c85020680f82be4 |
|
BLAKE2b-256 | 2fb264d1cb074d7e2c1b3d4010c3e59fb1998ad6e84cdf18f63b091d163000fe |