معرفی شرکت ها


django-purchase-core-0.3.63


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A reusable Django app for creating, logging and verifying purchases.
ویژگی مقدار
سیستم عامل -
نام فایل django-purchase-core-0.3.63
نام django-purchase-core
نسخه کتابخانه 0.3.63
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Qmobi
ایمیل نویسنده info@qmobi.com
آدرس صفحه اصلی https://github.com/boy-scouts/game-core-purchase
آدرس اینترنتی https://pypi.org/project/django-purchase-core/
مجوز MIT
Purchase Core =============== A reusable Django app for creating, logging and verifying purchases. Quick start ----------- 1. Install Django Purchase Core & Dependencies: >>> pip install django-purchase-core 2. Add "purchase", "rest_framework', and "rangefilter" to your INSTALLED_APPS setting like this: .. code:: python INSTALLED_APPS = [ ..., 'rest_framework', 'purchase', 'rangefilter', ..., ] 3. Add the following to app_config.urls: .. code:: python from django.conf.urls import url, include urlpatterns = [ ..., path("api/", include("purchase.urls")), ..., ] 4. Run Django Commands: >>> python manage.py makemigrations >>> python manage.py migrate 5. Configure configuration and credentials for your game in the admin panel. Add progress level update processing ------------------------------------- 1. To work with subscription you first need to set authorization and user model: * setup "PURCHASE_USER_ATTACHED" in you settings.py to True (not provided equals False, when it False no signal will be called, user model wont be used) .. code:: python ... PURCHASE_USER_ATTACHED = True ... * configure user model (in your settings.py) .. code:: python USER_MODEL = YourUserModel * configure auth and permission classes for DRF (in your settings.py) .. code:: python REST_FRAMEWORK = { "DEFAULT_PERMISSION_CLASSES": [ "rest_framework.permissions.IsAuthenticated" ], "DEFAULT_AUTHENTICATION_CLASSES": [ "path.to.your.auth.class.or.base" ], } * to handle completed purchase setup receiver to update progress, which will receive "instance" .. code:: python from django.dispatch import receiver from purchase.signals import purchase_completed @receiver(purchase_completed) def purchase_completed(sender, **kwargs): purchase = kwargs["instance"] user = purchase.user # User completed purchase purchase_id = purchase.purchase_id # Your product ID, as it presented in store ... 2. To work with subscription you first need to set authorization and user model: * configure user model, auth and permission classes for DRF (in your settings.py, as for purchase with user) .. code:: python ... USER_MODEL = YourUserModel ... ... REST_FRAMEWORK = { ... "DEFAULT_PERMISSION_CLASSES": [ "rest_framework.permissions.IsAuthenticated" ], ... "DEFAULT_AUTHENTICATION_CLASSES": [ "path.to.your.auth.class.or.base" ], ... } ... * setup receiver for signal, which will receive "instance" as Subscription model instance .. code:: python from django.dispatch import receiver from purchase.signals import subscription_completed @receiver(subscription_completed) def subscription_completed(sender, **kwargs): subscription = kwargs["instance"] user = subscription.user # User completed subscription subscription_id = subscription.product_id # your subscription ID, as it presented in store ...


نیازمندی

مقدار نام
>=4.0.1,<5.0.0 Django
>=2.10.0,<3.0.0 Pygments
>=2.26.0,<3.0.0 requests
>=3.12.4,<4.0.0 djangorestframework
>=2.4.0,<3.0.0 django-filter
>=3.0.0,<4.0.0 google
>=0.4.6,<0.5.0 google-auth-oauthlib
>=0.8.1,<0.9.0 django-admin-rangefilter
>=2.21.0,<3.0.0 google-api-python-client
>=2.1.0,<3.0.0 google-auth
>=1.21.3,<2.0.0 drf-yasg


زبان مورد نیاز

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl django-purchase-core-0.3.63:

    pip install django-purchase-core-0.3.63.whl


نصب پکیج tar.gz django-purchase-core-0.3.63:

    pip install django-purchase-core-0.3.63.tar.gz