eses 1.0.4__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {eses-1.0.4 → eses-1.0.6}/PKG-INFO +1 -1
- eses-1.0.6/eses/__init__.py +156 -0
- eses-1.0.6/eses/version.py +1 -0
- {eses-1.0.4 → eses-1.0.6}/eses.egg-info/PKG-INFO +1 -1
- {eses-1.0.4 → eses-1.0.6}/pyproject.toml +1 -1
- eses-1.0.4/eses/__init__.py +0 -106
- eses-1.0.4/eses/version.py +0 -1
- {eses-1.0.4 → eses-1.0.6}/LICENSE +0 -0
- {eses-1.0.4 → eses-1.0.6}/README.md +0 -0
- {eses-1.0.4 → eses-1.0.6}/eses.egg-info/SOURCES.txt +0 -0
- {eses-1.0.4 → eses-1.0.6}/eses.egg-info/dependency_links.txt +0 -0
- {eses-1.0.4 → eses-1.0.6}/eses.egg-info/requires.txt +0 -0
- {eses-1.0.4 → eses-1.0.6}/eses.egg-info/top_level.txt +0 -0
- {eses-1.0.4 → eses-1.0.6}/setup.cfg +0 -0
@@ -0,0 +1,156 @@
|
|
1
|
+
import requests
|
2
|
+
import time
|
3
|
+
import threading
|
4
|
+
from concurrent.futures import ThreadPoolExecutor
|
5
|
+
from datetime import datetime
|
6
|
+
from typing import List, Optional, Dict, Any
|
7
|
+
|
8
|
+
# API Configuration
|
9
|
+
api_url = "http://52.24.104.170:8086/RestSimulator"
|
10
|
+
proxies: List[str] = []
|
11
|
+
proxy_lock = threading.Lock()
|
12
|
+
active_threads: List[threading.Thread] = []
|
13
|
+
|
14
|
+
# Debug Utilities
|
15
|
+
def _print_debug(msg: str) -> None:
|
16
|
+
"""Print debug messages with timestamps"""
|
17
|
+
timestamp = datetime.now().strftime("%H:%M:%S.%f")[:-3]
|
18
|
+
print(f"[{timestamp}] {msg}")
|
19
|
+
|
20
|
+
# Core Functions
|
21
|
+
def addproxy(proxy: str) -> None:
|
22
|
+
"""Add a proxy to the rotation pool"""
|
23
|
+
if not proxy.startswith(('http://', 'https://')):
|
24
|
+
proxy = f"http://{proxy}"
|
25
|
+
|
26
|
+
with proxy_lock:
|
27
|
+
if proxy not in proxies:
|
28
|
+
proxies.append(proxy)
|
29
|
+
_print_debug(f"Proxy added: {proxy}")
|
30
|
+
else:
|
31
|
+
_print_debug(f"Proxy already exists: {proxy}")
|
32
|
+
|
33
|
+
def clear_proxies() -> None:
|
34
|
+
"""Clear all registered proxies"""
|
35
|
+
with proxy_lock:
|
36
|
+
proxies.clear()
|
37
|
+
_print_debug("All proxies cleared")
|
38
|
+
|
39
|
+
def donate(
|
40
|
+
company_name: str,
|
41
|
+
country: str,
|
42
|
+
war_id: str,
|
43
|
+
donation_sum: str = "100000000000",
|
44
|
+
proxy: Optional[str] = None
|
45
|
+
) -> Optional[Dict[str, Any]]:
|
46
|
+
"""
|
47
|
+
Send a single donation request
|
48
|
+
Returns: JSON response if successful, None otherwise
|
49
|
+
"""
|
50
|
+
params = {
|
51
|
+
"Operation": "postDonation",
|
52
|
+
"available_patriotism": "0",
|
53
|
+
"company_id": "4456964",
|
54
|
+
"company_name": company_name,
|
55
|
+
"country": country,
|
56
|
+
"donation_sum": donation_sum,
|
57
|
+
"donation_type": "0",
|
58
|
+
"sender_company_id": "4456964",
|
59
|
+
"user_id": "3CE57CF11AFA43A1ABB7DB10431C2234",
|
60
|
+
"version_code": "22",
|
61
|
+
"war_id": war_id
|
62
|
+
}
|
63
|
+
|
64
|
+
proxy_display = proxy or "DIRECT"
|
65
|
+
_print_debug(f"Starting donation: {company_name} via {proxy_display}")
|
66
|
+
|
67
|
+
try:
|
68
|
+
start_time = time.time()
|
69
|
+
response = requests.post(
|
70
|
+
api_url,
|
71
|
+
params=params,
|
72
|
+
headers={"Content-Length": "0"},
|
73
|
+
proxies={"http": proxy, "https": proxy} if proxy else None,
|
74
|
+
timeout=10
|
75
|
+
)
|
76
|
+
elapsed_ms = int((time.time() - start_time) * 1000)
|
77
|
+
|
78
|
+
_print_debug(f"Success ({response.status_code}) in {elapsed_ms}ms")
|
79
|
+
_print_debug(f"Response: {response.text[:200]}")
|
80
|
+
return response.json()
|
81
|
+
except Exception as e:
|
82
|
+
_print_debug(f"Failed via {proxy_display}: {str(e)}")
|
83
|
+
return None
|
84
|
+
|
85
|
+
def donatewithproxy(
|
86
|
+
company_name: str,
|
87
|
+
country: str,
|
88
|
+
war_id: str,
|
89
|
+
times: int = 1,
|
90
|
+
delay: int = 0,
|
91
|
+
max_workers: int = 10
|
92
|
+
) -> None:
|
93
|
+
"""
|
94
|
+
Start automated concurrent donations with proxy rotation
|
95
|
+
Args:
|
96
|
+
times: Requests per proxy per cycle
|
97
|
+
delay: Seconds between full cycles
|
98
|
+
max_workers: Max concurrent requests (default: 10)
|
99
|
+
"""
|
100
|
+
def _worker():
|
101
|
+
cycle = 0
|
102
|
+
while True:
|
103
|
+
cycle += 1
|
104
|
+
_print_debug(f"=== START CYCLE {cycle} ===")
|
105
|
+
|
106
|
+
# Get proxies (thread-safe)
|
107
|
+
with proxy_lock:
|
108
|
+
current_proxies = proxies.copy() or [None]
|
109
|
+
|
110
|
+
# Process all proxies concurrently
|
111
|
+
with ThreadPoolExecutor(max_workers=max_workers) as executor:
|
112
|
+
# Schedule all requests
|
113
|
+
futures = []
|
114
|
+
for proxy in current_proxies:
|
115
|
+
for _ in range(times):
|
116
|
+
futures.append(
|
117
|
+
executor.submit(
|
118
|
+
donate,
|
119
|
+
company_name,
|
120
|
+
country,
|
121
|
+
war_id,
|
122
|
+
proxy=proxy
|
123
|
+
)
|
124
|
+
)
|
125
|
+
|
126
|
+
# Wait for completion
|
127
|
+
for future in futures:
|
128
|
+
try:
|
129
|
+
future.result(timeout=30)
|
130
|
+
except Exception as e:
|
131
|
+
_print_debug(f"Request failed: {str(e)}")
|
132
|
+
|
133
|
+
# Cycle complete
|
134
|
+
_print_debug(f"Cycle {cycle} complete. Waiting {delay}s...")
|
135
|
+
time.sleep(delay)
|
136
|
+
|
137
|
+
thread = threading.Thread(target=_worker, daemon=True)
|
138
|
+
thread.start()
|
139
|
+
active_threads.append(thread)
|
140
|
+
_print_debug(f"Started donation controller (ID: {thread.ident})")
|
141
|
+
|
142
|
+
def stop_all_donations() -> None:
|
143
|
+
"""Gracefully stop all active donation threads"""
|
144
|
+
for thread in active_threads:
|
145
|
+
thread.join(timeout=1)
|
146
|
+
active_threads.clear()
|
147
|
+
_print_debug("All donation threads stopped")
|
148
|
+
|
149
|
+
# Make functions available at package level
|
150
|
+
__all__ = [
|
151
|
+
'addproxy',
|
152
|
+
'clear_proxies',
|
153
|
+
'donate',
|
154
|
+
'donatewithproxy',
|
155
|
+
'stop_all_donations'
|
156
|
+
]
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.0.6"
|
eses-1.0.4/eses/__init__.py
DELETED
@@ -1,106 +0,0 @@
|
|
1
|
-
import requests
|
2
|
-
import time
|
3
|
-
import threading
|
4
|
-
from typing import List
|
5
|
-
|
6
|
-
api_url = "http://52.24.104.170:8086/RestSimulator"
|
7
|
-
proxies = []
|
8
|
-
proxy_lock = threading.Lock()
|
9
|
-
active_threads = []
|
10
|
-
|
11
|
-
def addproxy(proxy: str):
|
12
|
-
"""Add a proxy (format: 'ip:port' or 'http://ip:port')"""
|
13
|
-
if not proxy.startswith(('http://', 'https://')):
|
14
|
-
proxy = f"http://{proxy}"
|
15
|
-
with proxy_lock:
|
16
|
-
if proxy not in proxies:
|
17
|
-
proxies.append(proxy)
|
18
|
-
print(f"Proxy added: {proxy}")
|
19
|
-
|
20
|
-
def donate(company_name: str, country: str, war_id: str,
|
21
|
-
donation_sum: str = "100000000000", proxy: str = None):
|
22
|
-
"""Send a single donation (with optional proxy)"""
|
23
|
-
params = {
|
24
|
-
"Operation": "postDonation",
|
25
|
-
"available_patriotism": "0",
|
26
|
-
"company_id": "4456964",
|
27
|
-
"company_name": company_name,
|
28
|
-
"country": country,
|
29
|
-
"donation_sum": donation_sum,
|
30
|
-
"donation_type": "0",
|
31
|
-
"sender_company_id": "4456964",
|
32
|
-
"user_id": "3CE57CF11AFA43A1ABB7DB10431C2234",
|
33
|
-
"version_code": "22",
|
34
|
-
"war_id": war_id
|
35
|
-
}
|
36
|
-
headers = {
|
37
|
-
"Host": "52.24.104.170:8086",
|
38
|
-
"Connection": "Keep-Alive",
|
39
|
-
"User-Agent": "android-async-http",
|
40
|
-
"Accept-Encoding": "gzip",
|
41
|
-
"Content-Length": "0"
|
42
|
-
}
|
43
|
-
try:
|
44
|
-
response = requests.post(
|
45
|
-
api_url,
|
46
|
-
params=params,
|
47
|
-
headers=headers,
|
48
|
-
proxies={"http": proxy, "https": proxy} if proxy else None,
|
49
|
-
timeout=10
|
50
|
-
)
|
51
|
-
print(f"Success via {proxy or 'DIRECT'}: {response.status_code}")
|
52
|
-
return response.json()
|
53
|
-
except Exception as e:
|
54
|
-
print(f"Failed via {proxy or 'DIRECT'}: {str(e)}")
|
55
|
-
return None
|
56
|
-
|
57
|
-
def _donate_cycle(company_name: str, country: str, war_id: str, times: int, delay: int):
|
58
|
-
"""Internal function for proxy cycling"""
|
59
|
-
while True:
|
60
|
-
with proxy_lock:
|
61
|
-
if not proxies:
|
62
|
-
# No proxies - just send 'times' requests directly
|
63
|
-
for _ in range(times):
|
64
|
-
donate(company_name, country, war_id)
|
65
|
-
time.sleep(delay)
|
66
|
-
continue
|
67
|
-
|
68
|
-
# Use all proxies in sequence
|
69
|
-
for proxy in proxies:
|
70
|
-
for _ in range(times):
|
71
|
-
donate(company_name, country, war_id, proxy=proxy)
|
72
|
-
|
73
|
-
# Delay after full cycle
|
74
|
-
time.sleep(delay)
|
75
|
-
|
76
|
-
def donatewithproxy(company_name: str, country: str, war_id: str, times: int = 1, delay: int = 0):
|
77
|
-
"""
|
78
|
-
Send donations using all proxies in cycles:
|
79
|
-
1. Each proxy sends 'times' requests
|
80
|
-
2. Waits 'delay' seconds after full cycle
|
81
|
-
3. Repeats indefinitely
|
82
|
-
|
83
|
-
Example:
|
84
|
-
donatewithproxy("Blackrock", "India", "2382", times=3, delay=20)
|
85
|
-
"""
|
86
|
-
thread = threading.Thread(
|
87
|
-
target=_donate_cycle,
|
88
|
-
args=(company_name, country, war_id, times, delay),
|
89
|
-
daemon=True
|
90
|
-
)
|
91
|
-
thread.start()
|
92
|
-
active_threads.append(thread)
|
93
|
-
print(f"Started donation cycle (proxies={len(proxies)}, times={times}, delay={delay}s)")
|
94
|
-
|
95
|
-
def clear_proxies():
|
96
|
-
"""Clear all proxies"""
|
97
|
-
with proxy_lock:
|
98
|
-
proxies.clear()
|
99
|
-
print("Proxies cleared")
|
100
|
-
|
101
|
-
def stop_all_donations():
|
102
|
-
"""Stop all active donation threads"""
|
103
|
-
for thread in active_threads:
|
104
|
-
thread.join(timeout=1)
|
105
|
-
active_threads.clear()
|
106
|
-
print("All donations stopped")
|
eses-1.0.4/eses/version.py
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.0.4"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|