Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/multiversx/mx-sdk-py-cli
Python Command Line Tools and SDK for interacting with the MultiversX blockchain and dApps.
https://github.com/multiversx/mx-sdk-py-cli
Last synced: 3 months ago
JSON representation
Python Command Line Tools and SDK for interacting with the MultiversX blockchain and dApps.
- Host: GitHub
- URL: https://github.com/multiversx/mx-sdk-py-cli
- Owner: multiversx
- License: other
- Created: 2021-05-27T12:46:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T12:07:14.000Z (9 months ago)
- Last Synced: 2024-04-23T11:13:23.097Z (9 months ago)
- Language: Python
- Homepage:
- Size: 6.66 MB
- Stars: 31
- Watchers: 22
- Forks: 39
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-multiversx-dev-resources - Python SDK - Command line tools and Python SDK for interacting with the MultiversX Network and MultiversX Smart Contracts (MultiversX official / SDKs and dev tools)
README
# Description
Python Command Line Tools for interacting with MultiversX.## Documentation
[docs.multiversx.com](https://docs.multiversx.com/sdk-and-tools/sdk-py/)## CLI
[CLI](CLI.md)## Distribution
[mxpy-up](https://docs.multiversx.com/sdk-and-tools/sdk-py/installing-mxpy/) and [PyPi](https://pypi.org/project/multiversx-sdk-cli/#history)## Development setup
Clone this repository and cd into it:
```
git clone https://github.com/multiversx/mx-sdk-py-cli.git
cd mx-sdk-py-cli
```### Virtual environment
Create a virtual environment and install the dependencies:
```
python3 -m venv ./venv
source ./venv/bin/activate
pip install -r ./requirements.txt --upgrade
```Install development dependencies, as well:
```
pip install -r ./requirements-dev.txt --upgrade
```Above, `requirements.txt` should mirror the **dependencies** section of `setup.py`.
If using VSCode, restart it or follow these steps:
- `Ctrl + Shift + P`
- _Select Interpreter_
- Choose `./venv/bin/python`.### Using your local `mxpy`
If you want to test the modifications you locally made to `mxpy`, set `PYTHONPATH` with the path to your local repository path.
For example, if you cloned the repository at `~/mx-sdk-py-cli`, run:
```
export PYTHONPATH="~/mx-sdk-py-cli"
```Then `mxpy` will use the code in your local repository.