Status is a decentralized, open-source super app combining a crypto wallet, messenger, and community spaces. It uses peer-to-peer technology so no central server can censor your messages or access your data.
The initial Python Status Backend was built with testing in mind, instead of easy developer access. The objective of this repository is to make a SDK that is:
- light - as less external packages when it comes to working with Status App
- fast - quick to get started with Status Python
- documented - clear explanations of what was done and why it was done in a specific way.
graph TB
subgraph backend[status-im/status-go]
subgraph Endpoints[Network: status-bridge]
RPC[RPC]
HTTP[REST]
SOCKET[Web Socket]
end
Vol1[(Backup)]
Vol2[(Assets)]
end
subgraph bot[status-im/status-python-sdk]
REQUIREMENTS[requirements.txt]
SDK[class Account]
SIGNAL[class Signal]
end
subgraph external[External Services]
COINGECKO[CoinGecko]
ALCHEMY[Alchemy]
INFURA[Infura]
end
SDK --> SIGNAL
SDK --> |Port 8080| RPC
SDK --> |Port 8080| HTTP
SIGNAL --> |Port 8080| SOCKET
SDK --> Vol1
SDK --> Vol2
RPC --> |coingecko_api_key| COINGECKO
RPC --> |infura_token| INFURA
HTTP --> |alchemy_token| ALCHEMY
To access Python funcitonality you will have to set up Status Backend. Easiest and fastest way to get it running would be with Docker.
sequenceDiagram
actor User
participant Docker
participant Python@{"alias": "status-im/status-python-sdk"}
participant Github@{"alias": "status-im/status-go" }
User ->> Docker: docker-compose up
Docker ->> Github: Fetch Image
Docker ->> Docker: Build
User ->> Docker: Run container
User ->> Python: initialize module
Note over User,Python: from status_sdk import Account<br>account = Account()
Clone the repository and move into it:
git clone https://github.com/status-im/status-python-sdk.git
cd status-python-sdk
Install the base library:
pip install .
If you want to modify the library itself without having to reinstall:
pip install -e .
pip uninstall status-sdk
status-im/status-go runs from the provided docker-compose.yaml file. It does not use a pre-built image - it builds the backend from source, pulling directly from GitHub.
To run on Windows, please make sure you have set up WSL. It is required for the build: context above. The SDK invokes Docker through WSL so it can build the Linux image and clone the repository during the build. If the build is changed to point to a local repository, then WSL is not required.
You can set it up in two ways.
Use launch_docker_container, which builds and starts the container for you. This is the recommended option, as it handles platform selection and (on Windows) recovers from stale Docker mounts:
from status_sdk import launch_docker_container
launch_docker_container()Run the compose file yourself. It lives inside the installed package, so point Docker at it:
docker compose -f status_sdk/docker-compose.yaml up -d
The compose file reads two variables from the environment. Both have a default, so the command above works as-is, but they can be overridden:
| Variable | Default | Description |
|---|---|---|
STATUS_GO_REF |
develop |
The status-im/status-go git ref (commit SHA, branch or tag) to build from. |
STATUS_GO_PLATFORM |
linux/amd64 |
The platform the image is built for. |
STATUS_GO_REF=2bee8b6a38cdc8f92d74e2dbb8c4e77fbbeea149 STATUS_GO_PLATFORM=linux/amd64 docker compose -f status_sdk/docker-compose.yaml up -d
