https://github.com/sepppenner/tagpackerspammer
TagpackerSpammer is a software written in Python 3. Its goal is to spam the website
https://github.com/sepppenner/tagpackerspammer
Last synced: 9 months ago
JSON representation
TagpackerSpammer is a software written in Python 3. Its goal is to spam the website
- Host: GitHub
- URL: https://github.com/sepppenner/tagpackerspammer
- Owner: SeppPenner
- License: mit
- Created: 2018-02-17T12:09:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-06-10T08:14:17.000Z (about 1 year ago)
- Last Synced: 2025-06-25T13:05:59.861Z (12 months ago)
- Language: Python
- Homepage: https://tagpacker.com/
- Size: 27.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: License.txt
Awesome Lists containing this project
README
TagpackerSpammer
====================================
TagpackerSpammer is a software written in Python 3. Its goal is to spam the website [tagpacker.com](https://tagpacker.com).
[](https://ci.appveyor.com/project/SeppPenner/tagpackerspammer)
[](https://github.com/SeppPenner/TagpackerSpammer/issues)
[](https://github.com/SeppPenner/TagpackerSpammer/network)
[](https://github.com/SeppPenner/TagpackerSpammer/stargazers)
[](https://raw.githubusercontent.com/SeppPenner/TagpackerSpammer/master/License.txt)
[](https://snyk.io/test/github/SeppPenner/TagpackerSpammer)
## Basic usage:
Adjust the accounts in the [TagpackerSpammer.py](https://github.com/SeppPenner/TagpackerSpammer/blob/master/TagpackerSpammer.py) file.
The api keys can be taken from tagpacker.com --> Settings --> Account --> API access.
The api key is something like abcawe8gzwf:wgfzwbzf-sdfgsfbsd where the first part is the user id.
In this case we would write:
```python
accounts = [["abcawe8gzwf", "abcawe8gzwf:wgfzwbzf-sdfgsfbsd"]]
```
Execute the script via:
```batch
python TagpackerSpammer.py
```
## Required installation:
Python 3.x
```batch
pip install json
pip install requests
```
and adjust the execution rights:
```batch
chmod +x TagpackerSpammer.py
```
## Run this script as cronjob:
```batch
crontab -e
```
or
```batch
sudo crontab -e
```
Add the following line (With replacing the pathtofile of course) to run the script every minute:
```batch
* * * * * /usr/bin/python /pathtofile/TagpackerSpammer.py
```
## Limits:
Only 20 requests per api key per minute are allowed!!!
Change history
--------------
See the [Changelog](https://github.com/SeppPenner/TagpackerSpammer/blob/master/Changelog.md).