Last active
December 27, 2019 10:51
-
-
Save donniebishop/a1cc00d9e1d6751a6f6ee64ca5d3e24f to your computer and use it in GitHub Desktop.
i3-blocklet for checking Pokemon Go status
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from bs4 import BeautifulSoup | |
import requests | |
POKEURL = 'http://cmmcd.com/PokemonGo/' | |
r = requests.get(POKEURL) | |
try: | |
import lxml | |
soup = BeautifulSoup(r.text, 'lxml') | |
except ImportError: | |
soup = BeautifulSoup(r.text, 'html.parser') | |
status = soup.body.header.h2.font.text | |
if __name__ == '__main__': | |
if status == 'Unstable!': | |
print(' PKGO Shaky!') | |
elif status == 'Offline!': | |
print(' PKGO Down!') | |
else: | |
exit(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment