I'm looking for a way to host a Python script online so my friends can access it without downloading an exe file that might set off security alarms. I've created a DnD decipher program that takes user input strings and converts them into runes and vice versa. Any suggestions on free platforms or methods to achieve this?
2 Answers
Another idea is to turn your script into a web app. There are plenty of guides available; for instance, check out the one on realpython.com about Python web applications. Make sure you find a hosting service that supports Python.
You could try using an online Python platform like online-python.com. Just paste your code there and share the link with your friends. It's super easy!

That sounds useful! Do you have any hosting recommendations?