Skip to content

Commit f968dd0

Browse files
committed
fix: rename CLI alias to algokitgen-py
1 parent 63cd150 commit f968dd0

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This project generates a type-safe smart contract client in Python for the Algor
44
[application client](https://algorandfoundation.github.io/algokit-utils-py/html/apidocs/algokit_utils/algokit_utils.html#algokit_utils.ApplicationClient) in
55
[AlgoKit Utils](https://github.com/algorandfoundation/algokit-utils-py). It does this by reading an [ARC-0032](https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0032.md) application spec file.
66

7+
8+
> **Note**
9+
> There is also an equivalent [TypeScript client generator](https://github.com/algorandfoundation/algokit-client-generator-ts).
10+
11+
712
## Usage
813

914
### Prerequisites
@@ -25,7 +30,7 @@ pipx install algokit-client-generator
2530
Then to use it
2631

2732
```
28-
algokit-client-generator path/to/application.json path/to/output/client_generated.py
33+
algokitgen-py path/to/application.json path/to/output/client_generated.py
2934
```
3035

3136
## Examples

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ requires = ["poetry-core"]
2727
build-backend = "poetry.core.masonry.api"
2828

2929
[tool.poetry.scripts]
30-
algokit-client-generator = "algokit_client_generator.cli:main"
30+
algokitgen-py = "algokit_client_generator.cli:main"
3131

3232
[tool.ruff]
3333
line-length = 120

0 commit comments

Comments
 (0)