Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix word error #63

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions OpenAPI/kiota/quickstarts/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ Create a directory that will contain the new project.

## Add dependencies

Before you can compile and run the generated API client, you will need to make sure the generated source files are part of a project with the required dependencies. Your project must have a reference to the [abstraction package](https://github.com/microsoft/kiota-abstractions-python). Additionally, you must either use the Kiota default implementations or provide your own custom implementations of of the following packages.
Before you can compile and run the generated API client, you will need to make sure the generated source files are part of a project with the required dependencies. Your project must have a reference to the [abstraction package](https://github.com/microsoft/kiota-abstractions-python). Additionally, you must either use the [Kiota](https://github.com/microsoft/kiota) default implementations or provide your own custom implementations of the following packages:

- HTTP ([Kiota default HTTPX-based implementation](https://github.com/microsoft/kiota-http-python))
- JSON serialization ([Kiota default](https://github.com/microsoft/kiota-serialization-json-python))
- Text serialization ([Kiota default](https://github.com/microsoft/kiota-serialization-text-python))

For this tutorial, you will use the default implementations.

Run the following commands to get the required dependencies.
Run the following commands to get the required dependencies:

```bash
pip install microsoft-kiota-abstractions
Expand Down
Loading