malikmajai
malikmajai
url = f"https://api.sniper.xyz/v7/activities?symbol=all" scraper = cfscrape.create_scraper(delay=10) response = scraper.get(url, headers=headers) print(f'Status Code: {response.status_code}') print(f'Status Code Reason: {response.reason}') Works on my windows python 3.10 but doesn't on linux python 3.8
### Description I am not able to create a forum channel. Here is my code: ```py GUILD_ID = 0 CATEGORY_ID = 0 guild: discord.Guild = bot.get_guild(GUILD_ID) category: discord.CategoryChannel = bot.get_channel(CATEGORY_ID)...
``` file = discord.File('output.txt') await ctx.send(file=file) ``` 