test
Browse files- .python-version +1 -0
- __pycache__/app.cpython-312.pyc +0 -0
- app.py +1 -1
- main.py +6 -0
- pyproject.toml +12 -0
- uv.lock +0 -0
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.12
|
__pycache__/app.cpython-312.pyc
ADDED
|
Binary file (3.33 kB). View file
|
|
|
app.py
CHANGED
|
@@ -6,7 +6,7 @@ from fastapi import FastAPI
|
|
| 6 |
|
| 7 |
TARGET_URL = "https://dontspam.this.superhot.pics/vote"
|
| 8 |
CONCURRENT_REQUESTS = 200 # Requêtes simultanées
|
| 9 |
-
TOTAL_REQUESTS =
|
| 10 |
|
| 11 |
HEADERS = {
|
| 12 |
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0",
|
|
|
|
| 6 |
|
| 7 |
TARGET_URL = "https://dontspam.this.superhot.pics/vote"
|
| 8 |
CONCURRENT_REQUESTS = 200 # Requêtes simultanées
|
| 9 |
+
TOTAL_REQUESTS = 1000000
|
| 10 |
|
| 11 |
HEADERS = {
|
| 12 |
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0",
|
main.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def main():
|
| 2 |
+
print("Hello from supertest!")
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
if __name__ == "__main__":
|
| 6 |
+
main()
|
pyproject.toml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "supertest"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"aiohttp>=3.14.1",
|
| 9 |
+
"asyncio>=4.0.0",
|
| 10 |
+
"fastapi>=0.138.2",
|
| 11 |
+
"uvicorn[standard]>=0.49.0",
|
| 12 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|