Metadata-Version: 1.1
Name: zibal-django
Version: 1.0
Summary: A Django app for bank payments by Zibal (https://zibal.ir/)
Home-page: https://github.com/mohammad3020/django-zibal
Author: Mohammad Montazami
Author-email: mohamad3020@gmail.com
License: BSD-3-Clause  # Example license
Description: =====
        Zibal
        =====
        
        A Django app for bank payments by Zibal (https://zibal.ir/)
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        ### 0. install
        
            pip install requests
            pip install zibal-django
        
        ### 1. start
        Add "zibal" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'zibal',
            ]
        
        ### 2. migrate
        Run ``python manage.py migrate`` to create the zibal models.
        
        ### 3. admin
        Start the development server and visit http://127.0.0.1:8000/admin/
        to create a zibal (you'll need the Admin app enabled).
        
        ### 4.Instructions
        For each transaction you first need to request and then confirm it.
        For this operation, you can use 2 methods : request and callback.
        You can use the Request method anywhere in the project. For the callback method, it is recommended to write once in a view with a fixed address and always use it.
        
        See the GitHub page of the project for more information https://github.com/mohammad3020/django-zibal
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
