Answers for "python example applications"

7

uses of python

Uses of python include:
Web Development
Game Development
Machine Learning and Artificial Intelligence
Data Science and Data Visualization
Desktop GUI (Graphic User Interface)
Web Scraping Applications
Business Applications
Audio and Video Applications
CAD Applications
Embedded Applications
Posted by: Guest on July-20-2020
2

build a python app

pyinstaller needed
pip install pyinstaller

on windows cmd write:
pyinstaller.exe --onefile --debug=all --windowed --name=myApp --icon=img/app.ico --paths venv/path/site-package app.py

--onefile	include all in one file, optional
--debug		debug at app s launch, NOT use --windowed
--windowed	for gui applications, optional
--name		app name, optional
--icon		app s icon, optional
app.py		main file of the project
Posted by: Guest on August-26-2020

Code answers related to "python example applications"

Python Answers by Framework

Browse Popular Code Answers by Language