mirror of
https://github.com/ihabunek/twitch-dl
synced 2024-08-30 18:32:25 +00:00
10 lines
182 B
Python
10 lines
182 B
Python
|
import platform
|
||
|
import sys
|
||
|
import twitchdl
|
||
|
|
||
|
|
||
|
def env(args):
|
||
|
print("twitch-dl", twitchdl.__version__)
|
||
|
print("Platform:", platform.platform())
|
||
|
print("Python", sys.version)
|