Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added 24/7 support for host it on render.com for free #8

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ Views on tiktok :O
- Custom Threads
- In-Built Text Captcha Solver
- Zefoy.com
- Aded 24/7 support for host is 24/7 on [render](https://render.com/) (Credits to [iron web10](https://github.com/ironweb10))

## ✍️ Usage
1. Open `main.py` (hard please be careful)
1. Put your tiktok video url in `config.json`
2. Run `install.bat`
3. Run `start.bat`
4. Enjoy :D

## ⚠️ DISCLAIMER / NOTES
This github repo is for EDUCATIONAL PURPOSES ONLY. I am NOT under any responsibility if a problem occurs.
Expand Down
6 changes: 3 additions & 3 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"threads": 300,
"video_url": "https://www.tiktok.com/@radutool/video/7222572024940580101",
"threads": 200,
"video_url": "https://www.tiktok.com/@ironweb10/video/7342195698944822561",
"proxy_scraper": true
}
}
2 changes: 2 additions & 0 deletions install.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pip install -r requirements.txt
pause
32 changes: 23 additions & 9 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# <- Bypassed the zefoy.com captcha and shits 👍 -> #
# <- By H4cK3dR4Du (tls_spoof) -> #

import os, re, sys, time, json, random, string, base64, ctypes, threading
from urllib.parse import urlparse, unquote

Expand All @@ -9,11 +6,28 @@
from colorama import Fore, Style, init
from requests import Session
from datetime import datetime
except ModuleNotFoundError:
os.system('pip install pystyle')
os.system('pip install colorama')
os.system('pip install requests')
os.system('pip install datetime')
from flask import Flask
from threading import Thread
except ImportError as e:
print(f"Error importing modules: {e}")
sys.exit(1)

app = Flask(__name__)

@app.route('/')
def main():
return "Your Bot Is Ready"

def run():
app.run(host="0.0.0.0", port=8000)

def keep_alive():
server = Thread(target=run)
server.start()

# Call keep_alive to start the server
keep_alive()


class Output:
reset = Fore.RESET
Expand Down Expand Up @@ -262,4 +276,4 @@ def view_booster():
time.sleep(1)
except Exception as e:
print(e)
pass
pass
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pystyle
colorama
requests
Flask
2 changes: 2 additions & 0 deletions start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python main.py
pause