collections
numerous.collections
The Python SDK for numerous collections.
CollectionReference
dataclass
Source code in numerous/collections/collection_reference.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 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 235 | |
tags: dict[str, str]
property
Get the tags for the collection.
collection(collection_key)
Get or create a child collection of this collection by key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
collection_key
|
str
|
Key of the nested collection. A key uniquely identifies a collection within the parent collection. Keys are case sensitive, and can be used as human-readable identifiers for collections |
required |
Returns:
| Name | Type | Description |
|---|---|---|
NumerousCollection |
CollectionReference
|
The child collection identified by the given key. |
Source code in numerous/collections/collection_reference.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | |
collections(tag_key=None, tag_value=None)
Retrieve collections from the collection, filtered by a tag key and value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tag_key
|
str | None
|
If this and |
None
|
tag_value
|
str | None
|
If this and |
None
|
Yields:
| Type | Description |
|---|---|
CollectionReference
|
Nested collections of this collection. |
Source code in numerous/collections/collection_reference.py
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 | |
document(key)
Get or create a document by key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
Key of the document. A key uniquely identifies a document within its collection. Keys are case sensitive. |
required |
Returns:
| Type | Description |
|---|---|
DocumentReference
|
The document in the collection with the given key. |
Raises:
| Type | Description |
|---|---|
ParentCollectionNotFoundError
|
If the collection does not exist, for example if it was deleted. |
Source code in numerous/collections/collection_reference.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | |
documents(tag_key=None, tag_value=None)
Retrieve documents from the collection, filtered by a tag key and value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tag_key
|
str | None
|
If this and |
None
|
tag_value
|
str | None
|
If this and |
None
|
Yields:
| Type | Description |
|---|---|
DocumentReference
|
Documents from the collection. |
Source code in numerous/collections/collection_reference.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | |
file(key)
Get or create a file by key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
The key of the file. |
required |
Source code in numerous/collections/collection_reference.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 | |
files(tag_key=None, tag_value=None)
Retrieve files from the collection, filtered by a tag key and value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tag_key
|
str | None
|
The key of the tag used to filter files. |
None
|
tag_value
|
str | None
|
The value of the tag used to filter files. |
None
|
Yields:
| Type | Description |
|---|---|
FileReference
|
File references from the collection. |
Source code in numerous/collections/collection_reference.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | |
save_file(file_key, file_data)
Save data to a file in the collection.
If the file with the specified key already exists, it will be overwritten with the new data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_key
|
str
|
The key of the file to save or update. |
required |
file_data
|
str
|
The data to be written to the file. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the file cannot be created or saved. |
Source code in numerous/collections/collection_reference.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | |
tag(key, value)
Add a tag to the collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
The tag key. |
required |
value
|
str
|
The tag value. |
required |
Source code in numerous/collections/collection_reference.py
216 217 218 219 220 221 222 223 224 225 | |
tag_delete(key)
Delete a tag from the collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
The key of the tag to delete. |
required |
Source code in numerous/collections/collection_reference.py
227 228 229 230 231 232 233 234 235 | |
DocumentReference
dataclass
Source code in numerous/collections/document_reference.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | |
exists: bool
property
True if the document exists, False otherwise.
tags: dict[str, str]
property
Get the tags for the document.
delete()
Delete the referenced document.
Source code in numerous/collections/document_reference.py
88 89 90 91 92 93 94 95 96 | |
get()
Get the data of the document.
Returns:
| Type | Description |
|---|---|
dict[str, Any] | None
|
The data of the document if it is set. |
Source code in numerous/collections/document_reference.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | |
set(data)
Set the data for the document.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict[str, Any]
|
The data to set for the document. |
required |
Raises:
| Type | Description |
|---|---|
TypeError
|
If the data is not JSON serializable. |
Source code in numerous/collections/document_reference.py
56 57 58 59 60 61 62 63 64 65 66 67 68 | |
tag(key, value)
Add a tag to the document.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
The tag key. |
required |
value
|
str
|
The tag value. |
required |
Source code in numerous/collections/document_reference.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | |
tag_delete(tag_key)
Delete a tag from the document.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tag_key
|
str
|
The key of the tag to delete. |
required |
Source code in numerous/collections/document_reference.py
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | |
FileReference
dataclass
Represents a file in a collection.
Source code in numerous/collections/file_reference.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | |
exists: bool
property
Indicate whether the file exists.
Returns:
| Type | Description |
|---|---|
bool
|
True if the file exists; False otherwise. |
tags: dict[str, str]
property
Return the tags associated with the file.
Returns:
| Type | Description |
|---|---|
dict[str, str]
|
A dictionary of tag key-value pairs. |
delete()
Delete the file from the server.
Source code in numerous/collections/file_reference.py
102 103 104 | |
open()
Open the file for reading in binary mode.
Returns:
| Type | Description |
|---|---|
BinaryIO
|
A binary file-like object for reading the file. |
Source code in numerous/collections/file_reference.py
72 73 74 75 76 77 78 79 80 | |
read_bytes()
Read the file's content as bytes.
Returns:
| Type | Description |
|---|---|
bytes
|
The byte content of the file. |
Source code in numerous/collections/file_reference.py
62 63 64 65 66 67 68 69 70 | |
read_text()
Read the file's content as text.
Returns:
| Type | Description |
|---|---|
str
|
The text content of the file. |
Source code in numerous/collections/file_reference.py
52 53 54 55 56 57 58 59 60 | |
save(data)
Upload and saves data to the file on the server.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes | str
|
The content to save to the file, either as bytes or string. |
required |
Source code in numerous/collections/file_reference.py
82 83 84 85 86 87 88 89 90 | |
save_file(data)
Upload and saves a text file to the server.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
TextIOWrapper
|
A file-like object containing the text content to upload. |
required |
Source code in numerous/collections/file_reference.py
92 93 94 95 96 97 98 99 100 | |
tag(key, value)
Add a tag to the file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
The tag key. |
required |
value
|
str
|
The tag value. |
required |
Source code in numerous/collections/file_reference.py
106 107 108 109 110 111 112 113 114 115 | |
tag_delete(tag_key)
Delete a tag from the file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tag_key
|
str
|
The key of the tag to delete. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the file does not exist. |
Source code in numerous/collections/file_reference.py
117 118 119 120 121 122 123 124 125 126 127 128 | |
bulk_download(collection_ref, local_base_path=Path('collections'), document_suffix=DEFAULT_DOCUMENT_SUFFIX)
Download an entire collection hierarchy recursively to the local filesystem.
Downloads all files and documents from the given collection and all its nested sub-collections. Files are saved as binary, and documents are saved as JSON files with the specified suffix.
The local directory structure will mirror the collection hierarchy, using collection keys as folder names. Existing local files will be overwritten.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
collection_ref
|
CollectionReference
|
The |
required |
local_base_path
|
Path
|
Local base directory where collection data will be saved.
Defaults to "collections" in the current working directory.
The actual download will be inside a subdirectory named
after the root collection's key,
e.g., |
Path('collections')
|
document_suffix
|
str
|
Suffix to append to document filenames when saving locally. Defaults to ".collection-doc.json". |
DEFAULT_DOCUMENT_SUFFIX
|
Source code in numerous/collections/bulk/main.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | |
bulk_upload(collection_ref, local_base_path=Path('collections'), ignore_file_name=DEFAULT_IGNORE_FILE, document_suffix=DEFAULT_DOCUMENT_SUFFIX)
Upload a local directory structure recursively to a Numerous collection.
Scans the specified local directory (expected to be
local_base_path/collection_ref.key) and uploads files and documents.
It creates nested collections as needed.
Files with names matching patterns in an ignore file (default: .numerous-ignore) will be skipped. Files with the specified document suffix will be uploaded as documents. Existing remote files and documents will be overwritten.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
collection_ref
|
CollectionReference
|
The |
required |
local_base_path
|
Path
|
Local base directory from which to upload. The function
expects content to be uploaded to be inside a subdirectory
named after the root collection's key,
e.g., |
Path('collections')
|
ignore_file_name
|
str
|
Name of the ignore file (e.g., ".numerous-ignore")
located in the root of the directory being uploaded
(i.e., inside |
DEFAULT_IGNORE_FILE
|
document_suffix
|
str
|
Suffix that identifies files to be uploaded as documents. These files will have the suffix removed from their key. Defaults to ".collection-doc.json". |
DEFAULT_DOCUMENT_SUFFIX
|
Source code in numerous/collections/bulk/main.py
161 162 163 164 165 166 167 168 169 170 171 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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 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 296 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 | |