Payments platform for marketplaces
Project description
# django-balanced
## How to send ACH payments in 10 minutes
1. Visit www.balancedpayments.com and get yourself an API key
2. `pip install django-balanced`
3. Edit your `settings.py` and add the API key like so:
import os
BALANCED = {
'API_KEY': os.environ.get('BALANCED_API_KEY'),
}
4. Add `django_balanced` to your `INSTALLED_APPS` in `settings.py`
INSTALLED_APPS = (
...
'django.contrib.admin', # if you want to use the admin interface
'django_balanced',
...
)
5. Run `BALANCED_API_KEY=YOUR_API_KEY django-admin.py syncdb`
6. Run `BALANCED_API_KEY=YOUR_API_KEY python manage.py runserver`
7. Visit `http://127.0.0.1:8000/admin` and pay some people!
## How to send ACH payments in 10 minutes
1. Visit www.balancedpayments.com and get yourself an API key
2. `pip install django-balanced`
3. Edit your `settings.py` and add the API key like so:
import os
BALANCED = {
'API_KEY': os.environ.get('BALANCED_API_KEY'),
}
4. Add `django_balanced` to your `INSTALLED_APPS` in `settings.py`
INSTALLED_APPS = (
...
'django.contrib.admin', # if you want to use the admin interface
'django_balanced',
...
)
5. Run `BALANCED_API_KEY=YOUR_API_KEY django-admin.py syncdb`
6. Run `BALANCED_API_KEY=YOUR_API_KEY python manage.py runserver`
7. Visit `http://127.0.0.1:8000/admin` and pay some people!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-balanced-0.1.10.tar.gz
.
File metadata
- Download URL: django-balanced-0.1.10.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c86bc3cadd1a05d8c68ecaa29fb9e362dc8aadf1eb6912c6c48fadbb9c75dc72
|
|
MD5 |
55138fa13f6f670fc85ff10f0df044d7
|
|
BLAKE2b-256 |
6c397cdc35d561e64bb18cae7052edebd52faecb33cf0bc71be0bf8b14fa16eb
|