This Plugin is to integrate ePayment gateway with Chargily V2 easily.
Project description
Welcome to Python Package Repository
for Chargily Pay™ Gateway - V2.
Thank you for your interest in Python Package of Chargily Pay™, an open source project by Chargily, a leading fintech company in Algeria specializing in payment solutions and e-commerce facilitating, this Package is providing the easiest and free way to integrate e-payment API through widespread payment methods in Algeria such as EDAHABIA (Algerie Post) and CIB (SATIM) into your Python/Django projects.
This package is developed by Tarek Berkane (tarek-berkane) and is open to contributions from developers like you.
Requirements
Chargily-Pay v2 requires Python 3.8
and above.
Installation
pip install chargily-pay
Usage
from chargily_pay import ChargilyClient
from chargily_pay.settings import CHARGILIY_TEST_URL
# ==============
# Init Chargily
# ==============
key = "YOUR_KEY"
secret = "YOUR_SECRET"
chargily = ChargilyClient(key, secret, CHARGILIY_TEST_URL)
# ==============
# Get Balance
# ==============
response = chargily.get_balance()
# ==============
# Create Customer
# ==============
from chargily_pay.entity import Customer, Address
customer = Customer(
name="Username",
email="example@gmail.com",
address=Address(address="Address", state="State", country="dz"),
)
response = chargily.create_customer(customer)
# ==============
# Create Product
# ==============
from chargily_pay.entity import Product
product1 = Product(
name="Product name",
)
chargily.create_product(product1)
# ==============
# Create Price
# ==============
from chargily_pay.entity import Product, Price
product = Product(
name="Product name",
description="Product description",
)
response = chargily.create_product(product)
product_id = response["id"]
price = chargily.create_price(Price(amount=100, currency="dzd", product_id=product_id))
# ==============
# Create Checkout
# =============================
# Create Checkout With Product
# =============================
from chargily_pay.entity import Product, Price
from chargily_pay.entity import Checkout
product = Product(
name="Product name",
description="Product description",
)
response = chargily.create_product(product)
product_id = response["id"]
price = chargily.create_price(Price(amount=100, currency="dzd", product_id=product_id))
price_id = price["id"]
checkout = chargily.create_checkout(
Checkout(
items=[{"price": price_id, "quantity": 1}],
success_url="https://example.com/success",
failure_url="https://example.com/failure",
)
)
# =============================
# Create Checkout With Product
# =============================
from chargily_pay.entity import Checkout
response = chargily.create_checkout(
Checkout(
amount=1000,
currency="dzd",
success_url="https://example.com/success",
)
)
# =============================
# Expire Checkout
# =============================
checkout_id = "checkout_id"
chargily.expire_checkout(checkout_id)
# ==============
# Create Payment
# ==============
from chargily_pay.entity import Product, Price, PaymentItem, PaymentLink
product = Product(
name="Product name",
description="Product description",
)
response = chargily.create_product(product)
product_id = response["id"]
price = Price(amount=100, currency="dzd", product_id=product_id)
response = chargily.create_price(price)
price_id = response["id"]
payment_link = chargily.create_payment_link(
PaymentLink(
name="Payment link name",
items=[
PaymentItem(
price=price_id,
quantity=1,
)
],
)
)
Documentation For frameworks
About Chargily Pay™ packages
Chargily Pay™ packages/plugins are a collection of open source projects published by Chargily to facilitate the integration of our payment gateway into different programming languages and frameworks. Our goal is to empower developers and businesses by providing easy-to-use tools to seamlessly accept payments.
API Documentation
For detailed instructions on how to integrate with our API and utilize Chargily Pay™ in your projects, please refer to our API Documentation.
Developers Community
Join our developer community on Telegram to connect with fellow developers, ask questions, and stay updated on the latest news and developments related to Chargily Pay™ : Telegram Community
How to Contribute
We welcome contributions of all kinds, whether it's bug fixes, feature enhancements, documentation improvements, or new plugin/package developments. Here's how you can get started:
-
Fork the Repository: Click the "Fork" button in the top-right corner of this page to create your own copy of the repository.
-
Clone the Repository: Clone your forked repository to your local machine using the following command:
git clone https://github.com/Chargily/chargily-pay-python.git
-
Make Changes: Make your desired changes or additions to the codebase. Be sure to follow our coding standards and guidelines.
-
Test Your Changes: Test your changes thoroughly to ensure they work as expected.
-
Submit a Pull Request: Once you're satisfied with your changes, submit a pull request back to the main repository. Our team will review your contributions and provide feedback if needed.
Get in Touch
Have questions or need assistance? Join our developer community on Telegram and connect with fellow developers and our team.
We appreciate your interest in contributing to Chargily Pay™! Together, we can build something amazing.
Happy coding!
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
Built Distribution
File details
Details for the file chargily_pay-2.1.3.tar.gz
.
File metadata
- Download URL: chargily_pay-2.1.3.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 093f73b7e06caa1c0b726f8e1ca1c5c44b618117f14bd7feceb1e098204ef2ed |
|
MD5 | ea9870ff3af40d39bff949affb6575a9 |
|
BLAKE2b-256 | 27196a61f8f607abf3fbca9902ab53f181678920cb73cd427a07da6c4994c6d2 |
File details
Details for the file chargily_pay-2.1.3-py3-none-any.whl
.
File metadata
- Download URL: chargily_pay-2.1.3-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32ad5f4a0d77590b4e4e0cc90588b475c453fce3c918fbded54cfbd6f9ffe9c6 |
|
MD5 | 3cb50a6646efb2867d03b3cacbe66004 |
|
BLAKE2b-256 | 04ce60badbac7c342146189d355320ec1bff271d2e8b4df38d72630c1894d46e |