18
- Python Watermark Jupyter Calm Code Watermark
- move browser technical links to logseq
- Devops Implementing DevSecOps in Azure
- Pipelines Devops R Azure DevOps Pipelines for deploying content to RStudio Connect
- Python Absolute vs Relative Imports in Python
- importing a package, essentially is importing the
__init__.py
module a module is any .py file- so having the
__init__.py
importing the other modules is how you load the whole thing in one go
- so having the
- Absolute imports are recommended in PEP8:
- but when you have a crazy directory structure
from package1.subpackage2.subpackage3.subpackage4.module5 import function6
- sometimes relative may be preferred
- add pre-commit hooks for markdown somehow, settings auto fix via linter and pre-commit hooks?
- Python 10 common security gotchas in Python and how to avoid them