plantdb_client
PlantDB Client ModuleLink
A client library for interacting with the PlantDB API, providing a streamlined interface for managing plant-related data including scans, filesets, and associated metadata.
Key FeaturesLink
- Scan Management: Create new scans and manage scan metadata
- Fileset Operations: Create and manage collections of files associated with scans
- File Handling: Upload and manage individual files within filesets
- Metadata Management: Comprehensive CRUD operations for scan, fileset, and file metadata
- RESTful Interface: Implements standard HTTP methods for API communication
Usage ExamplesLink
>>> # Start a test REST API server first:
>>> # $ fsdb_rest_api --test
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Create a new scan
>>> scan_id = client.create_scan(
... name="Plant Sample 001",
... description="Arabidopsis specimen under controlled conditions"
... )
>>> # Create a fileset for the scan
>>> fileset_id = client.create_fileset(
... scan_id=scan_id,
... fileset_id="RGB Images",
... description="Top view RGB images"
... )
PlantDBClient
Link
Client for interacting with the PlantDB REST API.
This class provides methods to interact with a PlantDB REST API, allowing operations on scans, filesets, and files. It handles authentication, error processing, and provides a consistent interface for all API endpoints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The base URL of the PlantDB REST API. |
required |
|
str
|
The URL prefix used by the PlantDB REST API. |
None
|
Attributes:
| Name | Type | Description |
|---|---|---|
base_url |
str
|
The base URL of the PlantDB REST API. |
_session |
Session
|
HTTP session that maintains cookies and connection pooling. |
_access_token |
str
|
The JSON Web Token to authenticate with the PlantDB REST API. |
_refresh_token |
str
|
The refresh token to obtain new access tokens. |
_api_token |
str
|
The long-lived API token granting permission to specific datasets. |
_username |
str
|
The login username. |
logger |
Logger
|
The logger to use. |
Notes
This client automatically handles HTTP errors and extracts meaningful error messages from the API responses. All methods will raise appropriate exceptions with descriptive messages when API requests fail.
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Use the client against the server
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> scans = client.list_scans()
>>> print(scans)
['virtual_plant', 'real_plant_analyzed', 'real_plant', 'virtual_plant_analyzed', 'arabidopsis000']
>>> client.login('admin', 'admin')
>>> print(client.base_url)
http://localhost:5000
>>> print(client._access_token)
eyJhbG...BsovwQ
>>> # Get an API token for a set of dataset (matching the 'dataset_*'):
>>> api_token = client.create_api_token(3600, {'dataset_*': ('read', 'write', 'create')})
>>> # Create a new client with the API token:
>>> client2 = PlantDBClient(plantdb_url('localhost', port=5000), api_token=api_token)
>>> resp = client2.create_scan('dataset_A', {'description': "Test dataset"})
>>> print(resp['id']) # id of the created dataset
dataset_A
>>> resp = client2.create_scan('dataset_B', {'description': "Test dataset"})
>>> print(resp['id']) # id of the created dataset
dataset_B
>>> # Finally, stop the server
>>> server.stop()
Initialize the PlantDBClient with a base URL.
Source code in plantdb/client/plantdb_client.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | |
create_api_token
Link
create_api_token(token_exp, dataset_permissions)
Creates an API token with a specified expiration time and dataset permissions.
This method generates an API token that is tied to the permissions of specific
datasets. The permissions for each dataset must be provided, and they will be
validated against the defined Permission type. This allows fine-grained
control over dataset access via the generated token. The token can only be
created successfully if the server accepts the provided data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
int
|
The expiration time for the API token in seconds. |
required |
|
dict of str to tuple[Permission | str, ...] or Permission or str
|
A dictionary where each key is a dataset name (unix globbing possible),
and the corresponding value is the permission(s) for that dataset.
Permissions can be a single |
required |
Returns:
| Type | Description |
|---|---|
str or None
|
Returns the generated API token as a string if successful. Returns None if the token creation fails due to server error or other issues. |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> from plantdb.commons.auth.models import Permission
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Use it to log in as 'admin'
>>> client.login('admin', 'admin')
>>> # Create an API token with 'WRITE' permission to create a new scan dataset 'new_scan'
>>> api_token = client.create_api_token(3600, {'new_scan': ('read', 'write', 'create')})
>>> # Create a new scan dataset using the API token (with a new client initialized with the API token):
>>> client2 = PlantDBClient(plantdb_url('localhost', port=5000), api_token=api_token)
>>> client2.create_scan('new_scan', {'description': "Test API token dataset"}, use_api_token=True)
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | |
create_file
Link
Create a new file in a fileset and upload its data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str, pathlib.Path, or BytesIO
|
Path to the file to upload or BytesIO object containing file data |
required |
|
str
|
The ID of the file in the database |
required |
|
str
|
File extension (must be one of the valid extensions) |
required |
|
str
|
The ID of the scan containing the fileset |
required |
|
str
|
The ID of the fileset to create the file in |
required |
|
dict
|
Additional metadata for the file |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing creation confirmation message |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
ValueError
|
If required parameters are missing or invalid |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Log in as admin to get sufficient rights
>>> client.login('admin', 'admin')
>>> # Example 1 - Existing YAML file path as string
>>> metadata = {'description': 'Test document', 'author': 'John Doe'}
>>> dummy_data = {'name': 'Test Plant', 'species': 'Arabidopsis thaliana'}
>>> with tempfile.NamedTemporaryFile(suffix='.yaml', mode='w', delete=False) as f: temp_file_name = f.name; yaml.dump(dummy_data, f)
>>> response = client.create_file(temp_file_name, file_id='new_file',ext='yaml',scan_id='real_plant',fileset_id='images',metadata=metadata)
>>> print(response)
{'message': "File 'new_file.yaml' created and written successfully in fileset 'images'.", 'id': 'new_file'}
>>> # Example 2 - RGB Image with BytesIO
>>> import numpy as np
>>> from PIL import Image
>>> from io import BytesIO
>>> # Generate random RGB data (values from 0-255)
>>> rgb_data = np.random.randint(0, 256, (200, 150, 3), dtype=np.uint8)
>>> # Create PIL Image from NumPy array
>>> img = Image.fromarray(rgb_data, 'RGB')
>>> # Save image to BytesIO object
>>> image_data = BytesIO()
>>> img.save(image_data, format='PNG')
>>> image_data.seek(0) # Move to the beginning of the BytesIO object
>>> metadata = {'description': 'Random RGB test image', 'author': 'John Doe'}
>>> response = client.create_file(image_data, file_id='random_image', ext='png', scan_id='real_plant', fileset_id='images', metadata=metadata)
>>> print(response)
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 | |
create_fileset
Link
create_fileset(fileset_id, scan_id, metadata=None)
Create a new fileset associated with a scan.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the fileset to create |
required |
|
str
|
The ID of the scan to associate the fileset with |
required |
|
dict
|
Additional metadata for the fileset |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing a creation confirmation message |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Log in as admin to get sufficient rights
>>> client.login('admin', 'admin')
>>> metadata = {'description': 'This is a test fileset'}
>>> response = client.create_fileset('my_fileset', 'real_plant', metadata=metadata)
>>> print(response)
{'message': "Fileset created successfully in 'real_plant'.", 'id': 'my_fileset'}
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 | |
create_scan
Link
Create a new scan in the database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Name of the scan to create |
required |
|
dict
|
Additional metadata for the scan |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing creation confirmation message |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Scan creation requires authentication
>>> response = client.create_scan('test_plant')
WARNING [PlantDBClient] Client error 401: UNAUTHORIZED
requests.exceptions.RequestException: No authenticated user!
>>> # Log in as admin to get sufficient rights to create scan
>>> client.login('admin', 'admin')
>>> response = client.create_scan('test_plant', metadata={'description': 'Test plant scan'})
>>> print(response['message'])
Scan created successfully
>>> print(response['id'])
test_plant
>>> # Or create an API token with 'WRITE' permission to create a new scan dataset 'new_scan'
>>> print(client.create_api_token(3600, {'new_scan': ('read', 'write', 'create')}))
>>> # Create a new scan dataset using the API token:
>>> client.create_scan('new_scan', {'description': "Test API token dataset"}, use_api_token=True)
{'message': 'Scan created successfully', 'id': 'new_scan'}
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 | |
create_user
Link
Create a new user in the PlantDB API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
New username to create. |
required |
|
str
|
Password for authentication. |
required |
|
str
|
The full name of the user. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
|
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Use it to log in as 'admin'
>>> _ = client.login('admin', 'admin')
>>> # Create a new user
>>> _ = client.create_user('batman', 'JokerInArkham', 'Bruce Wayne')
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | |
get_file_metadata
Link
get_file_metadata(scan_id, fileset_id, file_id, key=None)
Retrieve metadata for a specified file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan containing the fileset |
required |
|
str
|
The ID of the fileset containing the file |
required |
|
str
|
The ID of the file |
required |
|
str
|
If provided, returns only the value for this specific metadata key |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the metadata or specific key value |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Get all metadata
>>> metadata = client.get_file_metadata('test_plant', 'images', 'image_001')
>>> print(metadata)
{'metadata': {'description': 'Test file'}}
>>> # Get a specific metadata key
>>> value = client.get_file_metadata('test_plant', 'images', 'image_001', key='description')
>>> print(value)
{'metadata': 'Test file'}
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 | |
get_fileset_metadata
Link
get_fileset_metadata(scan_id, fileset_id, key=None)
Retrieve metadata for a specified fileset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan containing the fileset |
required |
|
str
|
The ID of the fileset |
required |
|
str
|
If provided, returns only the value for this specific metadata key |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the metadata or specific key value |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Get all metadata
>>> metadata = client.get_fileset_metadata('real_plant', 'images')
>>> print(metadata['metadata']['channels'])
['rgb']
>>> # Get a specific metadata key
>>> value = client.get_fileset_metadata('real_plant', 'images', key='channels')
>>> print(value['metadata'])
['rgb']
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 | |
get_scan_metadata
Link
Retrieve metadata for a specified scan.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan |
required |
|
str
|
If provided, returns only the value for this specific metadata key |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the metadata or specific key value |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Get all metadata
>>> metadata = client.get_scan_metadata('real_plant')
>>> print(metadata['metadata']['owner'])
guest
>>> # Get a specific metadata key
>>> value = client.get_scan_metadata('real_plant', key='owner')
>>> print(value['metadata'])
guest
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 | |
list_fileset_files
Link
list_fileset_files(scan_id, fileset_id, query=None, fuzzy=False)
List all files in a specified fileset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan containing the fileset |
required |
|
str
|
The ID of the fileset |
required |
|
str
|
Query string to filter files |
None
|
|
bool
|
Whether to use fuzzy matching for the query |
False
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the list of files |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> response = client.fileset_files_list('real_plant','images')
>>> print(response)
{'files': ['00000_rgb', '00001_rgb', '00002_rgb', ...]}
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 | |
list_scan_filesets
Link
List all filesets in a specified scan.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan |
required |
|
str
|
Query string to filter filesets |
None
|
|
bool
|
Whether to use fuzzy matching for the query |
False
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the list of fileset IDs |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> response = client.list_scan_filesets('real_plant')
>>> print(response)
{'filesets': ['images']}
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 | |
list_scans
Link
List all scans in the database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Query string to filter scans |
None
|
|
bool
|
Whether to use fuzzy matching for the query (default: False) |
False
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the list of scan IDs |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> response = client.list_scans()
>>> print(sorted(response))
['arabidopsis000', 'real_plant', 'real_plant_analyzed', 'virtual_plant', 'virtual_plant_analyzed']
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 | |
list_scans_info
Link
Retrieve detailed scan information dictionaries from the ScansTable resource.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
dict
|
A dictionary that will be JSON‑encoded and sent as the |
None
|
|
bool
|
When |
False
|
Returns:
| Type | Description |
|---|---|
list[dict]
|
A list where each entry is a dictionary containing the scan’s
|
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails or the server returns an error status. |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> response = (client.list_scans_info())
>>> print(len(response))
5
>>> print(response[0]['id'])
real_plant_analyzed
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 | |
login
Link
Authenticate the user with the PlantDB API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Username for authentication. |
required |
|
str
|
Password for authentication. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
|
Notes
Using this method with an existing API token will revoke it upon successful login.
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Use it to log in as 'admin'
>>> client.login('admin', 'admin')
>>> print(client._access_token) # print the 'admin' access token
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | |
logout
Link
logout()
Logout user from the PlantDB API.
Returns:
| Type | Description |
|---|---|
bool
|
|
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Use it to log in as 'admin'
>>> client.login('admin', 'admin')
>>> # Then log out
>>> client.logout()
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | |
refresh
Link
refresh(scan_id=None)
Refresh the database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | None
|
The optional id of the scan to refresh, else refresh the whole database. |
None
|
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> client.refresh()
True
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 | |
refresh_token
Link
refresh_token()
Refresh the JSON Web Token.
Uses the stored refresh token to obtain a new access/refresh token pair.
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Use it to log in as 'admin'
>>> client.login('admin', 'admin')
>>> old_access_token = client._access_token
>>> client.refresh_token()
True
>>> client._access_token == old_access_token
False
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | |
update_file_metadata
Link
update_file_metadata(scan_id, fileset_id, file_id, metadata, replace=False)
Update metadata for a specified file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan containing the fileset |
required |
|
str
|
The ID of the fileset containing the file |
required |
|
str
|
The ID of the file |
required |
|
dict
|
The metadata to update/set |
required |
|
bool
|
If |
False
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the updated metadata |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Log in as admin to get sufficient rights
>>> client.login('admin', 'admin')
>>> # Update metadata
>>> new_metadata = {'description': 'Updated description'}
>>> response = client.update_file_metadata('test_plant', 'images', 'image_001', new_metadata)
>>> print(response)
{'metadata': {'description': 'Updated description'}}
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 | |
update_fileset_metadata
Link
update_fileset_metadata(scan_id, fileset_id, metadata, replace=False)
Update metadata for a specified fileset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan containing the fileset |
required |
|
str
|
The ID of the fileset |
required |
|
dict
|
The metadata to update/set |
required |
|
bool
|
If |
False
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the updated metadata |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Log in as admin to get sufficient rights
>>> client.login('admin', 'admin')
>>> # Replace the fileset metadata
>>> new_metadata = {'description': 'Updated fileset description', 'owner': 'John Doe'}
>>> response = client.update_fileset_metadata('real_plant', 'images', new_metadata, replace=True)
>>> print(response['metadata'])
{'metadata': {'description': 'Updated fileset description', 'author': 'John Doe'}}
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 | |
update_scan_metadata
Link
Update metadata for a specified scan.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The ID of the scan to update metadata for |
required |
|
dict
|
The metadata to update/set |
required |
|
bool
|
If |
False
|
Returns:
| Type | Description |
|---|---|
dict
|
Server response containing the updated metadata |
Raises:
| Type | Description |
|---|---|
RequestException
|
If the request fails |
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Log in as admin to get sufficient rights
>>> client.login('admin', 'admin')
>>> new_metadata = {'description': 'Updated scan description'}
>>> response = client.update_scan_metadata('real_plant', new_metadata)
>>> print(response['metadata']['description'])
Updated scan description
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 | |
validate_token
Link
validate_token(token)
Validate an authentication token against the remote service.
This method sends a POST request to the token‑validation endpoint
using the supplied token in the Authorization header.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The bearer token to be validated. |
required |
Returns:
| Type | Description |
|---|---|
``True`` if the token is accepted by the server, otherwise ``False``.
|
|
Examples:
>>> from plantdb.server.test_rest_api import TestRestApiServer
>>> # Start a test PlantDB REST API server first:
>>> server = TestRestApiServer(test=True, port=5000)
>>> server.start()
>>> # Create a client
>>> from plantdb.client.plantdb_client import PlantDBClient
>>> from plantdb.client.rest_api import plantdb_url
>>> client = PlantDBClient(plantdb_url('localhost', port=5000))
>>> # Use it to log in as 'admin'
>>> client.login('admin', 'admin')
>>> client.validate_token(client._access_token)
True
>>> # Finally, stop the server
>>> server.stop()
Source code in plantdb/client/plantdb_client.py
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 | |
api_prefix
Link
api_prefix(prefix='')
Set the API prefix for all URL generation functions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The prefix to add to all API URLs, e.g., '/plantdb'. Defaults to empty string. |
''
|
Examples:
>>> import os
>>> from plantdb.client.plantdb_client import api_prefix
>>> api_prefix()
''
>>> os.environ['PLANTDB_PREFIX'] = "/plantdb"
>>> api_prefix()
'/plantdb'
Source code in plantdb/client/plantdb_client.py
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 | |
get_mime_type
Link
get_mime_type(extension)
Determine the MIME type from a file extension.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
File extension (with or without a leading dot) |
required |
Returns:
| Type | Description |
|---|---|
str
|
The MIME type string or 'application/octet-stream' if not found |
Source code in plantdb/client/plantdb_client.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |