This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aiofiles==24.1.0 | |
aiohappyeyeballs==2.6.1 | |
aiohttp==3.11.18 | |
aiosignal==1.3.2 | |
asyncio==3.4.3 | |
attrs==25.3.0 | |
certifi==2025.1.31 | |
charset-normalizer==3.4.1 | |
frozenlist==1.6.0 | |
idna==3.10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import aiohttp | |
import time | |
queue = asyncio.Queue() | |
async def producer(start_url, session): | |
url = start_url | |
while url: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import aiohttp | |
import time | |
def find_fire(type_list): | |
for ty in type_list: | |
if ty["type"]["name"] == "fire": | |
return True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import time | |
def find_fire(type_list): | |
for ty in type_list: | |
if ty["type"]["name"] == "fire": | |
return True | |
return False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
APP.thankYou.init(); | |
}); | |
var APP = APP || {}; | |
APP.thankYou = { | |
init: function() { | |
this.ajaxToken(); |