├── .env.example ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── icon.png ├── demo.py ├── mvola ├── __init__.py ├── core.py └── tools.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_transaction.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/assets/icon.png -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/demo.py -------------------------------------------------------------------------------- /mvola/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from .core import Mvola 4 | -------------------------------------------------------------------------------- /mvola/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/mvola/core.py -------------------------------------------------------------------------------- /mvola/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/mvola/tools.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | python-dotenv -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivo2302/Mvola/HEAD/tests/test_transaction.py --------------------------------------------------------------------------------