├── .github └── workflows │ └── tests.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.py ├── tests.py └── ucache.py /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/ucache/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/ucache/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/ucache/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/ucache/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/ucache/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/ucache/HEAD/tests.py -------------------------------------------------------------------------------- /ucache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/ucache/HEAD/ucache.py --------------------------------------------------------------------------------