Skip to content
Open navbar menu
Sign UpLog In
Xag803

Xavier Grant

@Xag803
  • BlissfulWickedUtility

    Cover page
    Made with Python
    Recent comments (0)
Xag803
Xag803
shared a Post
2 years ago
Trying to center text in the console no matter the size of the console in python
I have been using Center() to center text but this does not center if the console size changes, is there a way to make it centered even if the console
Number Game
Python
CodingElf66
CodingElf66
Actually you can't do it, since the function .center by default is the Replit Python Window tab, so you can't really do anything about that, unless if you want to find the function and go re-code it. I hope you can mark this as answered, thanks!2 years ago
Xag803
Xag803
shared a Post
3 years ago
I am trying to use flask-admin and keep getting this error flask has no attribute login_manager How do I fix this?
IronRavens
Python
InvisibleOne
InvisibleOne
The only error I'm getting is TabError: inconsistent use of tabs and spaces in indentation which means you are using tabs in some places for indentation and spaces in another, you need to stick with one.3 years ago
Xag803
Xag803
shared a Post
3 years ago
I am trying to setup selenium to use the remote server on their documentation I need the replit file to run the server.jar and then the main.py file.
Selenium testing
Python
19wintersp
19wintersp
If you want the JAR to finish before starting the Python: run = "java -jar Server.jar; python3 main.py" or if you want them to start at the same time: run = "java -jar Server.jar & python3 main.py & wait" `3 years ago
Xag803
Xag803
shared a Post
3 years ago
I am getting a error "Hmmmm.... We Couldn't Reach Your Repl Make sure your repl has a port open and is ready to receive HTTP traffic." Does anyone kno
Babies first website, For school!
Python
programmeruser
programmeruser
Make sure you run on 0.0.0.0 or repl.it can't forward the port! app.run(host='0.0.0.0', port=5000, debug=true) `3 years ago
Xag803
Xag803
shared a Post
3 years ago
I am making this for a friend it will send a meme on command, How do I send a random image to discord via the random command? Like this memes = [
Meme bot
Python