https://github.com/sellgate/python-sdk
A Python SDK for the Sellgate API. Start accepting crypto payments in minutes.
https://github.com/sellgate/python-sdk
api api-rest bitcoin blockchain crypto-tools cryptocurrency ethereum payments
Last synced: 5 months ago
JSON representation
A Python SDK for the Sellgate API. Start accepting crypto payments in minutes.
- Host: GitHub
- URL: https://github.com/sellgate/python-sdk
- Owner: Sellgate
- License: mit
- Created: 2024-08-01T13:27:14.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T09:32:43.000Z (almost 2 years ago)
- Last Synced: 2025-11-30T20:47:46.394Z (7 months ago)
- Topics: api, api-rest, bitcoin, blockchain, crypto-tools, cryptocurrency, ethereum, payments
- Language: Python
- Homepage: https://sellgate.io
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sellgate Python SDK
This is the Sellgate Python SDK. It is a simple SDK to use the Sellgate API.
Sellgate provides an API service that allows sellers and developers to easily integrate crypto payments into their applications or payment flows. Using our service has several benefits:
- Low transaction fees, just 1%.
- No authentication required for any usage: No API keys, no accounts.
- Examples for quick implementation on our docs.
- Support for bug fixes, extra features and integration assistance.
For further documentation, please refer to the [Sellgate docs](https://sellgate.io/docs)
## Installation
```bash
pip install sellgate
```
## Usage
```python
from sellgate import sellgate
checkout = sellgate().create_checkout({
"price": '10',
"crypto": [
{
"network": "ETH",
"coin": "ETH",
"address": "0xB1DA646D1cD015d205a99198e809724D5C78109d"
}
]
})
address = sellgate().create_address({
"crypto":
{
"network": "ETH",
"coin": "ETH",
"address": "0xB1DA646D1cD015d205a99198e809724D5C78109d"
},
"webhook": "https://webhook.site/1234567890"
})
print(checkout)
print(address)
```