-
https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html History of setuptools
-
https://hynek.me/articles/python-app-deps-2018/ python deps management. Poetry? Pip-tools? Pipenv?
-
https://caremad.io/posts/2013/07/setup-vs-requirement/ setup.py vs requirements.txt
-
https://snarky.ca/what-the-heck-is-pyproject-toml/ What is pyproject, pep 517 and 518?
-
https://snarky.ca/classifying-python-virtual-environment-workflows/ classifying-python-virtual-environment-workflows
-
https://devblogs.microsoft.com/python/python-package-management-proposal/ enumeration of dependency managers and proposal of unification in vscode context
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Here we try to imitate Flask global objects magic in which `from flask import request` | |
magically finds the current request. | |
We use contextvars to make it more understandable, as a con it requires calling `.get()` | |
instead of just using the imported module attribute. | |
I like this since it doesn't hide the fact that the object is lazily evaluated | |
""" | |
# This single file represents three modules. app.py, bootstrap.py and settings.py | |
# Each file's content is preceded by the file name. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3.6 | |
""" | |
Loosely based on gitmoji https://gitmoji.carloscuesta.me/ | |
WIP: 🚧 | |
Meant for work in progress. Incomplete or still an idea | |
NEW: ✨ | |
New functionality that is working. Meant as a checkpoint | |
FIX: 🔧 | |
Minor code changes/ Refactors that are steps before a NEW feature | |
BUG: 🐞 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0'?> | |
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
<fontconfig> | |
<match target="scan"> | |
<test name="family"> | |
<string>Noto Color Emoji</string> | |
</test> | |
<edit name="scalable" mode="assign"> | |
<bool>true</bool> | |
</edit> |