This commit is contained in:
igna 2021-08-29 15:08:23 +00:00
parent fd2cec914b
commit 7652929cb0
3 changed files with 5 additions and 3 deletions

1
Procfile Normal file
View File

@ -0,0 +1 @@
worker: python3 main.py

View File

@ -1,7 +1,7 @@
import requests, threading
import requests, threading, os
url = input('raw link: ')
amount = input('enter the amount of threads (go for 300): ')
url = os.environ['URL']
amount = os.environ['amount']
def thread():
sent = 0

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
requests