Programiz
programiz.com › python-programming › examples
Python Examples | Programiz
This page contains examples of basic concepts of Python programming like loops, functions, native datatypes and so on.
GitHub
github.com › uber › Python-Sample-Application
GitHub - uber/Python-Sample-Application · GitHub
This is a simple Python/Flask application intended to provide a working example of Uber's external API.
Starred by 389 users
Forked by 707 users
Languages Python 88.5% | HTML 8.5% | Makefile 1.9% | JavaScript 1.1%
Example of a simple and well made Python project on Github
You should checkout the discord.py repository! It's well structured. https://github.com/Rapptz/discord.py
More on reddit.comExamples of Well-Organized Python Code?
If you are talking about how to structure your project. There is no one answer to this. It depends on what kind of project are you working. Some are framework based like flask or django. For such projects, you should follow what they suggest ( you can modify it according to your project needs) https://flask.palletsprojects.com/en/1.1.x/tutorial/layout/ I suggest you to read one of this article. https://realpython.com/python-application-layouts/ https://docs.python-guide.org/writing/structure/ More on reddit.com
Arduino, Bluetooth, Android, and Python- Sample Code Included
Thank you!
More on reddit.comBest Python IDE for mac?
Best Python IDE I've used (not OS X specific) is PyCharm by Jetbrains. They have different licensing models of different prices. More on reddit.com
Videos
How To Code A To Do List App In Python | Programming ...
How I Made A Mobile App With Python
How to Create a Web Application in Python using Flask - YouTube
28:43
Build your first mobile app in Python | App Development tutorial ...
10:50
Android Apps to run and learn python (Best 3 Apps personal view) ...
GitHub
github.com › stevemar › sample-python-app
GitHub - stevemar/sample-python-app: Sample containerized Python Flask application for demo purposes
# Check dependencies $ git --version git version 2.23.0 $ python --version Python 3.8.0 $ pip --version # pip comes as a part of python install pip 20.0.2 from /usr/local/lib/python3.8/site-packages/pip (python 3.8) # Clone the sourcecode $ git clone <repo url> $ cd <project dir> # Install project dependencies $ pip install -r requirements.txt # Run the application $ PORT=5001 python src/app.py # Check application $ curl http://localhost:5001/debug # (or) # In Browser visit -> http://localhost:5001/debug/ui
Starred by 15 users
Forked by 85 users
Languages HTML 30.1% | Python 28.5% | CSS 26.2% | Dockerfile 9.1% | JavaScript 6.1% | HTML 30.1% | Python 28.5% | CSS 26.2% | Dockerfile 9.1% | JavaScript 6.1%
Source Code Tester
sourcecodester.com › python
Python | SourceCodester
1 month ago - Free Python Source Code. Download from a vast collections of free Python source code below. Games are also available like Rock Paper Scissors Game and a lot more. ... The Tetris Block Game is an interactive web application built entirely with Python. The game is a clone of the original Atari ...
GitHub
github.com › mahmoud › awesome-python-applications
GitHub - mahmoud/awesome-python-applications: 💿 Free software that works great, and also happens to be open-source Python.
Komodo Edit - (Repo, Home, WP) Multi-language code editor, written in JS, Python, and C++, based on the Mozilla platform. (linux, windows, mac, cpp, js) Leo Editor - (Repo, Home, WP) Personal Information Manager (PIM), IDE, and outliner with ...
Starred by 17.8K users
Forked by 2.7K users
Languages Jupyter Notebook
GitHub
github.com › geekcomputers › Python
GitHub - geekcomputers/Python: My Python Examples · GitHub
This repository contains a collection of Python scripts that are designed to reduce human workload and serve as educational examples for beginners to get started with Python. The code documentation is aligned correctly for viewing in Notepad++ 🗒️ · Feel free to explore the scripts and use them for your learning and automation needs!
Starred by 34.9K users
Forked by 12.9K users
Languages Python 93.9% | Jupyter Notebook 4.6% | Cuda 0.6% | PowerShell 0.4% | Tcl 0.2% | HTML 0.2%
GeeksforGeeks
geeksforgeeks.org › python-programming-examples
Python Programs - Python Programming Example - GeeksforGeeks
December 27, 2024 - The below Python section contains a wide collection of Python programming examples. These Python code examples cover a wide range of basic concepts in the Python language, including List, Strings, Dictionary, Tuple, sets, and many more. Each program example contains multiple approaches to solve the problem.
Python
wiki.python.org › moin › SimplePrograms
SimplePrograms - Python Wiki
import itertools def iter_primes(): # an iterator of all numbers between 2 and +infinity numbers = itertools.count(2) # generate primes forever while True: # get the first number from the iterator (always a prime) prime = next(numbers) yield prime # this code iteratively builds up a chain of ...
Dataquest
dataquest.io › blog › python-projects-for-beginners
Python Projects: 80+ Ideas for Beginners to Advanced (2026)
2 weeks ago - This list has 80+ Python project ideas across every skill level, from your first script to production-ready apps. New to Python? We recommend starting with our Introduction to Python Programming course before working on any Python projects. Otherwise, pick something that sounds interesting and start building. ... These free Dataquest guided projects are a great place to start. They provide an embedded code editor directly in your browser, step-by-step instructions to help you complete the project, and community support if you happen to get stuck.
GitHub
github.com › uber › Python-Sample-Application › blob › master › app.py
Python-Sample-Application/app.py at master · uber/Python-Sample-Application
@app.route('/', methods=['GET']) def signup(): """The first step in the three-legged OAuth handshake. · You should navigate here first. It will redirect to login.uber.com. """ params = { 'response_type': 'code', 'redirect_uri': get_redirect_uri(request), 'scopes': ','.join(config.get('scopes')), } url = generate_oauth_service().get_authorize_url(**params) return redirect(url) ·
Author uber
GitHub
github.com › fasilofficial › 50-python-programs
GitHub - fasilofficial/50-python-programs: This repository contains 50 absolutely simple and beginner friendly python programs. This repository gives you an idea about the basics of python language and libraries like math, random, tkinter, etc.. · GitHub
from tkinter import * window = Tk() # add widgets here window.title('Hello Python') window.geometry("300x200+10+20") window.mainloop() ... from tkinter import * from tkinter import messagebox window = Tk() window.title("mrhuseyin.medium.com") ...
Starred by 21 users
Forked by 12 users
W3Schools
w3schools.com › python › python_examples.asp
Python Examples
Python Strings Slicing Strings Modify Strings Concatenate Strings Format Strings Escape Characters String Methods String Exercises Code Challenge Python Booleans
PythonForBeginners
pythonforbeginners.com › home › python code examples
Python Code Examples - PythonForBeginners.com
January 30, 2021 - pywhois is a Python module for retrieving WHOIS information of domains. pywhois works with Python 2.4+ and no external dependencies [Source] ... In this script I’m using 8 possible answers, but please feel free to add more as you wish.
Netguru
netguru.com › home page › blog › 8 top python web app examples from top-notch companies
8 Top Python Web App Examples From Top-Notch Companies
July 25, 2025 - Instagram is one of the notable Python applications, showcasing Python's simple syntax and robust frameworks like Django. The hugely popular image and video-sharing platform has 1.28 billion users globally and was built using Django, a high-level Python web framework. Since then, Instagram developers have created static sort checkers using Python to investigate their servers. Instagram's server is dominated by Python code – several million lines – and the company uses type annotations to enforce a contract for their Python HTTP APIs.
Reddit
reddit.com › r/learnpython › example of a simple and well made python project on github
r/learnpython on Reddit: Example of a simple and well made Python project on Github
December 20, 2020 -
Hi, I'm wanting to have a look at some examples of really well made but extremely simple python projects in an attempt to better understand basic structure and design. People suggest to me things like Requests or Flask... they may be beautiful but they are way too complex for what I'm after.
Any suggestions that come to mind?
DigitalOcean
docs.digitalocean.com › python sample app
Sample App for Python | DigitalOcean Documentation
This content is automatically generated from https://github.com/digitalocean/sample-python/blob/main/README.md. We provide a sample app using Python that you can deploy on App Platform.
GitHub
github.com › Python-World › python-mini-projects
GitHub - Python-World/python-mini-projects: A collection of simple python mini projects to enhance your python skills · GitHub
Starred by 18.2K users
Forked by 6K users
Languages Python 98.8% | HTML 1.1%