File
File
¶
Bases: PrimaryBaseNode
Definition¶
The File node provides a link to scholarly work and allows users to specify in what way the work relates to that data. More specifically, users can specify that the data was directly extracted from, inspired by, derived from, etc.
The file node is held in the Data node.
Attributes¶
Attribute | Type | Example | Description | Required |
---|---|---|---|---|
name | str | "my file name" |
descriptive name for the file node | True |
source | str | "path/to/my/file" or "https://en.wikipedia.org/wiki/Simplified_molecular-input_line-entry_system" |
source to the file can be URL or local path | True |
type | str | "logs" |
Pick from CRIPT File Types | True |
extension | str | ".csv" |
file extension | False |
data_dictionary | str | "my extra info in my data dictionary" |
set of information describing the contents, format, and structure of a file | False |
notes | str | miscellaneous information, or custom data structure (e.g.; JSON) |
JSON¶
{
"node": ["File"],
"name": "my file node name",
"source": "https://criptapp.org",
"type": "calibration",
"extension": ".csv",
"data_dictionary": "my file's data dictionary",
}
Source code in src/cript/nodes/supporting_nodes/file.py
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 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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 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 433 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 465 466 467 468 469 470 471 472 473 474 475 476 477 478 |
|
data_dictionary: str
property
writable
¶
The data dictionary contains additional information that the scientist needs to describe their file.
Notes
It is advised for this field to be written in JSON format
Examples:
>>> import cript
>>> my_file = cript.File(
... name="my file name",
... source="https://criptapp.org",
... type="calibration",
... extension=".png",
... )
>>> my_file.data_dictionary = "{'notes': 'This is something that describes my file node.'}"
Returns:
Name | Type | Description |
---|---|---|
data_dictionary |
str
|
the file data dictionary attribute |
extension: str
property
writable
¶
The file extension property explicitly states what is the file extension of the file node.
Examples:
>>> import cript
>>> my_file = cript.File(
... name="my file name",
... source="https://criptapp.org",
... type="calibration",
... extension=".text",
... )
>>> my_file.extension = ".csv"
file extensions must start with a dot
File extensions must start with a dot, for example .csv
or .pdf
Returns:
Name | Type | Description |
---|---|---|
extension |
str
|
file extension |
source: str
property
writable
¶
The File node source can be set to be either a path to a local file on disk or a URL path to a file on the web.
Examples:
URL File Source
>>> import cript
>>> my_file = cript.File(
... name="my file name",
... source="https://criptapp.org",
... type="calibration",
... extension=".csv",
... )
>>> my_file.source = "/home/user/project/my_file.csv"
Returns:
Name | Type | Description |
---|---|---|
source |
str
|
A string representing the file source. |
type: str
property
writable
¶
The File type must come from CRIPT controlled vocabulary
Examples:
>>> import cript
>>> my_file = cript.File(
... name="my file name",
... source="https://criptapp.org",
... type="calibration",
... extension=".csv",
... )
>>> my_file.type = "calibration"
Returns:
Type | Description |
---|---|
file type: str
|
file type must come from CRIPT controlled vocabulary |
JsonAttributes
dataclass
¶
__init__(name, source, type, extension, data_dictionary='', notes='', **kwargs)
¶
create a File node
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
File node name |
required |
source |
str
|
link or path to local file |
required |
type |
str
|
Pick a file type from CRIPT controlled vocabulary File types |
required |
extension |
str
|
file extension |
required |
data_dictionary |
str
|
extra information describing the file |
''
|
notes |
str
|
notes for the file node |
''
|
**kwargs |
for internal use. Any extra data needed to create this file node when deserializing the JSON response from the API |
{}
|
Examples:
Web URL File Node¶
>>> import cript
>>> my_file = cript.File(
... name="my file name",
... source="https://pubs.acs.org/doi/suppl/10.1021/acscentsci.3c00011/suppl_file/oc3c00011_si_001.pdf",
... type="calibration",
... extension=".pdf",
... data_dictionary="my file's data dictionary",
... notes="my notes for this file",
... )
Local Source File Node¶
>>> import cript
>>> my_file = cript.File(
... name="my file name",
... source="/home/user/MIT/project/my_file.csv",
... type="calibration",
... extension=".csv",
... data_dictionary="my file's data dictionary",
... notes="my notes for this file",
... )
Source code in src/cript/nodes/supporting_nodes/file.py
download(destination_directory_path='.')
¶
download this file to current working directory or a specific destination. The file name will come from the file_node.name and the extension will come from file_node.extension
Examples:
>>> import cript
>>> my_file = cript.File(
... name="my file node name",
... source="/local/path/to/file",
... type="calibration",
... extension=".jpeg",
... )
>>> my_file.ensure_uploaded()
>>> my_file.source # changed to cloud storage object name
>>> my_file.download()
Notes
Whether the file extension is written like .csv
or csv
the program will work correctly
Parameters:
Name | Type | Description | Default |
---|---|---|---|
destination_directory_path |
Union[str, Path]
|
where you want the file to be stored and what you want the name to be by default it is the current working directory |
'.'
|
Returns:
Type | Description |
---|---|
None
|
|
Source code in src/cript/nodes/supporting_nodes/file.py
ensure_uploaded(api=None)
¶
Ensure that a local file is being uploaded into CRIPT accessible cloud storage.
After this call, non-local files (file names that do not start with http
) are uploaded.
It is not necessary to call this function manually.
A saved project automatically ensures uploaded files, it is recommend to rely on the automatic upload.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
api |
API object that performs the upload. If None, the globally cached object is being used. |
None
|
Examples:
>>> import cript
>>> my_file = cript.File(
... name="my file node name",
... source="/local/path/to/file",
... type="calibration",
... extension="csv",
... )
>>> my_file.ensure_uploaded()
>>> my_file.source # changed to cloud storage object name