Skip to content

Commit

Permalink
fix: docs links (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsay-stevens authored May 2, 2023
1 parent c4fedc6 commit babf03b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

An API client for the [ODK Central API](https://odkcentral.docs.apiary.io). Use it to interact with your data and automate common tasks from Python.

This library aims to make common data analysis and workflow automation tasks as simple as possible by providing clear method names, types, and examples. It also provides convenient access to the full API using [HTTP verb methods](#raw-http-requests).
This library aims to make common data analysis and workflow automation tasks as simple as possible by providing clear method names, types, and examples. It also provides convenient access to the full API using [HTTP verb methods](https://getodk.github.io/pyodk/http-methods/).

## Install

Expand Down
2 changes: 1 addition & 1 deletion docs/http-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ client.post("projects/7/app-users", json={"displayName": "Lab Tech"})

These methods provide convenient access to `Client.session`, which is a [`requests.Session`](https://requests.readthedocs.io/en/latest/user/advanced/#session-objects) object subclass. The `Session` has customised to prefix request URLs with the `base_url` from the pyodk config. For example with a base_url `https://www.example.com`, a call to `client.session.get("projects/8")` gets the details of `project_id=8`, using the full url `https://www.example.com/v1/projects/8`.

Learn more in [this example](/examples/beyond-library-methods/).
Learn more in [this example](https://getodk.github.io/pyodk/examples/beyond-library-methods/).

0 comments on commit babf03b

Please sign in to comment.