You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,23 +76,23 @@ The SDK can be installed with either *pip* or *poetry* package managers.
76
76
*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
77
77
78
78
```bash
79
-
pip install api-client-glean
79
+
pip install glean-api-client
80
80
```
81
81
82
82
### Poetry
83
83
84
84
*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.
85
85
86
86
```bash
87
-
poetry add api-client-glean
87
+
poetry add glean-api-client
88
88
```
89
89
90
90
### Shell and script usage with `uv`
91
91
92
92
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:
93
93
94
94
```shell
95
-
uvx --from api-client-glean python
95
+
uvx --from glean-api-client python
96
96
```
97
97
98
98
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
0 commit comments