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 ·
Factsheet
Paradigm Multi-paradigm: object-oriented, procedural (imperative), functional, structured, reflective
Designed by Guido van Rossum
Developer Python Software Foundation
Paradigm Multi-paradigm: object-oriented, procedural (imperative), functional, structured, reflective
Designed by Guido van Rossum
Developer Python Software Foundation
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.
Videos
Create GitHub Repo and Add Python Script - YouTube
01:17
Python Hello World with GitHub - YouTube
26:14
Setting up a Python project on GitHub - YouTube
06:03
Uploading Your Python Code to GitHub: Step-by-Step Guide for ...
06:46
How to run Python programs from Github? - YouTube
10:53
#74 Python | Git | PyCharm | GitHub - YouTube
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:
GitHub
github.com › codebasics › py
GitHub - codebasics/py: Repository to store sample python programs for python learning
Starred by 7.3K users
Forked by 16.9K users
Languages Jupyter Notebook 99.0% | Jupyter Notebook 99.0%
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
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..)
Reddit
reddit.com › r/python › best written projects on python github?
r/Python on Reddit: Best written projects on Python GitHub?
September 5, 2013 -
I am looking for suggestions of elegant code, well written and readable code, and code that makes use of best practices.
Suggestions?
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%
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%