Skip to content
Sign UpLog In
Profile icon

Zoutige Wolf

@ZoutigeWolf
  • Patser's Mommy

    Cover page
    Made with Python
    Recent comments (0)
Repls
Community
ZoutigeWolf
ZoutigeWolf
shared a Post
2 years ago
Flask app won't run
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
Coder100
Coder100
please attach the repl.2 years ago
xfinnbar
xfinnbar
Make sure to run the app setting the host to 0.0.0.0: app.run("0.0.0.0")2 years ago
VulcanWM
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
ZoutigeWolf
ZoutigeWolf
shared a Post
2 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
Jäger Bot [Discontinued]
Python
DynamicSquid
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
ZoutigeWolf
ZoutigeWolf
shared a Post
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
Jäger Bot [Discontinued]
Python
Coder100
Coder100
your repl is private so we can't see your code.2 years ago
ZoutigeWolf
ZoutigeWolf
shared a Post
2 years ago
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
icodeletion
to list all of your keys do keys = db.keys() for i in keys: # or whatever variable print(i)2 years ago