forked from simonfarah/tiktok-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request simonfarah#101 from terafear/main
- Loading branch information
Showing
3 changed files
with
115 additions
and
90 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,52 @@ | ||
## TikTok Bot | ||
# TikTok Bot | ||
|
||
### Requirements | ||
This Python-based TikTok Bot automates various interactions on [Zefoy](https://zefoy.com/), such as increasing followers, hearts, views, shares, and more, using Selenium to navigate and interact with the website. The script is designed for educational purposes to demonstrate automation and web scraping techniques. | ||
|
||
- Python 3.x | ||
- Have [chrome](https://www.google.com/chrome/) installed | ||
- Install the required modules (cd into the code directory and run this command) | ||
## Features | ||
|
||
pip install -r requirements.txt | ||
- Automated interactions on TikTok to increase followers, hearts, views, shares, and favorites. | ||
- Utilizes Selenium for automation. | ||
- Interactive CLI for easy use and navigation through the bot's features. | ||
|
||
### How to use | ||
## Prerequisites | ||
|
||
1. Run the `bot.py` file | ||
2. Wait till the driver opens, and solve the captcha | ||
3. The driver will be minimized and you can continue working while the bot do its job | ||
- [Python 3.x](https://www.python.org/downloads/) | ||
- [Google Chrome browser](https://www.google.com/chrome/) | ||
- Internet connection | ||
|
||
### Disclaimer | ||
## Installation | ||
|
||
- This tool is for educational purposes only | ||
- Do not use it for illegal work or without the consent of the tiktok account owner | ||
- I am not responsible for any action taken using this script | ||
- I am not responsible for any damage of any kind for using this script | ||
1. Clone the repository to your local machine. | ||
2. Install Google Chrome if not already installed. | ||
3. Navigate to the cloned directory and install the required Python packages: | ||
|
||
```sh | ||
pip install -r requirements.txt | ||
``` | ||
|
||
## Usage | ||
|
||
1. Open a terminal or command prompt. | ||
2. Navigate to the project's directory. | ||
3. Run the bot with the following command: | ||
|
||
```sh | ||
python bot.py | ||
``` | ||
|
||
4. Follow the CLI prompts to complete captchas and choose the service you want to automate (e.g., followers, hearts). | ||
5. Input the URL of the video you want to apply the service to when prompted. | ||
|
||
## Disclaimer | ||
|
||
This tool is created for educational purposes only. The developer assumes no liability for any misuse or damage caused by this tool. It is the end user's responsibility to comply with all applicable local, state, national, and international laws. | ||
|
||
- **Ethical Use**: Use this bot responsibly and ethically. Do not use it to spam or harm other users. | ||
- **Consent**: Ensure you have the consent of the account holder before using this bot on any account. | ||
- **No Warranty**: This software is provided "as is", without warranty of any kind. | ||
|
||
By using this software, you agree to the terms of this disclaimer and to provided license. | ||
|
||
## Contributions | ||
|
||
Contributions are welcome! If you have suggestions for improvements or bug fixes, please feel free to fork the repository and submit a pull request. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
colorama==0.4.4 | ||
selenium==4.11.0 | ||
undetected_chromedriver==3.5.3 |