Skip to content

Instantly share code, notes, and snippets.

@pschmitt
Created October 23, 2017 17:12
Show Gist options
  • Save pschmitt/122ede9f7a6590d2663400f51e24a83e to your computer and use it in GitHub Desktop.
Save pschmitt/122ede9f7a6590d2663400f51e24a83e to your computer and use it in GitHub Desktop.
pyteleloisir snippet. Why is pylint complaining about missing members?
import asyncio
import pyteleloisirs
loop = asyncio.get_event_loop()
prg = loop.run_until_complete(pyteleloisirs.async_get_current_program('M6'))
dur = pyteleloisirs.get_program_duration(prg)
rem = pyteleloisirs.get_remaining_time(prg)
print('{} - Remaining time: {}/{}'.format(prg.get('name'), rem, dur))
@pschmitt
Copy link
Author

Install:

mktempenv
pip install pyteleloisirs==3.1
python test.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment