SDK for python application to use Alternative Payments
Project description
ApPythonSdk
===================================
Alternative Payments python libary sdk. Accept local payments from all over the world
Installation
-----
Install gem, using pip:
$ pip install ap-python-sdk
In your initializing files add line:
import ap_python_sdk
ap_python_sdk.api_key = 'sk_test_sqJojfKHxRJu0jHFac7bNwf4gQ9HlatcJHTGn03o'
Usage
-----
For usage and examples check `http://www.alternativepayments.com/support/api/` or sample application on our open-source repo `https://github.com/AlternativePayments/ap-python-sdk`
Example of creating new customer:
customer = Customer.create(
{
'firstName': 'John',
'lastName': 'Doe',
'email': 'tempmail@mail.com',
'address': 'Rutledge Ave 409',
'city': 'Folsom',
'zip': '19033',
'country': 'US',
'state': 'PA',
'phone': '55555555555',
'created': '2016-03-24T15:19:10.7800694Z'
}
);
Accessing object's attributes:
customer.firstName
=> John
Same goes for complex objects like Transaction.
Create SEPA transaction:
customer = Customer(
id='cus_bd838e3611d34d598',
firstName='John',
lastName='Doe',
email='john@doe.com',
country='DE'
)
payment = Payment(
paymentOption='SEPA',
holder='John Doe',
iban='BE88271080782541'
)
return Transaction.create({
'customer': customer,
'payment': payment,
'amount': 500,
'currency': 'EUR',
'description': 'test sepa php sdk',
'merchantPassThruData': 'test_sepa_123',
'iPAddress': '127.0.0.1'
})
Access customer:
transaction.customer.firstName
Development
-----
To release a new version, update the version number in `version.py`, and then run `python setup.py sdist bdist_wheel upload -r https://pypi.python.org/pypi` to create a new version of library and deploy it to `https://pypi.python.org/pypi/ap_python_sdk`
Contributing
-----
1. Fork it ( https://github.com/AlternativePayments/ap-python-sdk/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
===================================
Alternative Payments python libary sdk. Accept local payments from all over the world
Installation
-----
Install gem, using pip:
$ pip install ap-python-sdk
In your initializing files add line:
import ap_python_sdk
ap_python_sdk.api_key = 'sk_test_sqJojfKHxRJu0jHFac7bNwf4gQ9HlatcJHTGn03o'
Usage
-----
For usage and examples check `http://www.alternativepayments.com/support/api/` or sample application on our open-source repo `https://github.com/AlternativePayments/ap-python-sdk`
Example of creating new customer:
customer = Customer.create(
{
'firstName': 'John',
'lastName': 'Doe',
'email': 'tempmail@mail.com',
'address': 'Rutledge Ave 409',
'city': 'Folsom',
'zip': '19033',
'country': 'US',
'state': 'PA',
'phone': '55555555555',
'created': '2016-03-24T15:19:10.7800694Z'
}
);
Accessing object's attributes:
customer.firstName
=> John
Same goes for complex objects like Transaction.
Create SEPA transaction:
customer = Customer(
id='cus_bd838e3611d34d598',
firstName='John',
lastName='Doe',
email='john@doe.com',
country='DE'
)
payment = Payment(
paymentOption='SEPA',
holder='John Doe',
iban='BE88271080782541'
)
return Transaction.create({
'customer': customer,
'payment': payment,
'amount': 500,
'currency': 'EUR',
'description': 'test sepa php sdk',
'merchantPassThruData': 'test_sepa_123',
'iPAddress': '127.0.0.1'
})
Access customer:
transaction.customer.firstName
Development
-----
To release a new version, update the version number in `version.py`, and then run `python setup.py sdist bdist_wheel upload -r https://pypi.python.org/pypi` to create a new version of library and deploy it to `https://pypi.python.org/pypi/ap_python_sdk`
Contributing
-----
1. Fork it ( https://github.com/AlternativePayments/ap-python-sdk/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
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
ap_python_sdk-0.0.5.tar.gz
(9.8 kB
view details)
Built Distribution
File details
Details for the file ap_python_sdk-0.0.5.tar.gz
.
File metadata
- Download URL: ap_python_sdk-0.0.5.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2357e07f3475f2b223a97a76f6b2c09b5abd04775a6dca360d19d76d7548fa79 |
|
MD5 | 8c0cd4cb0cf45f2ebf1492f8c2aee1d2 |
|
BLAKE2b-256 | d695c313d2e2ada5c38941c187f5b509f11c45c3e4b24d6e0ca315a3ef814ba0 |
File details
Details for the file ap_python_sdk-0.0.5-py2-none-any.whl
.
File metadata
- Download URL: ap_python_sdk-0.0.5-py2-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a71e0d65884c330109272750d7addfa862ad2a4f93d63c524a84b21687e24e3a |
|
MD5 | 916c0d1dac3ab5b212aada6a9892c1bd |
|
BLAKE2b-256 | a6b11e263b219e62e2da37378dbd7d5ddf6422fbc31fa6ad098913d51e33f91d |