Skip to main content

Paycom.uz integration with Flask application, (only for Uzbekistan)

Project description

Flask-PaycomUz

Only for Uzbekistan

Paycom.uz integration for Flask

Links

How it Works

Install

pip install Flask-PaycomUz

Add your credentials from PaycomUz to config file

PAYCOM_ID = "your merchant ID"
PAYCOM_KEY = "your sercet key" 

Create Flask App With Flask-PaycomUz

from flask_paycomuz import Paycom
from flask import *
from flask_sqlalchemy import SQLAlchemy

db = SQLAlchemy()
paycom = Paycom(db)

def CheckAllowment(account): # Before creating transaction Flask-PaycomUz send account data which will have key whick you gave to Register_Account_data to validate it. Return True/False to Validate
    order_id = account.get('order_id') 
    res = Order.query.filter(Order.id == order_id).first()
    if res:
        return True
    return False 

def CallbackPayme(transaction): # After Creating and Performing transaction from Payme this function will call with Payme_Transaction as argument
    if transaction.state == 1: # Successful creating transaction in Payme
        pass
    if transaction.state == 2: # Successful performing transaction in Payme
        pass
    


def create_app():
    app = Flask(__name__)
    app.config.from_pyfile('config.py')
    
    paycom.Register_Account_Data(['order_id']) # Register Paycom payment details, requires to set before init app
    paycom.Register_Validators(CheckAllowment) # Register your Validator for payment, requires to set before init app
    paycom.Register_Callback(CallbackPayme) # Register your Callback function which will be called after Creating and Performing transaction
    paycom.init_app(app, url_prefix='/payme') # Init Paycom to your application, url_prefix to add view to app, defualt /payme, in that case Flask-PaycomUz register JSON-RPC route to recieve requests from PaycomUz as https://example.uz/payme
    
    @app.get("/")
    def index():
        return "Hello World"
    

    @app.get('/create_transaction')
    def create_transaction():
        amount = 10000
        order_id = 45 # Order ID to create Transaction in Paycom
        return_url = "https://example.uz/return_url" # return Url after successful or error payment 
        url = paycom.Generate(amount=amount, return_url=return_url, order_id = order_id)

    with app.app_context():
        db.create_all() # Don't forget to create db, flask_paycomuz adds 2 table to db, Payme_Transaction and Payme_Account


    return app

app = create_app()

if __name__ == "__main__":
    app.run(debug=True)

Flask-PaycomUz models schema

# Flask-PaycomUz uses Flask-SQLAlchemy models to save data in database, it prefers to use Postgresql

class Payme_Transaction(db.Model):
    __tablename__ = 'payme_transaction'
    id = db.Column(db.Integer, primary_key = True)
    payme_id = db.Column(db.Integer, unique=True)
    transaction_id = db.Column(db.String, unique=True)
    time = db.Column(db.BigInteger, nullable=True)
    amount = db.Column(db.Integer, nullable=True)
    state = db.Column(db.Integer, default=1)
    created_at = db.Column(db.BigInteger, nullable=False)
    account = db.relationship('Payme_Account', backref='payme_transaction')

    def result(self):
        return {"result" : {
                    "create_time" : self.created_at,
                    "transaction" : self.transaction_id,
                    "state" : self.state}
            }
        
class Payme_Account(db.Model):
    __tablename__ = 'payme_account'
    id = db.Column(db.Integer, primary_key = True)
    transaction_id = db.Column(db.ForeignKey("payme_transaction.transaction_id"))
    key = db.Column(db.String, nullable=True)
    value = db.Column(db.String, nullable=True)

Accessing Models

Select data from models

paycom.models # it contains 2 models in list, [Payme_Transaction,Payme_Account ]
Payme_Transaction, Payme_Account = paycom.models
transaction = Payme_Transaction.query.all() # You can select or filter data

Add model view to Flask-Admin

from flask_admin.contrib.sqla import ModelView
admin.add_view(ModelView(paycom.models[0], db.session))
admin.add_view(ModelView(paycom.models[1], db.session))

Task List

Merchant API methods

  • CheckPerformTransaction
  • CreateTransaction
  • CheckTransaction
  • PerformTransaction
  • CancelTransaction

Licence

This project is licensed under the MIT License (see the LICENSE file for details).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-PaycomUz-1.1.0.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

Flask_PaycomUz-1.1.0-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file Flask-PaycomUz-1.1.0.tar.gz.

File metadata

  • Download URL: Flask-PaycomUz-1.1.0.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for Flask-PaycomUz-1.1.0.tar.gz
Algorithm Hash digest
SHA256 7c2fb7096a95e9772abb88e12acfa2b5d19eb4e9e2eb6748b1e97263cce40d0b
MD5 7bd236b880607d5b1d4dc8646dc3f197
BLAKE2b-256 c767a71357a786f52472ec98cbdfa021726c672d8860984ed35286744c7634b6

See more details on using hashes here.

File details

Details for the file Flask_PaycomUz-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for Flask_PaycomUz-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6a2e44ed52c6f97e12a13993504a441a5ec2771ab0ac76b92ae814dab3eecd36
MD5 b220dfb8d409ed218c7a73055bed0707
BLAKE2b-256 e1fd43419a7b14ccd793ad8b01eb66199abac28b414565aaa8598044e19b58ef

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page