Questions tagged [repl.it]

Questions related to the popular online development environment repl.it. Questions should be related to the use and functionality of the repl.it editor/console itself rather than questions about programs developed on repl.it.

Website link: https://repl.it.

318 questions
0
votes
1 answer

Repl.it unable to install pandas

I'm trying to install pandas on Repl.it but I keep getting this message. Using version ^1.2.4 for pandas Updating dependencies Resolving dependencies... [AssertionError] exit status 1 Repl.it: Package operation failed. Full Error
0
votes
1 answer

replit.com - connecting to mongoose with Secrets

I'm new to express.js and mongoose and trying to solve some examples from freeCodeCamp. I have a strange behaviour and can't find, whats the probleme here. Connecting to database this way works: require('dotenv').config(); var mongoose =…
Philippe
  • 3
  • 1
0
votes
1 answer

How to make a python discord bot send a live GIF

I'm trying to get my basic discord bot to display a GIF using python as if a user was sending it from tenor. I.E: example gif I managed to get my bot to send a gif file that can be opened and viewed but I want to take it a step further and have it…
inkutema
  • 1
  • 3
0
votes
1 answer

My Flutter frontend on FlutLab does not see my Django backend on Repl.it

I am trying (unsuccessfully) to get data from my django backend, developed on repl.it, to my flutter frontend, developed on FlutLab. On Flutter side, I get data successfully from, for example, https://jsonplaceholder.typicode.com/users. On Django…
user15549238
0
votes
2 answers

Json data doesn't save at the end of the day

I 'm using repl.it to run my discord bot but I have encountered a problem. Sometimes, at the end of the day usually, whatever the users did does not save in the json file assigned to store the data. Does anyone know what is happening?
0
votes
1 answer

Python list.append not working. I'm using discord.py and replit database to make a gambling bot and I wanted a list of participants

So basically I'm trying to get a discord betting bot to give a list of participants that it can cycle through when games end. The problem is that when I use this code it doesn't seem to append. I've tried debugging it using an alt. The not in…
0
votes
1 answer

How to extend text input in html?

Honestly i was using w3schools so idk what to do. On my repl BatCoder its a repl where you can code Bat files and save them. And now i need to extend the text input! Now can anyone help me? I am a learning coder. No errors just idk what to…
hunter
  • 23
  • 8
0
votes
3 answers

Why does %matplotlib inline in Repl.it give me an error?

I'm trying to create a word cloud using Repl.it by following this towards data science article. However, I'm getting an error with %matplotlib inline (underlined in red). How do I fix this? # Import packages import matplotlib.pyplot as…
Daisy
  • 3
  • 2
0
votes
1 answer

Python: copied code from Repl.it to Visual Studio does not run correctly: Invallid arguments error

Hello currently I was developing some a python script on Repl.it for sake for devices sharing. But now considering I am moving towards Visual Studio (for the toolbox and other mattersà and I have copied over the code, I get an Invalid Argument code…
ThunderSpark
  • 89
  • 2
  • 13
0
votes
1 answer

Is it possible to store something online in a C++ repl?

I only have a very limited knowledge of how the site itself works, so bear with me. I'm trying to create a multi-player game using repl.it. Not a real-time game with actual interactions between players, but just something where progress can be saved…
0
votes
1 answer

Problem while trying to use tensorflow with repl-it

I have this problem while using repl-it. Did someone have a similar problem or know how to solve that one? Repl.it: Updating package configuration --> python3 -m poetry add tensorflow Using version ^2.4.1 for tensorflow Updating…
0
votes
1 answer

What is the most appropriate JSON-serialisable type to use here?

Hi there developer folks, I'm trying to write a little proof-of-concept program on repl.it which stores credentials securely using BCrypt. To save myself faffing with SQL, I'm prototyping using the built in repl.it database to store credentials. The…
gwood
  • 23
  • 4
0
votes
0 answers

How do I manipulate /tmp/audio in repl.it to play audio?

While these docs are good (documentation), I seriously can't find any way to manipulate the files to play audio specifically in the c++ ide in repl.it. This isn't straightforward, and they only have a library for python, and node.js, so it requires…
flying
  • 1
  • 3
0
votes
1 answer

Empty set trying to build dictionary for discord bot

I am trying to build a dictionary for a discord bot. The data structure will look like this: poll = { 'LINK' : {'MoonRaccoon' : 1, 'TheDirtyTree' : 1}, 'ZRX' : {'MoonRaccoon' : 1, 'Dontcallmeskaface' : 1, 'TheDirtyTree' : 1}, 'XRP' :…
0
votes
2 answers

I am trying to call a defined function inside of an if statement and I am getting an error

I am using python to run my code and I've tried all the debuging I could think of but I am still getting an error. SubOrSuper = input("\nWould you like to translate a \033[1msubscript\033[0m, or a \033[1msuperscript?\033[0m\n") if SubOrSuper ==…