I'm having a lot of trouble using requests python package inside Renpy game. How does one use it?
View attachment requestsTraceback.txt
I tried installing it with pip, installing older versions. All inside game/python-packages
Found this in the
This is how my python-packages looks like:
Inside the game only two lines that crash the game are: , if the import is commented out the game will work.
I have made the code with a single post request and some data in regular python which works, now implementing the same code in Renpy feels like a nightmare
Does anyone have any clue how to make requests package work?
(I get the same thing when importing types from SimpleNamespace --> code line:
)
PS: provided both tracebacks for error when starting the game with requests imported and types from SimpleNamespace imported
View attachment requestsTraceback.txt
I tried installing it with pip, installing older versions. All inside game/python-packages
Found this in the
You must be registered to see the links
but nothing worked so far.This is how my python-packages looks like:
Inside the game only two lines that crash the game are: , if the import is commented out the game will work.
I have made the code with a single post request and some data in regular python which works, now implementing the same code in Renpy feels like a nightmare
Does anyone have any clue how to make requests package work?
(I get the same thing when importing types from SimpleNamespace --> code line:
Code:
from types import SimpleNamespace
PS: provided both tracebacks for error when starting the game with requests imported and types from SimpleNamespace imported