pysodafair 0.1.62__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pysoda/__init__.py +0 -0
- pysoda/constants.py +3 -0
- pysoda/core/__init__.py +10 -0
- pysoda/core/dataset_generation/__init__.py +11 -0
- pysoda/core/dataset_generation/manifestSession/__init__.py +1 -0
- pysoda/core/dataset_generation/manifestSession/manifest_session.py +146 -0
- pysoda/core/dataset_generation/upload.py +3951 -0
- pysoda/core/dataset_importing/__init__.py +1 -0
- pysoda/core/dataset_importing/import_dataset.py +662 -0
- pysoda/core/metadata/__init__.py +20 -0
- pysoda/core/metadata/code_description.py +109 -0
- pysoda/core/metadata/constants.py +32 -0
- pysoda/core/metadata/dataset_description.py +188 -0
- pysoda/core/metadata/excel_utils.py +41 -0
- pysoda/core/metadata/helpers.py +250 -0
- pysoda/core/metadata/manifest.py +112 -0
- pysoda/core/metadata/manifest_package/__init__.py +2 -0
- pysoda/core/metadata/manifest_package/manifest.py +0 -0
- pysoda/core/metadata/manifest_package/manifest_import.py +29 -0
- pysoda/core/metadata/manifest_package/manifest_writer.py +666 -0
- pysoda/core/metadata/performances.py +46 -0
- pysoda/core/metadata/resources.py +53 -0
- pysoda/core/metadata/samples.py +184 -0
- pysoda/core/metadata/sites.py +51 -0
- pysoda/core/metadata/subjects.py +172 -0
- pysoda/core/metadata/submission.py +91 -0
- pysoda/core/metadata/text_metadata.py +47 -0
- pysoda/core/metadata_templates/CHANGES +1 -0
- pysoda/core/metadata_templates/LICENSE +1 -0
- pysoda/core/metadata_templates/README.md +4 -0
- pysoda/core/metadata_templates/__init__.py +0 -0
- pysoda/core/metadata_templates/code_description.xlsx +0 -0
- pysoda/core/metadata_templates/code_parameters.xlsx +0 -0
- pysoda/core/metadata_templates/dataset_description.xlsx +0 -0
- pysoda/core/metadata_templates/manifest.xlsx +0 -0
- pysoda/core/metadata_templates/performances.xlsx +0 -0
- pysoda/core/metadata_templates/resources.xlsx +0 -0
- pysoda/core/metadata_templates/samples.xlsx +0 -0
- pysoda/core/metadata_templates/sites.xlsx +0 -0
- pysoda/core/metadata_templates/subjects.xlsx +0 -0
- pysoda/core/metadata_templates/subjects_pools_samples_structure.xlsx +0 -0
- pysoda/core/metadata_templates/subjects_pools_samples_structure_example.xlsx +0 -0
- pysoda/core/metadata_templates/submission.xlsx +0 -0
- pysoda/core/permissions/__init__.py +1 -0
- pysoda/core/permissions/permissions.py +31 -0
- pysoda/core/pysoda/__init__.py +2 -0
- pysoda/core/pysoda/soda.py +34 -0
- pysoda/core/pysoda/soda_object.py +55 -0
- pysoda/core/upload_manifests/__init__.py +1 -0
- pysoda/core/upload_manifests/upload_manifests.py +37 -0
- pysoda/schema/__init__.py +0 -0
- pysoda/schema/code_description.json +629 -0
- pysoda/schema/dataset_description.json +295 -0
- pysoda/schema/manifest.json +60 -0
- pysoda/schema/performances.json +44 -0
- pysoda/schema/resources.json +39 -0
- pysoda/schema/samples.json +97 -0
- pysoda/schema/sites.json +38 -0
- pysoda/schema/soda_schema.json +664 -0
- pysoda/schema/subjects.json +131 -0
- pysoda/schema/submission_schema.json +28 -0
- pysoda/utils/__init__.py +9 -0
- pysoda/utils/authentication.py +381 -0
- pysoda/utils/config.py +68 -0
- pysoda/utils/exceptions.py +156 -0
- pysoda/utils/logger.py +6 -0
- pysoda/utils/metadata_utils.py +74 -0
- pysoda/utils/pennsieveAgentUtils.py +11 -0
- pysoda/utils/pennsieveUtils.py +118 -0
- pysoda/utils/profile.py +28 -0
- pysoda/utils/schema_validation.py +133 -0
- pysoda/utils/time_utils.py +5 -0
- pysoda/utils/upload_utils.py +108 -0
- pysodafair-0.1.62.dist-info/METADATA +190 -0
- pysodafair-0.1.62.dist-info/RECORD +77 -0
- pysodafair-0.1.62.dist-info/WHEEL +4 -0
- pysodafair-0.1.62.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pysodafair
|
|
3
|
+
Version: 0.1.62
|
|
4
|
+
Summary: Pysoda package for Fairdataihub tools
|
|
5
|
+
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Author: Christopher Marroquin
|
|
8
|
+
Author-email: cmarroquin@calmi2.org
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
|
+
Requires-Dist: openpyxl
|
|
22
|
+
Project-URL: Homepage, https://github.com/fairdataihub/pysodafair
|
|
23
|
+
Project-URL: Repository, https://github.com/fairdataihub/pysodafair
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# pysoda
|
|
27
|
+
|
|
28
|
+
## Overview
|
|
29
|
+
|
|
30
|
+
Pysoda is a tool for your python workflows that can help you create datasets in compliance with your favorite FAIR(Findable, Accessible, Interoperable, Reusable) data standards. At the moment, pysoda is primarily focused on neuromodulation, neurophysiology, and related data according to the SPARC guidelines that are aimed at making data FAIR. However, we are envisioning to extend the tool to support other standards such as BIDS, FHIR, etc, in the future.
|
|
31
|
+
|
|
32
|
+
Pysoda stems from SODA, a desktop software that simplifies the organization and sharing of data that needs to comply to a FAIR data standard. While using the SODA app can be convenient for most investigators, others with coding proficiency may find it more convenient to implement automated workflows. Given that the backend of SODA contains many functions necessary for preparing and submitting a dataset that is compliant with the SPARC Data Structure (SDS) such as:
|
|
33
|
+
|
|
34
|
+
Creating standard metadata files
|
|
35
|
+
Generating manifest files
|
|
36
|
+
Automatically complying with the file/folder naming conventions
|
|
37
|
+
Validating against the offical SDS validator
|
|
38
|
+
Uploading dataset to Pennsieve with SDS compliance (ignoring empty folders and non-allowed files, avoiding duplicate files and folders, etc.)
|
|
39
|
+
And many more
|
|
40
|
+
|
|
41
|
+
Pysoda makes these functions, which have been thoroughtly tested and validated, easily integratable in automated workflows such that the investigators do not have to re-write them. This will be very similar to the [pyfairdatatools](https://github.com/AI-READI/pyfairdatatools) Python package we are developing for our [AI-READI](https://aireadi.org/) project as part of the NIH Bridge2AI program.
|
|
42
|
+
|
|
43
|
+
## Workflow
|
|
44
|
+
|
|
45
|
+
### Import the pysoda package into your project and initialize the soda object with the supported standard of your choosing
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
from pysoda import soda_create
|
|
49
|
+
# initialize the soda_create object
|
|
50
|
+
# Internal note: soda_create returns the typical sodaJSONObj with additional methods for adding data and metadata [not in version 1]
|
|
51
|
+
# It is passed into the module functions just like our sodaJSONObj is passed to the backend of our api
|
|
52
|
+
|
|
53
|
+
soda = soda_create(standard='sds')
|
|
54
|
+
|
|
55
|
+
# add a dataset name to the soda object
|
|
56
|
+
soda.set_dataset_name('my_dataset')
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Structure your data
|
|
61
|
+
|
|
62
|
+
```python
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# get your base dataset files and folders structure
|
|
66
|
+
dataset_structure = soda.get_dataset_structure()
|
|
67
|
+
|
|
68
|
+
# fill out your dataset structure.
|
|
69
|
+
# NOTE: YOu will want to reference the
|
|
70
|
+
# dataset_structure key in the soda_schema.json file to understand the structure
|
|
71
|
+
# and what is required.
|
|
72
|
+
dataset_structure['folders'] = {
|
|
73
|
+
'data': {
|
|
74
|
+
'files': {
|
|
75
|
+
'file1': {
|
|
76
|
+
'path': '/home/user/file1.txt', 'relativePath': '/data/file1.txt', 'action': 'new'
|
|
77
|
+
},
|
|
78
|
+
'file2': {
|
|
79
|
+
'path': '/home/user/file2.txt', 'relativePath': '/data/file2.txt', 'action': 'new'
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
'folders': {
|
|
83
|
+
'primary': {
|
|
84
|
+
'files': {
|
|
85
|
+
'file3': {
|
|
86
|
+
'path': '/home/user/file3.txt', 'relativePath': '/data/primary/file3.txt', 'action': 'new'
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
'relativePath': '/data'
|
|
92
|
+
},
|
|
93
|
+
'files': {},
|
|
94
|
+
'relativePath': '/'
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
# map your imported data files to the entity structure defined in the soda schema [here](soda_schema.py)
|
|
99
|
+
entity_structure = soda.get_entity_structure()
|
|
100
|
+
|
|
101
|
+
# fill out your entity structure using the schema as a reference
|
|
102
|
+
# NOTE: data model not finalized
|
|
103
|
+
entity = {'subjectId': 'sub-1', 'metadata': {'age': '1 year', 'sex': 'female'}, 'data-file': '/data/file1.txt'}
|
|
104
|
+
entity_structure['subjects'].append(entity)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
### Create your dataset metadata
|
|
111
|
+
|
|
112
|
+
```python
|
|
113
|
+
|
|
114
|
+
# import the metadata module from the soda_create package
|
|
115
|
+
from pysoda import metadata
|
|
116
|
+
|
|
117
|
+
# define your submission metadata
|
|
118
|
+
submission = soda.get_submission_metadata()
|
|
119
|
+
|
|
120
|
+
submission['consortium-data-standard'] = 'standard'
|
|
121
|
+
submission['funding-consortium'] = 'SPARC'
|
|
122
|
+
submission['award-number'] = '12345'
|
|
123
|
+
submission['milestone-acheieved'] = ['one', 'two', 'three']
|
|
124
|
+
submission['filepath'] = 'path/to/destination'
|
|
125
|
+
|
|
126
|
+
# create the excel file for the submission metadata
|
|
127
|
+
metadata.submission.create(soda, file_output_location='path/to/output')
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
# repeat
|
|
131
|
+
metadata.subjects.create(soda, file_output_location='path/to/output')
|
|
132
|
+
metadata.samples.create(soda, file_output_location='path/to/output')
|
|
133
|
+
metadata.performances.create(soda, file_output_location='path/to/output')
|
|
134
|
+
metadata.sites.create(soda, file_output_location='path/to/output')
|
|
135
|
+
metadata.code.create(soda, file_output_location='path/to/output')
|
|
136
|
+
metadata.manifest.create(soda, file_output_location='path/to/output')
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### Generate your dataset
|
|
141
|
+
|
|
142
|
+
#### Generate locally
|
|
143
|
+
|
|
144
|
+
```python
|
|
145
|
+
|
|
146
|
+
from pysoda import generate
|
|
147
|
+
|
|
148
|
+
# set the generation options
|
|
149
|
+
soda.set_generate_dataset_options(destination='local', path='path/to/destination', dataset_name='my_dataset')
|
|
150
|
+
|
|
151
|
+
# generate the dataset
|
|
152
|
+
generate(soda)
|
|
153
|
+
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
#### Generate on Pennsieve
|
|
157
|
+
|
|
158
|
+
```python
|
|
159
|
+
from pysoda import generate
|
|
160
|
+
|
|
161
|
+
# provide the Pennsieve API Key and secret
|
|
162
|
+
soda.upload.auth(api_key='api, api_secret='api_secret)
|
|
163
|
+
|
|
164
|
+
# upload new dataset
|
|
165
|
+
# NOTE: You will need to download and start the Pennsieve Agent [here](https://app.pennsieve.io) to upload data to Pennsieve
|
|
166
|
+
dataset_id = generate(soda) # returns dataset_id
|
|
167
|
+
|
|
168
|
+
# OR upload to an existing pennsieve dataset
|
|
169
|
+
# set the generate options in the soda object
|
|
170
|
+
soda.set_generate_dataset_options(destination='existing-ps', if_existing="merge", if_existing_files="replace", dataset_id=dataset_id)
|
|
171
|
+
update_existing(soda)
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
## Utilities
|
|
175
|
+
|
|
176
|
+
### Compare a dataset on Pennsieve and a local dataset for differences
|
|
177
|
+
|
|
178
|
+
```python
|
|
179
|
+
from pysoda import compare
|
|
180
|
+
|
|
181
|
+
# provide the Pennsieve API Key and secret
|
|
182
|
+
soda.upload.auth(api_key='api, api_secret='api_secret)
|
|
183
|
+
|
|
184
|
+
# import the dataset from Pennsieve
|
|
185
|
+
soda.import_dataset(dataset_id='dataset_id')
|
|
186
|
+
|
|
187
|
+
# compare the Pennsieve dataset with the local dataset
|
|
188
|
+
results = compare(soda, local_dataset_location='path/to/local/dataset')
|
|
189
|
+
```
|
|
190
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
pysoda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
pysoda/constants.py,sha256=_jDO-8-DGHEmj4xlAQynpwIOM28oIb-hUtxb4KcM3eg,89
|
|
3
|
+
pysoda/core/__init__.py,sha256=bXnu4fYemJ915xId8nwh-Gy2IUEvVuoS9Hk3CXyJp8U,235
|
|
4
|
+
pysoda/core/dataset_generation/__init__.py,sha256=tisLmJeXLeAINXf7BdNZGi2i9vQwImWGa_S5FNwQFbs,299
|
|
5
|
+
pysoda/core/dataset_generation/manifestSession/__init__.py,sha256=kqkTAFEhluyQJ9mmMhYQTh1tgowBeJdH-Q9s5ifGkSE,51
|
|
6
|
+
pysoda/core/dataset_generation/manifestSession/manifest_session.py,sha256=TML_KOJ-1REohqSaHCZNFJrbDR1UDQ9sFcithJRx9t8,4669
|
|
7
|
+
pysoda/core/dataset_generation/upload.py,sha256=ATx8D-Ck1xDzrT_rI-YSDmi9hFFqiz2E0FgCrPlyJQA,174022
|
|
8
|
+
pysoda/core/dataset_importing/__init__.py,sha256=NbWs4HAqqydFLACFoVwl6g457dkYvjiZKx9NzB9wFxE,114
|
|
9
|
+
pysoda/core/dataset_importing/import_dataset.py,sha256=cx8qCQmR_BKdC2G-jzqE4dWg2JhkOS3jM8kpjLIsObk,29487
|
|
10
|
+
pysoda/core/metadata/__init__.py,sha256=Tkx6vdEQEPwAHmVSc9GfdbDZUkvuAqEgHJOxRDeX5vE,821
|
|
11
|
+
pysoda/core/metadata/code_description.py,sha256=sWbRPWPf32txpN048oQ9lT3y7GAoDkrS-GHivwwv55Y,4104
|
|
12
|
+
pysoda/core/metadata/constants.py,sha256=PR78huqBKdBpzDUGxVKy9YW3pUrJ4ftuF4MfqpNb1bU,1052
|
|
13
|
+
pysoda/core/metadata/dataset_description.py,sha256=uwVC0tBVglQPs57LQL22nEXKLjCm1j6rtmGj8ByOeoA,7332
|
|
14
|
+
pysoda/core/metadata/excel_utils.py,sha256=FQ8-DBq2lxFdpDUZeABfFKe284JzRTe6AYPxEw7yzsg,1216
|
|
15
|
+
pysoda/core/metadata/helpers.py,sha256=jDf4KPTbx4unHT7pDlFEa0jls1OZY-dpdKf3kUGMtvg,10609
|
|
16
|
+
pysoda/core/metadata/manifest.py,sha256=MjID-r52Yn3i9WlrT5IWeYvmkVdfzQuqGOmoMsZQVJg,4197
|
|
17
|
+
pysoda/core/metadata/manifest_package/__init__.py,sha256=7qiNT62WsI1LKb-lvnK31lW04sOvW_KTZQA1e8sUAgY,211
|
|
18
|
+
pysoda/core/metadata/manifest_package/manifest.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
pysoda/core/metadata/manifest_package/manifest_import.py,sha256=5rKOBf-NMt2dVsPJYotk5V855wnmtiMqrpknSOYOEl0,1347
|
|
20
|
+
pysoda/core/metadata/manifest_package/manifest_writer.py,sha256=AjtKdGYd9e2TS9hpPTPXH0mqer5PH_hLbxvYQPhhFHg,27358
|
|
21
|
+
pysoda/core/metadata/performances.py,sha256=s5nPF9il8m73PADK6YMSfWT0JADn-NDpXzB7K7X3X1o,1851
|
|
22
|
+
pysoda/core/metadata/resources.py,sha256=v0CUl5Lg-_2DkR0h9NJMBQkCkydQL15qzRZvkFDnMdc,1790
|
|
23
|
+
pysoda/core/metadata/samples.py,sha256=sSaHZ0LEYd6oQFKQxoS0xb1m4k1NPNqKxp38CJjzi3U,8389
|
|
24
|
+
pysoda/core/metadata/sites.py,sha256=gpmC7_WIi2wtaCa8BpS0eUYJPeBaOxwXyLIjVEXBhJA,1751
|
|
25
|
+
pysoda/core/metadata/subjects.py,sha256=kaerhYVUsz2BJSGIvETbl1YSliYAGMPg2-ne8AnsXdU,7968
|
|
26
|
+
pysoda/core/metadata/submission.py,sha256=Ym949kEIzdjjyyNWCvtP8OftFKKUBDQy98HOOTUEej4,3002
|
|
27
|
+
pysoda/core/metadata/text_metadata.py,sha256=GYiRxNiQp5Lw-6na80jcrvQBMF4-KHp3CGK2Mmv6TFI,1846
|
|
28
|
+
pysoda/core/metadata_templates/CHANGES,sha256=XIdY2AIWPX8aEtMJeXprL1kHXRH173l5ubTxzMDoCH4,78
|
|
29
|
+
pysoda/core/metadata_templates/LICENSE,sha256=XIdY2AIWPX8aEtMJeXprL1kHXRH173l5ubTxzMDoCH4,78
|
|
30
|
+
pysoda/core/metadata_templates/README.md,sha256=rIxGEC2qoPl4YcSj-G64MX5fmM1JdNed1KCDUFVYRnc,129
|
|
31
|
+
pysoda/core/metadata_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
+
pysoda/core/metadata_templates/code_description.xlsx,sha256=hONjq4nmDxtHbMmCTAcrosoIA6rxnlt1fub-EjDFDS0,12007
|
|
33
|
+
pysoda/core/metadata_templates/code_parameters.xlsx,sha256=vhHX99V7Abye8dN3GkjzFuJ8g9MUOSQDfAMRrR8DehQ,6027
|
|
34
|
+
pysoda/core/metadata_templates/dataset_description.xlsx,sha256=qTwz8_J0JeZdm_wGzq6-tMnZbKWJlmYdBSR4JN88Saw,16138
|
|
35
|
+
pysoda/core/metadata_templates/manifest.xlsx,sha256=uHUVfmy_jcNeW5qctDLyymOdhyVOwRJCQavungPBR0o,5273
|
|
36
|
+
pysoda/core/metadata_templates/performances.xlsx,sha256=jjiPBb669FHjC7W8hTo3gChTspX5DluBdrvO6UZhFOk,5184
|
|
37
|
+
pysoda/core/metadata_templates/resources.xlsx,sha256=mT-KbF1KzZjV3AifENZHkY2nX6AHB6sLO34pX_6xcAI,5155
|
|
38
|
+
pysoda/core/metadata_templates/samples.xlsx,sha256=5ramdIEUjk0d5rB6RvE_3aiE4vaKz_cKX7KBI_TE7sc,8448
|
|
39
|
+
pysoda/core/metadata_templates/sites.xlsx,sha256=C_XehlNXZSUUxjayZr0XW6OvuGRxoFzA8xM6OklXszM,8081
|
|
40
|
+
pysoda/core/metadata_templates/subjects.xlsx,sha256=_lFYP2WkTz-n_IfocaBgZWYwFtNdaDIFtYoXAQ4AcQE,8621
|
|
41
|
+
pysoda/core/metadata_templates/subjects_pools_samples_structure.xlsx,sha256=AXUBNtYBIAN9C3l7-clGFTCnyLkSFhuoFca227jbxgc,12154
|
|
42
|
+
pysoda/core/metadata_templates/subjects_pools_samples_structure_example.xlsx,sha256=69DcsxOR6H8oTZZq43vOuoyud1D_BOXdzLxJlotdQVk,12154
|
|
43
|
+
pysoda/core/metadata_templates/submission.xlsx,sha256=DIVcio7QyR-6-o1esDn1Gl7vu19xSCyGHhwGkW3RaBI,6002
|
|
44
|
+
pysoda/core/permissions/__init__.py,sha256=YUoJACCe8SO7_TXrn27jzz5gWx1xvCMPy37cNPmV2Mw,85
|
|
45
|
+
pysoda/core/permissions/permissions.py,sha256=l8OTNhzjidF7PrL74PYjcpxVYd1YQpgcs202yh4CJyg,1076
|
|
46
|
+
pysoda/core/pysoda/__init__.py,sha256=gNQ5O-A6wqTc88OGGfLy0UoeFxgPi0T5NMtF7YdUY_U,58
|
|
47
|
+
pysoda/core/pysoda/soda.py,sha256=HTK4_qxw_FL5GZaY8_HNRuXqth9h-t9btMUvfJD7XeU,1145
|
|
48
|
+
pysoda/core/pysoda/soda_object.py,sha256=ISkV2uRREp-ScHt5_ZH_4K20O3veVxYGnP-9Avv7xb4,1075
|
|
49
|
+
pysoda/core/upload_manifests/__init__.py,sha256=SOiyflYmZDtkLwWpeu7flyn3J2SAj9WL4y82O6cEpzg,74
|
|
50
|
+
pysoda/core/upload_manifests/upload_manifests.py,sha256=Hd2XSXYieG-EMcPTLSYXvdtraipp1XBSo5cGpZR-vbA,1223
|
|
51
|
+
pysoda/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
+
pysoda/schema/code_description.json,sha256=FJOyJBC2TKjTTdtew3B4wdq_WIrti-r2F-M6t5OVNB0,17854
|
|
53
|
+
pysoda/schema/dataset_description.json,sha256=rRuQiYthOwrlmzP_d3F1cG_ceIpefzxGuINorEcrA5g,8626
|
|
54
|
+
pysoda/schema/manifest.json,sha256=bsVzhnZHd2566KhrxQPBcwH376fgE8pSY8eXviTXrWA,2636
|
|
55
|
+
pysoda/schema/performances.json,sha256=TJw7ERC6eMR-9cImOg7xoEVRyOR4xViJqZO8U2X2OXo,1254
|
|
56
|
+
pysoda/schema/resources.json,sha256=FADf1p0IG_gliQlSr04cRtLKQMm8XhEktlnbnw_XG1U,1140
|
|
57
|
+
pysoda/schema/samples.json,sha256=NvuYhskV9QFrkSX4ant9G4KFCe9JLnVG98vDv2Puuvk,3340
|
|
58
|
+
pysoda/schema/sites.json,sha256=lMkglgi4R7_qqUHh6uwbZ38TjkUzRKGY9pdF1CpZh4E,1133
|
|
59
|
+
pysoda/schema/soda_schema.json,sha256=QSe8G39wOMO5wS_MUU0mW6yeM4etufACE6iuAzZMBoA,19290
|
|
60
|
+
pysoda/schema/subjects.json,sha256=j5au8ak0Q_Nxs6EDoJ7FJDr0SeS0Y-X40X-XQwSnRts,4799
|
|
61
|
+
pysoda/schema/submission_schema.json,sha256=b0FfBP_fDFxU8vT1mDAThbUyYMJA7PJ1S6lOpdPpSkY,1103
|
|
62
|
+
pysoda/utils/__init__.py,sha256=cdrc-Ueb7djdA9rPl5FR3nsinCxfOB9lbOhicNCbeCY,1243
|
|
63
|
+
pysoda/utils/authentication.py,sha256=Ed6xXaCSyi23qGz_LkdDB-Cjum5G5az_tMhSWKBGVSY,11943
|
|
64
|
+
pysoda/utils/config.py,sha256=8UC0j89ihuMnPCwl9bTVUupC9Kg_39ly9Hju5W4OmWo,2471
|
|
65
|
+
pysoda/utils/exceptions.py,sha256=H4_bvp-Zq4e-_GHQ5n3wxg4cH12iVgJZEw8tz8jRGfw,4812
|
|
66
|
+
pysoda/utils/logger.py,sha256=fxqJoqxe_wdVTq7IXN5QsWSC-z7mSfsLaJsKU9-UhqA,211
|
|
67
|
+
pysoda/utils/metadata_utils.py,sha256=nCQc24biSsrpnXbjXiZEtISWkfBS-CV00sv5MMydoww,1804
|
|
68
|
+
pysoda/utils/pennsieveAgentUtils.py,sha256=Un0qnVQm1DNg3u5l7PZI-X61sNaJtSmDlcXP_lRbv8Q,422
|
|
69
|
+
pysoda/utils/pennsieveUtils.py,sha256=B_L2NicOR3eQin0sd7TsRLWNDSxhSxyGgUJCGoWBVkM,4622
|
|
70
|
+
pysoda/utils/profile.py,sha256=di4D_IE1rGSfHl0-SRVjrJK2bCdedW4ugp0W-j1HarQ,937
|
|
71
|
+
pysoda/utils/schema_validation.py,sha256=3w3FRPyn4P3xMhITzItk-jYte8TTlNrgCWmY-s05x9Y,4438
|
|
72
|
+
pysoda/utils/time_utils.py,sha256=g5848bivtzWj6TDoWo6CcohF-THxShETP4qTyHTjBWw,131
|
|
73
|
+
pysoda/utils/upload_utils.py,sha256=-BCvfXsJSFqnwEZVCFQX1PLfkdeW0gyGLjLGW6Uxdf8,4607
|
|
74
|
+
pysodafair-0.1.62.dist-info/METADATA,sha256=J4JLeWI1aGB18L8QAl__4vgRS8Z5hNqvK-i2zFTHMVQ,7011
|
|
75
|
+
pysodafair-0.1.62.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
76
|
+
pysodafair-0.1.62.dist-info/licenses/LICENSE,sha256=Jlt0uGnx87qPRGXPQHsBkg_S7MOsYS2E9Rh1zy47bfw,1082
|
|
77
|
+
pysodafair-0.1.62.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 FAIR Data Innovations Hub
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|