🌐
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%
🌐
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%
Discussions

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.com
🌐 r/learnpython
52
326
December 20, 2020
Best written projects on Python GitHub?
Flask is known for being "Pythonic" https://github.com/mitsuhiko/flask More on reddit.com
🌐 r/Python
73
150
September 5, 2013
Recherche de beta testeurs : App Github qui automatise la code review sur Python

Une review automatisée, ça s'appelle des regles de lint.

More on reddit.com
🌐 r/programmation
6
1
June 21, 2023
Automate the boring stuff with python - tinder
Now you need machine learning to determine the attractiveness of the picture. More on reddit.com
🌐 r/Python
325
6722
December 19, 2017
🌐
GitHub
github.com › digitalocean › sample-python
GitHub - digitalocean/sample-python: ⛵ App Platform sample Python application.
We provide a sample app using Python that you can deploy on App Platform.
Starred by 63 users
Forked by 329 users
Languages   Python 95.5% | Procfile 4.5%
🌐
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++ 🗒️
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%
🌐
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 › contentful › the-example-app.py
GitHub - contentful/the-example-app.py: Example app for Contentful in Python
January 18, 2023 - The Python example app teaches the very basics of how to work with Contentful:
Starred by 17 users
Forked by 30 users
Languages   Python 81.4% | HTML 17.4% | Python 81.4% | HTML 17.4%
🌐
GitHub
github.com › alanbchristie › PySimple
GitHub - alanbchristie/PySimple: A very simple Python application
A very simple Python application. Using the material in Docker's Get Started guide this is a simple (classic) Python-based web-app that uses Flask and Redis.
Starred by 2 users
Forked by 35 users
Languages   Python 77.3% | Dockerfile 22.7% | Python 77.3% | Dockerfile 22.7%
🌐
GitHub
github.com › Azure-Samples › python-docs-hello-world
GitHub - Azure-Samples/python-docs-hello-world: A simple python application for docs
A simple python application for docs. Contribute to Azure-Samples/python-docs-hello-world development by creating an account on GitHub.
Starred by 137 users
Forked by 3K users
Languages   Python 100.0% | Python 100.0%
Find elsewhere
🌐
GitHub
github.com › kishstats › Simple-Python-App
GitHub - kishstats/Simple-Python-App: This is a simple boilerplate for structuring a small, simple Python application.
This is a simple boilerplate for structuring a small, simple Python application. - kishstats/Simple-Python-App
Forked by 9 users
Languages   Python 100.0% | Python 100.0%
🌐
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.
Case studies in successfully shipping Python software · As developers, we spend our days with code. The site you're reading this on is mostly modules, packages, libraries, frameworks, and the like. But users see applications.
Starred by 17.8K users
Forked by 2.7K users
Languages   Jupyter Notebook
🌐
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
A collection of simple python mini projects to enhance your python skills - Python-World/python-mini-projects
Starred by 18.2K users
Forked by 6K users
Languages   Python 98.8% | HTML 1.1%
🌐
GitHub
github.com › horejsek › python-webapp-example
GitHub - horejsek/python-webapp-example: Python web app example
Example of Python web app with a debian packaging.
Starred by 42 users
Forked by 22 users
Languages   Python 58.2% | Makefile 34.2% | HTML 7.6% | Python 58.2% | Makefile 34.2% | HTML 7.6%
🌐
GitHub
github.com › mattfeltonma › python-sample-web-app
GitHub - mattfeltonma/python-sample-web-app · GitHub
This solution uses consists of a simple Python web application built using Flask. It is configured to query two public APIs.
Starred by 2 users
Forked by 44 users
Languages   Python 83.4% | HTML 16.6%
🌐
GitHub
github.com › peterdeme › python-sample-app
GitHub - peterdeme/python-sample-app: A sample Python app highlighting best practises · GitHub
code style (flake8, isort) package management (Poetry) Clone the repo: $ git clone https://github.com/peterdeme/python-sample-app.git · Install Poetry if you haven't already. This project requires 1.0 which is currently in beta as of November 2019.
Author   peterdeme
🌐
GitHub
github.com › Appdynamics › Python-Demo-App
GitHub - Appdynamics/Python-Demo-App: Python Demo App
Raise uncaught exceptions in application code. Simulate slow database calls in MySQL and PostgreSQL. Make external HTTP calls. Return HTTP errors (5xx and 4xx). NOTE: To use the AppDynamics Python Agent, you must have a compatible (4.0+) AppDynamics controller in SAAS or On Premise and a license provisioned for Python agents.
Starred by 13 users
Forked by 19 users
Languages   Python 77.9% | Shell 19.4% | HTML 2.7% | Python 77.9% | Shell 19.4% | HTML 2.7%
🌐
GitHub
github.com › topics › python-application
python-application · GitHub Topics · GitHub
django python-application star-admin python-app star-admin-template django-starter-template django-star-admin star-admin-django starer-template-django star-admin-starter django-star django-star-theme star-admin-dashboard django-star-template django-star-design django-star-admin-template star-admin-free django-starer-free ... This code pattern creates a Python Flask application that incorporates MongoDB as a microservice in Docker containers.
🌐
GitHub
github.com › topics › simple-python
simple-python · GitHub Topics · GitHub
students school study student python-3 school-education simple-python study-tool simple-python-study-tool ... This project is a basic to-do list application where users can add, remove, and mark tasks as completed, all from the command line ...
🌐
GitHub
github.com › build-on-aws › sample-python-web-app
GitHub - build-on-aws/sample-python-web-app: Sample Python application that is used in tutorials as a container, and running with uWSGI / Nginx. · GitHub
Sample Python application that is used in tutorials as a container, and running with uWSGI / Nginx. - build-on-aws/sample-python-web-app
Starred by 4 users
Forked by 98 users
Languages   HTML 39.0% | Python 28.8% | Shell 16.7% | CSS 11.3% | Dockerfile 4.2%
🌐
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?

🌐
GitHub
github.com › benc-uk › python-demoapp
GitHub - benc-uk/python-demoapp: Simple Python Flask web application designed for running in containers for demos
November 9, 2023 - Simple Python Flask web application designed for running in containers for demos - benc-uk/python-demoapp
Starred by 162 users
Forked by 1.5K users
Languages   JavaScript 52.3% | HTML 15.3% | Python 12.0% | Shell 10.3% | Makefile 7.5% | CSS 1.6% | Dockerfile 1.0% | JavaScript 52.3% | HTML 15.3% | Python 12.0% | Shell 10.3% | Makefile 7.5% | CSS 1.6% | Dockerfile 1.0%