Metadata-Version: 2.4
Name: pysui
Version: 0.90.1
Summary: SUI client Python SDK
License-Expression: Apache-2.0
Project-URL: changelog, https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md
Project-URL: repository, https://github.com/FrankC01/pysui
Project-URL: issues, https://github.com/FrankC01/pysui/issues
Project-URL: documentation, https://pysui.readthedocs.io
Keywords: software development kit,sui,blockchain
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: betterproto2[grpclib]<1.0.0,>=0.8.0
Requires-Dist: dataclasses_json<0.7.0,>=0.6.6
Requires-Dist: PyYAML<6.2,>=6.0.1
Requires-Dist: httpx<0.29,>=0.28.1
Requires-Dist: h2<5.0,>=4.2.0
Requires-Dist: jsonschema<4.30,>=4.23.0
Requires-Dist: websockets<16.0.0,>=15.0.1
Requires-Dist: gql[httpx,websockets]>=4.0.0
Requires-Dist: typing_utils<0.2.0,>=0.1.0
Requires-Dist: canoser==0.8.2
Requires-Dist: base58<2.2.0,>=2.1.1
Requires-Dist: Deprecated<1.3.0,>=1.2.14
Requires-Dist: pysui-fastcrypto>=0.7.0
Requires-Dist: gql[httpx,websockets]>=3.5.0
Dynamic: license-file

<p align="center">
  <img width="150" height="200" src="https://raw.githubusercontent.com/FrankC01/pysui/main/images//pysui_logo_color.png" alt='PySui'>
</p>

# pysui

[![Downloads](https://static.pepy.tech/badge/pysui/month)](https://pepy.tech/project/pysui)

Python Client SDK for Sui blockchain

## A cup of coffee

- The team could use a cup or carafe. Sui address `0xc45e5ea887e037ddc6a482afa412773b4291c8fdc338f647fb0fcea324975d8e`

## pysui SDK install

### With Rust on machine

`pip install pysui`

### Without Rust on machine

1. Fetch the latest [pysui-fastcrypto](https://github.com/FrankC01/pysui-fastcrypto) binary from the release assets, unzip and `pip` install it
2. `pip install pysui`

## pysui SDK current (github)

**Release-0.90.1**
Bumped dependentices version, recommended to re-run `pip install -r requirements.txt`

## PyPi current

**Release-0.90.1 - Released 2025-09-22**

Bumped dependentices version, recommended to re-run `pip install -r requirements.txt`

- [Latest PyPi Version](https://pypi.org/project/pysui/)

Includes support for gRPC BETA: queries, programmable transactions, subscriptions and transaction execution.

### FULL Documentation

- [ReadTheDocs](https://pysui.readthedocs.io/en/latest/index.html)

### gRPC Support

- Refer to [pysui-grpc](https://github.com/FrankC01/pysui/blob/main/PYSUI_GRPC.md)

### GraphQL Support

- Refer to [pysui-graphql](https://github.com/FrankC01/pysui/blob/main/PYSUI_GRAPHQL.md)

### Changelog

See [CHANGELOG](https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md)

### Issues and enhancement requests

We would appreciate using the [github issue log](https://github.com/FrankC01/pysui/issues) to let us know!

### Release/Publish Strategy

See [Strategies](https://github.com/FrankC01/pysui/blob/main/OP_STRATEGIES.md)

### Discord

Discord server invitation is [Found here](https://discord.gg/uCGYfY4Ph4):

### Local node support

Note: Only supported for JSON RPC clients, GraphQL not available for suibase at this time.

We leverage [suibase](https://github.com/ChainMovers/suibase) for our testing and SuiConfig includes an option for interacting directly with local nodes created by `suibase`

## Sample utilities

**Note**: Sample utiities are implemented using GraphQL

See [samples](https://github.com/FrankC01/pysui/blob/main/samples/README.md)
