Zoutige Wolf
@ZoutigeWolf
I want to run a flask app but when i start it and go to https://patsers-mommy.zoutigewolf.repl.co nothing happens.
The code is located at the bottom
VulcanWM Try forking the repl and then doing it. It looks like you tried making charts with matpolib before and you cannot try making an app after doing that2 years ago
when i try to import instabot with import instabot I get a recursion error.
The line is located in cogs/insta.py
Repl.it: Updating package configurat
Python
DynamicSquid You can only recuse a function a limited number of times in Python. To change that, do this:
import sys
sys.setrecursionlimit(9**9)
`2 years ago
Whenever i try to access my database with value = db["key"] I get the error TypeError: unexpected type "float".
This never happened before, can someo
Python
I have this code to list all the keys:
@bot.command()
async def keys(ctx):
allkeys = db.keys()
allkeys_list = list(allkeys)
await ctx.send(allke
icodeletion to list all of your keys do
keys = db.keys()
for i in keys: # or whatever variable
print(i)2 years ago