Skip to content

Instantly share code, notes, and snippets.

@drandreaskrueger
Last active March 10, 2022 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drandreaskrueger/94d3b92d57976da77ae2753b45314aeb to your computer and use it in GitHub Desktop.
Save drandreaskrueger/94d3b92d57976da77ae2753b45314aeb to your computer and use it in GitHub Desktop.
clone and init my plutoalert github repo, then run the example script, showing all Star Trek episodes in the plutotv EPG
#!/bin/python3.7
# this gist
# https://gist.github.com/drandreaskrueger/94d3b92d57976da77ae2753b45314aeb
# is intended to run at PythonAnywhere
# https://www.pythonanywhere.com/gists/94d3b92d57976da77ae2753b45314aeb/plutoalert_StarTrek.py/python3/
#
# but see the 'sorry, EMPTY RESULT' info in
# README.md --> Geoblocking --> Python online execution environments: pythonanywhere
print("\nPreparing ... please be patient ...\n")
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/plutoalert", shell=True)
subprocess.check_call("cd plutoalert; pip3.7 install -r requirements-minimum.txt", shell=True)
print()
print("Installation done. Run: ...")
print()
import sys
sys.path.append("./plutoalert/plutoalert")
import plutotv
plutotv.the_purpose_of_all_this_v2()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment