├── .gitignore ├── .projections.json ├── LICENSE.txt ├── README.md ├── __init__.py ├── setup.cfg ├── setup.py ├── src ├── __init__.py └── collection │ ├── Collection.py │ └── __init__.py └── tests ├── context.py └── test_collection.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.projections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/.projections.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/collection/Collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/src/collection/Collection.py -------------------------------------------------------------------------------- /src/collection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/src/collection/__init__.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdscribe/collection/HEAD/tests/test_collection.py --------------------------------------------------------------------------------