🌐
GitHub
github.com › python
Python · GitHub
pythondotorg Public · Source code for python.org · Python 1.6k 669 · peps · peps Public · Python Enhancement Proposals · reStructuredText 4.9k 1.8k · typeshed · typeshed Public · Collection of library stubs for Python, with static types · Python 5k 2k ·
general-purpose programming language
Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation. Python is dynamically type-checked and garbage-collected. It supports multiple programming paradigms, including structured … Wikipedia
🌐
GitHub
github.com › topics › python-projects-basic-to-advanced
python-projects-basic-to-advanced · GitHub Topics · GitHub
A Python-based QR code generator that easily converts any text or URL into a QR code image. Simple, customizable, and efficient. python python3 python-qrcode python-programming python-packages python-project python-developer python-for-everybody python-for-beginners python-project-beginner python-qrcode-generator python-projects-basic-to-advanced ... A comprehensive collection of Python notes and examples covering fundamental concepts, practical exercises, and hands-on coding solutions for learners and developers.
🌐
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
import datetime date=str(input('Enter the date(for example:09 02 2019):')) day_name= ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday','Sunday'] day = datetime.datetime.strptime(date, '%d %m %Y').weekday() print(day_name[day]) ...
Starred by 20 users
Forked by 11 users
🌐
CS231n
cs231n.github.io › python-numpy-tutorial
Python Numpy Tutorial (with Jupyter and Colab)
Python code is often said to be almost like pseudocode, since it allows you to express very powerful ideas in very few lines of code while being very readable. As an example, here is an implementation of the classic quicksort algorithm in Python:
🌐
Analytics Vidhya
analyticsvidhya.com › home › 10 github repositories for python projects
Top 10 GitHub Python Projects: Learning Guide for 2026
December 29, 2025 - This repository is a collection of Python examples covering core concepts, syntax, and problem-solving. It is excellent for absolute beginners. It is a “playground and cheatsheet” for Python, organized by topic.
🌐
GitHub
github.com › codebasics › py
GitHub - codebasics/py: Repository to store sample python programs for python learning
Repository to store sample python programs for python learning - codebasics/py
Starred by 7.3K users
Forked by 16.9K users
Languages   Jupyter Notebook 99.0% | Jupyter Notebook 99.0%
Find elsewhere
🌐
Real Python
realpython.com › github-actions-python
Continuous Integration and Deployment for Python With GitHub Actions – Real Python
August 19, 2024 - Fortunately, GitHub has official GitHub Actions to help with both tasks: ... # ... jobs: my_first_job: name: My first job runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.13" - run: python -m pip install -r requirements.txt · In the example above, you can see that the first step in steps is to use the official checkout action. This action checks out the code from your repository into the current GitHub workspace, allowing your workflow to access it.
🌐
GitHub
github.com › realpython › python-basics-exercises
GitHub - realpython/python-basics-exercises: Python Basics: A Practical Introduction to Python 3 · GitHub
In this code repository you find the solutions and sample implementations for the solutions and challenges posed in our Python Basics book.
Starred by 1.2K users
Forked by 562 users
Languages   Python
🌐
GitHub
github.com › vinta › awesome-python
GitHub - vinta/awesome-python: An opinionated list of awesome Python frameworks, libraries, software and resources. · GitHub
1 month ago - Libraries for debugging code. ... manhole - Debugging UNIX socket connections and present the stacktraces for all threads and an interactive prompt. ... icecream - Inspect variables, expressions, and program execution with a single, simple function ...
Starred by 288K users
Forked by 27.5K users
Languages   Python 68.2% | CSS 13.2% | JavaScript 10.0% | HTML 8.0% | Makefile 0.6%
🌐
GitHub
github.com › OmkarPathak › Python-Programs
GitHub - OmkarPathak/Python-Programs: My collection of Python Programs · GitHub
Python ftplib A simple Python FTP file transfer example
Starred by 1.1K users
Forked by 636 users
Languages   Python
🌐
GitHub
github.com › topics › python-examples
python-examples · GitHub Topics · GitHub
iot machine-learning deep-learning model-selection data-preprocessing feature-engineering hyperparameter-tuning concept-drift automl intrusion-detection-system automated-machine-learning data-streams python-examples data-stream-processing python-samples iot-data-analytics ... Code for IDS-ML: intrusion detection system development using machine learning algorithms (Decision tree, random forest, extra trees, XGBoost, stacking, k-means, Bayesian optimization..)
🌐
GitHub
github.com › topics › python-example
python-example · GitHub Topics · GitHub
qr-code python3 pdf-document qrcode-generator python-example qr-code-generator data-embedding
🌐
GitHub
github.com › topics › python-scripts
python-scripts · GitHub Topics · GitHub
Python for cybersecurity with the basic concepts, easy to understand code examples, lab exercises, real-world examples, different security scripts covering web security, network security, defensive security, crypto examples, exploits etc...
🌐
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.1K users
Forked by 6K users
Languages   Python 98.8% | HTML 1.1%
🌐
DEV Community
dev.to › devshefali › 17-best-github-repositories-to-learn-python-5b09
17 Best GitHub Repositories to Learn Python - DEV Community
August 11, 2025 - In this post, I’ll share the 17 best GitHub repositories for learning Python, covering everything from tutorials and exercises to real-world projects and cheat sheets.
🌐
GitHub
github.com › pydata
Python for Data · GitHub
Python 1,169 BSD-2-Clause 115 39 7 Updated · Feb 6, 2026 · berlin.pydata.org Public · There was an error while loading. Please reload this page. pydata/berlin.pydata.org’s past year of commit activity · HTML 2 3 2 1 Updated · Jan 21, 2026 · xarray-data Public · Data repository for xarray examples ·
🌐
Python Developer's Guide
devguide.python.org › contrib › workflows › get-source
Get the source code
$ git remote -v origin git@github.com:<your-username>/cpython.git (fetch) origin git@github.com:<your-username>/cpython.git (push) upstream https://github.com/python/cpython (fetch) upstream git@github.com:<your-username>/cpython.git (push) $ git config branch.main.remote upstream · For more information about these commands see Git Bootcamp and Cheat Sheet. If you did everything correctly, you should now have a copy of the code in the cpython directory and two remotes that refer to your own GitHub fork (origin) and the official CPython repository (upstream).
🌐
GitHub
github.com › PyGithub › PyGithub
GitHub - PyGithub/PyGithub: Typed interactions with the GitHub API v3 · GitHub
Typed interactions with the GitHub API v3. Contribute to PyGithub/PyGithub development by creating an account on GitHub.
Starred by 7.7K users
Forked by 1.9K users
Languages   Python 99.6% | Shell 0.4%
🌐
Medium
medium.com › @sjalexandre › python-tutorial-unit-27-b1818cd27c5b
Python Tutorial — Managing Code with Git and GitHub | Medium
August 13, 2023 - Keep Synced: Regularly update your code with the latest changes from others. ... In this project, you’ll apply what you’ve learned about Git and GitHub by creating a Python project for a simple drawing program using Turtle.