Update ccc.py
Browse files
ccc.py
CHANGED
|
@@ -51,7 +51,7 @@ recent_notifications = defaultdict(lambda: deque(maxlen=5))
|
|
| 51 |
|
| 52 |
async def fetch_exists_data():
|
| 53 |
try:
|
| 54 |
-
response = requests.get('https://
|
| 55 |
if response.status_code == 200:
|
| 56 |
return response.json().get('data', [])
|
| 57 |
except Exception as e:
|
|
@@ -76,7 +76,7 @@ def format_number(number):
|
|
| 76 |
|
| 77 |
async def fetch_pet_collection_data(pet_name):
|
| 78 |
try:
|
| 79 |
-
response = requests.get('https://
|
| 80 |
if response.status_code == 200:
|
| 81 |
data = response.json().get('data', [])
|
| 82 |
for pet in data:
|
|
@@ -88,7 +88,7 @@ async def fetch_pet_collection_data(pet_name):
|
|
| 88 |
|
| 89 |
async def fetch_pet_exists_data(pet_name):
|
| 90 |
try:
|
| 91 |
-
response = requests.get('https://
|
| 92 |
if response.status_code == 200:
|
| 93 |
data = response.json().get('data', [])
|
| 94 |
variants = {
|
|
|
|
| 51 |
|
| 52 |
async def fetch_exists_data():
|
| 53 |
try:
|
| 54 |
+
response = requests.get('https://biggamesexists.deno.dev')
|
| 55 |
if response.status_code == 200:
|
| 56 |
return response.json().get('data', [])
|
| 57 |
except Exception as e:
|
|
|
|
| 76 |
|
| 77 |
async def fetch_pet_collection_data(pet_name):
|
| 78 |
try:
|
| 79 |
+
response = requests.get('https://collectionpet.deno.dev')
|
| 80 |
if response.status_code == 200:
|
| 81 |
data = response.json().get('data', [])
|
| 82 |
for pet in data:
|
|
|
|
| 88 |
|
| 89 |
async def fetch_pet_exists_data(pet_name):
|
| 90 |
try:
|
| 91 |
+
response = requests.get('https://biggamesexists.deno.dev')
|
| 92 |
if response.status_code == 200:
|
| 93 |
data = response.json().get('data', [])
|
| 94 |
variants = {
|