Difference between revisions of "Python"
(→Web Apps) |
(→Web Apps) |
||
Line 58: | Line 58: | ||
=Web Apps= | =Web Apps= | ||
− | Web apps are cross platform apps which are used via a browser. This allows you to create a single app to cover platforms such has Windows, Linux, iOS, Android, and so on. These essentially have a server program, which when you start it will allow you to access your app via '''<nowiki>http://localhost:8000</nowiki>''' or '''<nowiki>http://127.0.0.1:8000</nowiki>'''. The exact port number | + | Web apps are cross platform apps which are used via a browser. This allows you to create a single app to cover platforms such has Windows, Linux, iOS, Android, and so on. These essentially have a server program, which when you start it will allow you to access your app via '''<nowiki>http://localhost:8000</nowiki>''' or '''<nowiki>http://127.0.0.1:8000</nowiki>'''. The exact port number may vary, but the server will output the correct link to use. |
==Django== | ==Django== |
Revision as of 11:14, 17 September 2019
Contents
Skills
Global & Parameter Passing - Python
GUI With Tkinter (WIP) - LizQ
GUI - Other options
SQLite Databases
Insert Update Delete sqlite queries
Using Visual Studio
Create a python project in Visual Studio
Creating a virtual environment in Visual Studio
Web Apps
Web apps are cross platform apps which are used via a browser. This allows you to create a single app to cover platforms such has Windows, Linux, iOS, Android, and so on. These essentially have a server program, which when you start it will allow you to access your app via http://localhost:8000 or http://127.0.0.1:8000. The exact port number may vary, but the server will output the correct link to use.
Django
Creating the Home page in Django
Create a sign up page in Django
Create account edit page in Django
Display data from a model in django
Add data into a model in Django