Skip to content
Sign UpLog In
Profile icon

Ashenguard

@Ashenguard
Repls
Community
Ashenguard
Ashenguard
shared a Post
1 year ago
Flask return GIF from URL
I'm trying to retrieve a gif from URL and return it as the Flask response. It's what I currently have and it is half-working. response = requests.get(
CosmicBear
CosmicBear
Could you share the repl? I think I know what the problem is but I need to fork the code to make sure.1 year ago
Ashenguard
Ashenguard
shared a Post
2 years ago
As title says I want to install and use flask[async] (pip install flask[async]) on my project, I tried to add it in the toml file but it didn't work,
Philip-TT
Philip-TT
Great post full of useful tips! My site is fairly new and I am also having a hard time getting my readers to leave comments. Analytics shows they are coming to the site but I have a feeling “nobody wants to be first”. aka ms remoteconnect7 months ago
Philip-TT
Philip-TT
You have done a great job. I will definitely dig it and personally recommend to my friends. I am confident they will be benefited from this site. feed.kroger.com7 months ago
Philip-TT
Philip-TT
Very interesting blog. A lot of blogs I see these days don't really provide anything that I'm interested in, but I'm most definitely interested in this one. Just thought that I would post and let you know Sky [email protected] Showflat8 months ago
Ashenguard
Ashenguard
shared a Post
2 years ago
I have a VPS with a limited budget where I can not afford a dedicated IP so I decided to use the repl as a redirector to my IP:PORT Here is the real
tussiez
tussiez
Adding onto @SixBeeps ' answer, you should use a DNS server. https://freedns.afraid.org This will do all of your "redirecting".2 years ago
SixBeeps
SixBeeps
image Try sending them as text/css2 years ago
Ashenguard
Ashenguard
shared a Post
3 years ago
I had 3 discord bots running on repl, Suddenly all of them stopped working, When I try to restart them this error happens Repl.it: Updating package co
Ashenguard
Ashenguard
It seems problem is gone by itself, But it just forced me to go a new host sadly 3 years ago
InfinitelyDev
InfinitelyDev
What repl does when you click the run button: It tries to install the modules on the repl device root, not local to your project. Unfortunately, this is what leads to the errors. You can install modules locally, which is what is used to do, using Ctrl+Shift+S to get to terminal and pip install --user [module] (--user specifies for locally), however, repl still looks to the main computer when you hit the run button3 years ago
TheForArkLD
TheForArkLD
ok do this in console import os os.system("pip install discord") ~3 years ago
Ashenguard
Ashenguard
shared a Post
3 years ago
Is there anyway to use chrome driver?
elonmaks
elonmaks
Hi, @Ashenguard . Please, install selenium module with pip and import the webdriver from the selenium. Just like this: pip install selenium and second you should do this: from selenium import webdriver Your code will look like this: driver = webdriver.Chrome() driver.get('https://www.repl.it/') print(driver.title) time.sleep(5) driver.quit() It's simply example, you can write you own variant.3 years ago