Last active
May 16, 2020 20:30
-
-
Save martinetmayank/6901dcfb50c543df3f4750b1ffc94d7f to your computer and use it in GitHub Desktop.
Start Torrent Server
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
import threading | |
import time | |
import requests | |
import json | |
import subprocess | |
def torrent(port): | |
command = subprocess.Popen(['qbittorrent-nox', f'--webui-port={port}']) | |
def ngrok(port): | |
ngrok_cmd = subprocess.Popen(['ngrok', 'http', str(port)]) | |
localhost_url = "http://localhost:4040/api/tunnels" | |
time.sleep(1) | |
tunnel_url = requests.get(localhost_url).text | |
json_data = json.loads(tunnel_url) | |
tunnel_url = json_data['tunnels'][0]['public_url'] | |
tunnel_url = tunnel_url.replace("https", "http") | |
print('Running at localhost: ' + str(port)) | |
print(tunnel_url) | |
if __name__ == '__main__': | |
port = 9999 | |
thread_torrent = threading.Thread(target = torrent, args=(int(port),)) | |
thread_ngrok = threading.Thread(target = ngrok, args=(int(port),)) | |
thread_torrent.start() | |
print('Torrent server started!') | |
time.sleep(5) | |
print('Establishing secure connection!') | |
thread_ngrok.start() | |
print('Secure connection established...') | |
print('Username: admin') | |
print('password: adminadmin') | |
thread_ngrok.join() | |
thread_torrent.join() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment