├── .coveragerc ├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── linter.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── demo ├── app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── demo │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── storekit ├── __init__.py ├── admin.py ├── apps.py ├── appstore.py ├── errors.py ├── fields.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20171218_2351.py │ ├── 0003_auto_20171219_0021.py │ ├── 0004_auto_20180605_1629.py │ ├── 0005_auto_20180609_1654.py │ └── __init__.py ├── models.py └── receipt.py └── tests ├── __init__.py ├── conftest.py ├── response.json ├── settings.py ├── test_models ├── __init__.py ├── conftest.py ├── test_in_app.py ├── test_receipt.py └── test_response.py └── testing.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/README.md -------------------------------------------------------------------------------- /demo/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/demo/app/apps.py -------------------------------------------------------------------------------- /demo/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/demo/app/urls.py -------------------------------------------------------------------------------- /demo/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/demo/app/views.py -------------------------------------------------------------------------------- /demo/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/demo/demo/settings.py -------------------------------------------------------------------------------- /demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/demo/demo/urls.py -------------------------------------------------------------------------------- /demo/demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/demo/demo/wsgi.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/pytest.ini -------------------------------------------------------------------------------- /storekit/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.10" 2 | -------------------------------------------------------------------------------- /storekit/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/admin.py -------------------------------------------------------------------------------- /storekit/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/apps.py -------------------------------------------------------------------------------- /storekit/appstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/appstore.py -------------------------------------------------------------------------------- /storekit/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/errors.py -------------------------------------------------------------------------------- /storekit/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/fields.py -------------------------------------------------------------------------------- /storekit/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/migrations/0001_initial.py -------------------------------------------------------------------------------- /storekit/migrations/0002_auto_20171218_2351.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/migrations/0002_auto_20171218_2351.py -------------------------------------------------------------------------------- /storekit/migrations/0003_auto_20171219_0021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/migrations/0003_auto_20171219_0021.py -------------------------------------------------------------------------------- /storekit/migrations/0004_auto_20180605_1629.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/migrations/0004_auto_20180605_1629.py -------------------------------------------------------------------------------- /storekit/migrations/0005_auto_20180609_1654.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/migrations/0005_auto_20180609_1654.py -------------------------------------------------------------------------------- /storekit/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storekit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/models.py -------------------------------------------------------------------------------- /storekit/receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/storekit/receipt.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/response.json -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_models/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/test_models/conftest.py -------------------------------------------------------------------------------- /tests/test_models/test_in_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/test_models/test_in_app.py -------------------------------------------------------------------------------- /tests/test_models/test_receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/test_models/test_receipt.py -------------------------------------------------------------------------------- /tests/test_models/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/test_models/test_response.py -------------------------------------------------------------------------------- /tests/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnsnodnb/django-ios-storekit/HEAD/tests/testing.py --------------------------------------------------------------------------------