trianglecirclexyz / cthulhu

Cthulhu is a simple python CLI application that streams torrents directly from various sources.
MIT License
28 stars 4 forks source link

Add request checking #4

Closed AleksandrRasskazov closed 2 years ago

AleksandrRasskazov commented 2 years ago

Module requests not include in standard library. May be checking will be helpful.

try:
    import requests
except ImportError:
    print('error: requests is not installed (hint: pip install requests)')
    exit()
nabil-rady commented 2 years ago

PR