https://github.com/jojoee/promptpay
Python library to generate PromptPay QR Code
https://github.com/jojoee/promptpay
promptpay promptpay-qr qrcode
Last synced: 23 days ago
JSON representation
Python library to generate PromptPay QR Code
- Host: GitHub
- URL: https://github.com/jojoee/promptpay
- Owner: jojoee
- License: mit
- Created: 2020-07-16T07:05:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-17T09:48:45.000Z (over 2 years ago)
- Last Synced: 2024-05-01T14:24:31.192Z (about 1 year ago)
- Topics: promptpay, promptpay-qr, qrcode
- Language: Python
- Homepage: https://promptpay.readthedocs.io/en/latest/?
- Size: 63.5 KB
- Stars: 16
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PromptPay




[](https://pypi.python.org/pypi/promptpay/)
[](https://opensource.org/licenses/MIT)
[](https://codecov.io/gh/jojoee/promptpay)Python library to generate PromptPay QR Code, inspired from [dtinth/promptpay-qr](https://github.com/dtinth/promptpay-qr)
## Installation
```
pip install promptpay# or
git clone https://github.com/jojoee/promptpay
cd promptpay
python setup.py install
```## Usage
### Library
```python
from promptpay import qrcode# generate a payload
id_or_phone_number = "0841234567"
payload = qrcode.generate_payload(id_or_phone_number)
payload_with_amount = qrcode.generate_payload(id_or_phone_number, 1.23)# export to PIL image
img = qrcode.to_image(payload)# export to file
qrcode.to_file(payload, "./qrcode-0841234567.png")
qrcode.to_file(payload_with_amount, "/Users/joe/Downloads/qrcode-0841234567.png")
```### CLI
```bash
python -m promptpay qrcode --id="0841234567"
python -m promptpay qrcode --id="0841234567" --file="./qrcode-cli.png"
python -m promptpay qrcode --id="0841234567" --show=true
python -m promptpay qrcode \
--id="0841234567" \
--amount=2.34 \
--file="/Users/joe/Downloads/qrcode-cli-with-amount.png"
```## Development
```bash
# Conda env
conda create --name promptpay3.10 python=3.10.4
conda activate promptpay3.10
conda create --name promptpay3.9 python=3.9.12
conda activate promptpay3.9
conda create --name promptpay3.7 python=3.7.13
conda activate promptpay3.7
conda remove --name promptpay3.10 --all
conda search python# others
python -V
pip install -r requirements.txt
pip install -r requirements-dev.txt
python -m flake8 --ignore=E501 promptpay tests
python -m pytest tests --cov=./ --cov-report=xml
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
python -m pip list --format=freeze > requirements-tmp.txt
pip install libscrc==
pip install Pillow==
pip install promptpay
pip install promptpay==1.1.7
pip install .
pip install --force-reinstall promptpay
```## Reference
- [มีอะไรอยู่ใน PromptPay QR แกะสเปค QR ที่จะใช้จ่ายผ่าน mobile banking ได้ทุกธนาคารในอนาคต](https://www.blognone.com/node/95133)