Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nnsnodnb/django-ios-storekit
:moneybag: iOS In-App Purchase's receipt validation server plugin for Django
https://github.com/nnsnodnb/django-ios-storekit
django python storekit
Last synced: 3 days ago
JSON representation
:moneybag: iOS In-App Purchase's receipt validation server plugin for Django
- Host: GitHub
- URL: https://github.com/nnsnodnb/django-ios-storekit
- Owner: nnsnodnb
- License: mit
- Created: 2017-09-15T17:05:39.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-07-06T16:21:38.000Z (4 months ago)
- Last Synced: 2024-08-08T17:29:50.632Z (3 months ago)
- Topics: django, python, storekit
- Language: Python
- Homepage: https://pypi.org/project/django-ios-storekit
- Size: 442 KB
- Stars: 16
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-ios-storekit
[![Tests](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/tests.yml)
[![Linter](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/linter.yml/badge.svg?branch=master)](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/linter.yml)
[![Coverage Status](https://coveralls.io/repos/github/nnsnodnb/django-ios-storekit/badge.svg?branch=master)](https://coveralls.io/github/nnsnodnb/django-ios-storekit?branch=master)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-ios-storekit)
![PyPI](https://img.shields.io/pypi/v/django-ios-storekit)
![PyPI - Format](https://img.shields.io/pypi/format/django-ios-storekit)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/django-ios-storekit)A Django plugin for iOS StoreKit server.
## Supported python versions
3.6.x ~ 3.9.x
## Supported django versions
2.x
## Installation
```shell script
$ pip install django-ios-storekit
```Add `storekit` into `INSTALLED_APPS` in `settings.py` file.
```python
INSTALLED_APPS += (
'storekit',
)
``````shell script
$ python manage.py migrate
```## License
This software is licensed under the MIT License (See [LICENSE](https://github.com/nnsnodnb/django-ios-storekit/blob/master/LICENSE)).