Encord Python SDK Client
Project description
Encord Python API Client
The data engine for computer vision
💻 Features
- Minimal low-level Python client that allows you to interact with Encord's API
- Supports Python:
3.7
,3.8
,3.9
, and3.10
✨ Relevant Links
💡 Getting Started
For full documentation, please visit Encord Python SDK.
First, install Encord Python API Client using the pip package manager:
pip install encord
Then, create an API key for authentication via the Encord web app. Pass the resource ID and API key as environment variables or pass them explicitly when you initialise the EncordClient object.
export ENCORD_PROJECT_ID="<project_id>"
export ENCORD_API_KEY="<project_api_key>"
Passing the resource ID and API key as environment variables, you can initialise the Encord client directly.
from encord.client import EncordClient
client = EncordClient.initialise()
If you want to avoid setting environment variables, you can initialise the Encord client by passing the resource ID and API key as strings.
from encord.client import EncordClient
client = EncordClient.initialise("<resource_id>", "<resource_api_key>")
If you wish to instantiate several client objects and avoid passing parameters each time, you can instantiate a EncordConfig object, pass the resource ID and API key as strings, and initialise the client with the config object.
from encord.client import EncordClient
from encord.client import EncordConfig
config = EncordConfig("<resource_id>", "<resource_api_key>")
client = EncordClient.initialise_with_config(config)
Once you have instantiated an Encord client, it is easy to fetch information associated with the given resource ID.
from encord.client import EncordClient
client = EncordClient.initialise()
project = client.get_project()
🐛 Troubleshooting
Please report bugs to GitHub Issues. Just make sure you read the Encord documentation and search for related issues first.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file encord-0.1.43.tar.gz
.
File metadata
- Download URL: encord-0.1.43.tar.gz
- Upload date:
- Size: 55.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.7.12 Linux/5.15.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cabda4e8a31b8e520579a3c004cb75b3fc7f2648eb841ade318e07bd23006e3 |
|
MD5 | 4baf08517c06c1b28f5e97565a0f7361 |
|
BLAKE2b-256 | aca0ef852df9eb4f7c5e2da9045c02eecef6cbae9557cb8eb9cead53213024e9 |
File details
Details for the file encord-0.1.43-py3-none-any.whl
.
File metadata
- Download URL: encord-0.1.43-py3-none-any.whl
- Upload date:
- Size: 78.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.7.12 Linux/5.15.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16feae999cbde5b291a42d88d7c176045e1141fed1943c262158f41421129fe0 |
|
MD5 | 0aaf5ffa5b00a9ec8368cc18b4b2e0c2 |
|
BLAKE2b-256 | 862c56db101c9bab2a2765ad5ddd1bee35bfd4471eadcb8978e974a3a8f32d8f |