diff options
author | Anthony Wang | 2023-05-31 18:43:04 -0500 |
---|---|---|
committer | Anthony Wang | 2023-05-31 18:43:04 -0500 |
commit | eb84ecef4a40302e27a81ad1185463548f6ed2fa (patch) | |
tree | f031140a4bc2c2e351e6332b6f7f60d46929c0ed /main.py | |
parent | 430dd8d20c48bb5b7d4d432efc564d02fef5fdaa (diff) |
Even more comments!!!!
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ while True: proc = subprocess.Popen(['mpv', '--no-video', '--no-input-terminal', '--slang=zh-CN', url + cur]) # The try finally block is to ensure that proc gets killed no matter what try: - # I could use requests... + # I could use the Python requests library... # Nope, external dependencies suck, so enjoy this abomination body = gzip.decompress(urllib.request.urlopen(url + cur).read()).decode('utf-8') # Sometimes I forget what I'm even listening to |