Skip to content

Commit 9a30abc

Browse files
fix: Update import paths in README.md
1 parent 1186970 commit 9a30abc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,23 +76,23 @@ The SDK can be installed with either *pip* or *poetry* package managers.
7676
*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
7777

7878
```bash
79-
pip install api-client-glean
79+
pip install glean-api-client
8080
```
8181

8282
### Poetry
8383

8484
*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
8585

8686
```bash
87-
poetry add api-client-glean
87+
poetry add glean-api-client
8888
```
8989

9090
### Shell and script usage with `uv`
9191

9292
You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:
9393

9494
```shell
95-
uvx --from api-client-glean python
95+
uvx --from glean-api-client python
9696
```
9797

9898
It's also possible to write a standalone Python script without needing to set up a whole project like so:
@@ -102,7 +102,7 @@ It's also possible to write a standalone Python script without needing to set up
102102
# /// script
103103
# requires-python = ">=3.9"
104104
# dependencies = [
105-
# "api-client-glean",
105+
# "glean-api-client",
106106
# ]
107107
# ///
108108

0 commit comments

Comments
 (0)