|
3 mesi fa | |
---|---|---|
.. | ||
base | 3 mesi fa | |
v2 | 3 mesi fa | |
v3 | 3 mesi fa | |
README.md | 3 mesi fa | |
__init__.py | 3 mesi fa | |
async_client.py | 3 mesi fa | |
models.py | 3 mesi fa | |
sync_client.py | 3 mesi fa | |
utils.py | 3 mesi fa |
For the complete look at the R2R Python SDK, visit our documentation.
Before starting, make sure you have completed the R2R installation.
Install the R2R Python SDK:
pip install r2r
from r2r import R2RClient
client = R2RClient("http://localhost:7272")
health_response = client.health()
# {"status":"ok"}
Login (Optional):
client.register("me@email.com", "my_password")
# client.verify_email("me@email.com", "my_verification_code")
client.login("me@email.com", "my_password")
When using authentication the commands below automatically restrict the scope to a user's available documents.