diff --git a/README.md b/README.md index 6a11226..5e02914 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/http-methods.md b/docs/http-methods.md index b7c878a..d98557c 100644 --- a/docs/http-methods.md +++ b/docs/http-methods.md @@ -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/). \ No newline at end of file +Learn more in [this example](https://getodk.github.io/pyodk/examples/beyond-library-methods/).