The official Moralis Python SDK
Project description
Moralis Python SDK
A library that gives you access to the powerful Moralis Server backend from your Python app.
Features:
- Web3 authentication
- Make Evm api and Solana api calls
- Stream realtime blockchain data
... and much more. Check the official Moralis docs for more details.
🚀 Quick start
If you're new to Moralis, check the quickstart guide in the official docs on how to get started.
If you're already familiar with Moralis and have your account registered. Then follow along to connect your SDK:
1. Install Moralis
pip install moralis
2. Call your methods
Import the correct module from the SDK and call the method you need. For a full reference of all the methods available, check the references section.
from moralis import evm_api
api_key = "YOUR_API_KEY"
params = {
"address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",
"chain": "eth",
"to_block": 1.2,
}
result = evm_api.balance.get_native_balance(
api_key=api_key,
params=params,
)
print(result)
🧭 Table of Contents
⭐️ Star us
If this JS SDK helps you build your dapps faster - please star this project, every star makes us very happy!
🤝 Need help
If you need help with setting up the boilerplate or have other questions - don't hesitate to write in our community forum and we will check asap. Forum link. The best thing about this SDK is the super active community ready to help at any time! We help each other.
👀 Examples
Example getting native balance of an address via the EVM balance API
from moralis import evm_api
api_key = "YOUR_API_KEY"
params = {
"address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",
"chain": "eth",
"to_block": 1.2,
}
result = evm_api.balance.get_native_balance(
api_key=api_key,
params=params,
)
print(result)
Example getting native balance of an address via the SOL account API
from moralis import sol_api
api_key = "YOUR_API_KEY"
params = {
"network": "",
"address": "",
}
result = sol_api.account.balance(
api_key=api_key,
params=params,
)
print(result)
Example getting authentication message via the Auth API
from moralis import auth
api_key = "YOUR_API_KEY"
body = {
"domain": "defi.finance",
"chainId": "1",
"address": "0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B",
"statement": "Please confirm",
"uri": "https://defi.finance/",
"expirationTime": "2020-01-01T00:00:00.000Z",
"notBefore": "2020-01-01T00:00:00.000Z",
"resources": ['https://docs.moralis.io/'],
"timeout": 15,
}
result = auth.challenge.request_challenge_evm(
api_key=api_key,
body=body,
)
print(result)
Example getting stream via the Streams API
from moralis import streams
api_key = "YOUR_API_KEY"
params = {
"limit": 1.2,
"cursor": "",
}
result = streams.evm_streams.get_streams(
api_key=api_key,
params=params,
)
print(result)
📚 References
For more info see the live docs, or the docs pages
evm_api
sol_api
auth
streams
🧙♂️ Community
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file moralis-0.1.21.tar.gz
.
File metadata
- Download URL: moralis-0.1.21.tar.gz
- Upload date:
- Size: 399.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95f5e2a43c5c54bef9550efa21d4ba4e4ddd7e146f6da5d07246e579ee0eb2ee |
|
MD5 | e7020e45c209f7ff9ae47adb876da9eb |
|
BLAKE2b-256 | fed85b8482e9a83852af391a6f7d90e0df5a0402eae61e5e4ea026416abc6891 |
File details
Details for the file moralis-0.1.21-py3-none-any.whl
.
File metadata
- Download URL: moralis-0.1.21-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ca2dfd1e02fe68aeae81854984a30b969fe60e5202218d0347b2ab92bb13ebe |
|
MD5 | 7ef801fc287fe64a1de23dc3ca69d80f |
|
BLAKE2b-256 | d6fc428d6f8b94722febb4969a972fefb11a9cfbe48c6a6953c7537aa7e98fc0 |