-
Notifications
You must be signed in to change notification settings - Fork 23
/
main.py
234 lines (192 loc) · 7.62 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import requests
import json
import time
import random
from setproctitle import setproctitle
from convert import get
from colorama import Fore, Style, init
from datetime import datetime, timedelta
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.util.retry import Retry
import urllib.parse # For decoding the URL-encoded initData
url = "https://notpx.app/api/v1"
# ACTIVITY
WAIT = 180 * 3
DELAY = 1
# IMAGE
WIDTH = 1000
HEIGHT = 1000
MAX_HEIGHT = 50
# Initialize colorama for colored output
init(autoreset=True)
setproctitle("notpixel")
# Retrieve the image configuration
image = get("")
# Define colors for pixel representation
c = {
'#': "#000000",
'.': "#3690EA",
'*': "#ffffff"
}
# Function to log messages with timestamp in light grey color
def log_message(message, color=Style.RESET_ALL):
current_time = datetime.now().strftime("[%H:%M:%S]")
print(f"{Fore.LIGHTBLACK_EX}{current_time}{Style.RESET_ALL} {color}{message}{Style.RESET_ALL}")
# Function to initialize a requests session with retry logic
def get_session_with_retries(retries=3, backoff_factor=0.3, status_forcelist=(500, 502, 504)):
session = requests.Session()
retry = Retry(
total=retries,
read=retries,
connect=retries,
backoff_factor=backoff_factor,
status_forcelist=status_forcelist,
)
adapter = HTTPAdapter(max_retries=retry)
session.mount("http://", adapter)
session.mount("https://", adapter)
return session
# Create a session with retry logic
session = get_session_with_retries()
# Function to get the color of a pixel from the server
def get_color(pixel, header):
try:
response = session.get(f"{url}/image/get/{str(pixel)}", headers=header, timeout=10)
if response.status_code == 401:
return -1
return response.json()['pixel']['color']
except KeyError:
return "#000000"
except requests.exceptions.Timeout:
log_message("Request timed out", Fore.RED)
return "#000000"
except requests.exceptions.ConnectionError as e:
log_message(f"Connection error: {e}", Fore.RED)
return "#000000"
except requests.exceptions.RequestException as e:
log_message(f"Request failed: {e}", Fore.RED)
return "#000000"
# Function to claim resources from the server
def claim(header):
log_message("Claiming resources", Fore.CYAN)
try:
session.get(f"{url}/mining/claim", headers=header, timeout=10)
except requests.exceptions.RequestException as e:
log_message(f"Failed to claim resources: {e}", Fore.RED)
# Function to calculate pixel index based on x, y position
def get_pixel(x, y):
return y * 1000 + x + 1
# Function to get x, y position from pixel index
def get_pos(pixel, size_x):
return pixel % size_x, pixel // size_x
# Function to get pixel index based on canvas position
def get_canvas_pos(x, y):
return get_pixel(start_x + x - 1, start_y + y - 1)
# Starting coordinates
start_x = 920
start_y = 386
# Function to perform the painting action
def paint(canvas_pos, color, header):
data = {
"pixelId": canvas_pos,
"newColor": color
}
try:
response = session.post(f"{url}/repaint/start", data=json.dumps(data), headers=header, timeout=10)
x, y = get_pos(canvas_pos, 1000)
if response.status_code == 400:
log_message("Out of energy", Fore.RED)
return False
if response.status_code == 401:
return -1
log_message(f"Paint: {x},{y}", Fore.GREEN)
return True
except requests.exceptions.RequestException as e:
log_message(f"Failed to paint: {e}", Fore.RED)
return False
# Function to extract the username from the URL-encoded init data
def extract_username_from_initdata(init_data):
# URL decode the init data
decoded_data = urllib.parse.unquote(init_data)
# Find the part that contains "username"
username_start = decoded_data.find('"username":"') + len('"username":"')
username_end = decoded_data.find('"', username_start)
if username_start != -1 and username_end != -1:
return decoded_data[username_start:username_end]
return "Unknown"
# Function to load accounts from data.txt
def load_accounts_from_file(filename):
with open(filename, 'r') as file:
accounts = [f"initData {line.strip()}" for line in file if line.strip()]
return accounts
# Function to fetch mining data (balance and other stats)
def fetch_mining_data(header):
try:
response = session.get(f"https://notpx.app/api/v1/mining/status", headers=header, timeout=10)
if response.status_code == 200:
data = response.json()
user_balance = data.get('userBalance', 'Unknown')
log_message(f"Balance: {user_balance}", Fore.MAGENTA)
else:
log_message(f"Failed to fetch mining data: {response.status_code}", Fore.RED)
except requests.exceptions.RequestException as e:
log_message(f"Error fetching mining data: {e}", Fore.RED)
# Main function to perform the painting process
def main(auth, account):
headers = {'authorization': auth}
try:
# Fetch mining data (balance) before claiming resources
fetch_mining_data(headers)
# Claim resources
claim(headers)
size = len(image) * len(image[0])
order = [i for i in range(size)]
random.shuffle(order)
for pos_image in order:
x, y = get_pos(pos_image, len(image[0]))
time.sleep(0.05 + random.uniform(0.01, 0.1))
try:
color = get_color(get_canvas_pos(x, y), headers)
if color == -1:
log_message("DEAD :(", Fore.RED)
print(headers["authorization"])
break
if image[y][x] == ' ' or color == c[image[y][x]]:
log_message(f"Skip: {start_x + x - 1},{start_y + y - 1}", Fore.RED)
continue
result = paint(get_canvas_pos(x, y), c[image[y][x]], headers)
if result == -1:
log_message("DEAD :(", Fore.RED)
print(headers["authorization"])
break
elif result:
continue
else:
break
except IndexError:
log_message(f"IndexError at pos_image: {pos_image}, y: {y}, x: {x}", Fore.RED)
except requests.exceptions.RequestException as e:
log_message(f"Network error in account {account}: {e}", Fore.RED)
# Main process loop to manage accounts and sleep logic
def process_accounts(accounts):
# Track the start time of the first account
first_account_start_time = datetime.now()
for account in accounts:
# Process each account one by one
username = extract_username_from_initdata(account)
log_message(f"--- STARTING SESSION FOR ACCOUNT: {username} ---", Fore.BLUE)
main(account, account)
# Calculate the time elapsed since the first account started processing
time_elapsed = datetime.now() - first_account_start_time
time_to_wait = timedelta(hours=1) - time_elapsed
if time_to_wait.total_seconds() > 0:
log_message(f"SLEEPING FOR {int(time_to_wait.total_seconds() // 60)} MINUTES", Fore.YELLOW)
time.sleep(time_to_wait.total_seconds())
else:
log_message(f"NO SLEEP NEEDED, TOTAL PROCESSING TIME EXCEEDED 1 HOUR", Fore.YELLOW)
if __name__ == "__main__":
# Load accounts from the data.txt file
accounts = load_accounts_from_file('data.txt')
# Infinite loop to process accounts
while True:
process_accounts(accounts)