├── .gitignore ├── LICENSE ├── README.md ├── download.py ├── install.py ├── scripts └── library-notes.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | scripts/__pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zetaphor/sd-library-notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zetaphor/sd-library-notes/HEAD/README.md -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zetaphor/sd-library-notes/HEAD/download.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zetaphor/sd-library-notes/HEAD/install.py -------------------------------------------------------------------------------- /scripts/library-notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zetaphor/sd-library-notes/HEAD/scripts/library-notes.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zetaphor/sd-library-notes/HEAD/test.py --------------------------------------------------------------------------------