├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── python.stash ├── python_tips.stash └── python_tips ├── python-overview-dark.webp └── python-overview-light.webp /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *next.stash 3 | backups/ 4 | wip/ 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedsheet/sheet-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedsheet/sheet-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedsheet/sheet-python/HEAD/README.md -------------------------------------------------------------------------------- /python.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedsheet/sheet-python/HEAD/python.stash -------------------------------------------------------------------------------- /python_tips.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedsheet/sheet-python/HEAD/python_tips.stash -------------------------------------------------------------------------------- /python_tips/python-overview-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedsheet/sheet-python/HEAD/python_tips/python-overview-dark.webp -------------------------------------------------------------------------------- /python_tips/python-overview-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedsheet/sheet-python/HEAD/python_tips/python-overview-light.webp --------------------------------------------------------------------------------