I am developing an application in python that involves a lot of plots and user interactions. I do not want my clients to have to download anything to use the app. So I was looking for an online tool that would allow users to run the script to use it (they should not be running it via the terminal or anything that would require them to have python or download anything) or even have the application on the web such that only those allowed could access it. I have looked into Skulpt, pythonanywhere, and Django. They either do not support GUI libraries such as Tkinter or I am not sure if they are meant for this purpose. Can you guys help me out here? Thank you!
looking for a tool that allows in-browser python
388 Views Asked by Tinkerer At
2
There are 2 best solutions below
0
arashiyama
On
Why not try python for the backend, and something like D3.JS for the front end graphics?
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in WEB-APPLICATIONS
- Azure Web App PATH Variable Modification
- How To Update a Web Application In Azure and Keep The App Up the whole time
- Developing a search and tag heavy website
- How do you include a HTML file in c
- Is it recommended to use Node.js for an online room booking web application?
- programmatically uninstall other application without asking user
- Fail to locate j_spring_security_check in Spring Security
- Configuring Web Applications for iOS
- Change Javascript Variables Using <input>
- how do you use angularJs to produce a functioning webapp?
- NoClassDefFound error in web application deployed on Tomcat
- Replying to a request in ruby on rails (Server side)
- Exclude one role in web.xml
- LDAP connection only works on localhost
- Displaying statistics collected by Moskito-central
Related Questions in PYTHONANYWHERE
- import_error_application django on python anywhere. I deployed the app on python anywhere but this error is stopping me from going further
- host django allauth project in pythonanywhere
- Required auth backend for Django Facebook Python package wasn't found
- How can I change a Django db to MySQL on pythonanywhere?
- Python: coding to account for multiple development environments?
- syntax error pulling git clone into python anywhere
- Python flask error with app.run
- Pythonanywhere - Error code: Unhandled Exception
- Deploying flask site/application on pythonanywhere.com
- Web2py 3rd party authentication
- Change Timezone for Date object Python
- Pythonanywhere 'staticfiles' is not a valid tag library: Template library staticfiles not found
- How to access file in pythonanywhere?
- Raspberry pi3 and django
- Unable to create a Webhook for my Facebook Chatbot
Related Questions in ONLINE-COMPILATION
- Sending input data to child process in node.js
- Can we take python code as input in browser and return the output?
- online java compile shows the error like this
- looking for a tool that allows in-browser python
- Haskell way to joint two small functions. Syntax advice needed
- Is there any way to create an executable file using c++ and an online IDE
- How to share my python program online as a web app by keeping the source code in Github?
- Different results between online C compiler and compiling in cmd while trying to implement linkedlists
- Kivy compiler website that will send compiled apk
- Is there an R online compiler that enables to run code line by line?
- Can I create a header file in Ideone?
- How to build an Online Objective-C Compiler
- Is there any online compiler API such that if I input the source code, it would return the results (or any errors) upon compilation?
- Is there any option to compile and run a ts code faster using tsc or ts-node or anything else?
- Is this a glitch with online C compiler, gcc-7.2.0?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You are not going to be able to create an application in Python that the end user will use without requiring the user to download SOMETHING. The best you can get trying to do that would be something like Skulpt, like you said. However, the GUI libraries you seem to be interested in assume that you're running locally on a system, not in a browser.
Your best bet is going to be to create a python application like normal, then have the user run it by downloading an exe (or binary for other platforms you wish to support) that has been packaged together using something like cx_Freeze, py2app, py2exe or pyinstaller. These libraries will help you bundle your custom code, any libraries (like Tkinter), and Python itself into one executable package so the user can run it without needing to install anything beforehand. Of course, users might be hesitant to just run an .exe from your website.
Another option is to choose something other than Python. In order to make it a zero-install-required, in-browser solution, consider looking for Javascript or Flash libraries that you can use to replace the things you want in Python like Tkinter. If you really want in-the-browser, then Python is not the right tool for the job.