https://github.com/blackdesert575/python-101
python-101 for one who want to practice more coding skills/tips with Python
https://github.com/blackdesert575/python-101
algorithm codility datastructures hackerrank leetcode python python3
Last synced: about 2 months ago
JSON representation
python-101 for one who want to practice more coding skills/tips with Python
- Host: GitHub
- URL: https://github.com/blackdesert575/python-101
- Owner: blackdesert575
- License: mit
- Created: 2025-03-28T10:27:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-24T06:13:53.000Z (3 months ago)
- Last Synced: 2026-03-25T07:47:16.001Z (3 months ago)
- Topics: algorithm, codility, datastructures, hackerrank, leetcode, python, python3
- Language: Python
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-101
python-101 for one who want to practice more coding skills/tips with Python
## Quickt Start
```shell
# install uv and check install script
curl -LsSf https://astral.sh/uv/install.sh | less
curl -LsSf https://astral.sh/uv/install.sh | sh
# macOS and zsh
source $HOME/.local/bin/env bash
echo 'eval "$(uv generate-shell-completion zsh)"' >> ~/.zshrc
# run python with uv
uv run solution.py
```
## Docs/Tips/MISC/...etc
* uv
* An extremely fast Python package and project manager, written in Rust.
* [docs.astral.sh/uv/](https://docs.astral.sh/uv/)
* [github.com/astral-sh/uv](https://github.com/astral-sh/uv)
* [docs.astral.sh/uv/guides/integration/fastapi/#migrating-an-existing-fastapi-project](https://docs.astral.sh/uv/guides/integration/fastapi/#migrating-an-existing-fastapi-project)
* uvx
* [docs.astral.sh/uv/concepts/tools/#the-uv-tool-interface](https://docs.astral.sh/uv/concepts/tools/#the-uv-tool-interface)
* geeksforgeeks
* [www.geeksforgeeks.org/python-interview-questions/](https://www.geeksforgeeks.org/python-interview-questions/)
* docs
* [docs.python.org/3.10/index.html](https://docs.python.org/3.10/index.html)
* [docs.python.org/3/howto/sorting.html](https://docs.python.org/3/howto/sorting.html)
* [docs.python.org/3.12/library/unittest.mock-examples.html](https://docs.python.org/3.12/library/unittest.mock-examples.html)
* [docs.python.org/3.12/library/stdtypes.html/Built-in Types](https://docs.python.org/3.12/library/stdtypes.html)
* [docs.python.org/3.13/library/collections.html](https://docs.python.org/3.13/library/collections.html)
* [docs.python.org/3/library/asyncio.html](https://docs.python.org/3/library/asyncio.html)
* [docs.python.org/3/library/logging.handlers.html](https://docs.python.org/3/library/logging.handlers.html)
* [docs.python.org/3/library/logging.html#module-logging](https://docs.python.org/3/library/logging.html#module-logging)
* Inversion of control
* Books
* [automatetheboringstuff.com/](https://automatetheboringstuff.com/)
* Automate the Boring Stuff with Python
* Python Developer
* [www.python.org/dev/](https://www.python.org/dev/)
* [www.python.org/dev/buildbot/](https://www.python.org/dev/buildbot/)
* [buildbot.python.org/#/](https://buildbot.python.org/#/)
* interpreter
* Python 2.7
* Python 3.8
* Python 3.10
* Python 3.13
* ansible
* bot
* discord
* web
* django
* fastapi
* flask
* cli tools
* video
* [github.com/yt-dlp/yt-dlp](https://github.com/yt-dlp/yt-dlp)
* roadmap.sh
* [roadmap.sh/python](https://roadmap.sh/python)
* SSH
* [AsyncSSH: Asynchronous SSH for Python](https://asyncssh.readthedocs.io/en/latest/)
* [Paramiko](https://www.paramiko.org/)
* GUI automation
* [pyautogui.readthedocs.io](https://pyautogui.readthedocs.io/en/latest/index.html)
* leetcode
* [leetcode-75](https://leetcode.com/studyplan/leetcode-75/)