https://github.com/glamsystems/glam-sdk-py
Python SDK for the GLAM Protocol.
https://github.com/glamsystems/glam-sdk-py
Last synced: 5 months ago
JSON representation
Python SDK for the GLAM Protocol.
- Host: GitHub
- URL: https://github.com/glamsystems/glam-sdk-py
- Owner: glamsystems
- License: apache-2.0
- Created: 2025-11-10T23:11:55.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-12T07:26:15.000Z (7 months ago)
- Last Synced: 2025-11-12T09:20:38.865Z (7 months ago)
- Language: Python
- Homepage:
- Size: 70.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GLAM SDK for Python
Python SDK for interacting with the GLAM protocol on Solana. This SDK provides Python bindings for the GLAM Mint and Protocol programs.
[](https://badge.fury.io/py/glam-sdk)
[](https://opensource.org/licenses/Apache-2.0)
## Installation
```bash
pip install glam-sdk
```
## Development
### Install for Development
```bash
# Clone the repository
git clone https://github.com/glamsystems/glam-sdk-py.git
cd glam-sdk-py
# Install with dev dependencies
pip install -e ".[dev]"
```
### Running Tests
```bash
pytest
```
### Code Quality
```bash
# Lint and auto-fix issues
ruff check --fix .
# Format code
ruff format .
```
## Requirements
- Python >= 3.8
- anchorpy >= 0.21.0
- solana >= 0.36.0
- solders >= 0.26.0
## Note
This SDK code under `glam/mint` and `glam/protocol` directories is auto-generated from the GLAM program IDLs using [codama-py](https://github.com/Solana-ZH/codama-py). Do not manually edit the generated files.