commonmeta-py 0.23__py3-none-any.whl → 0.24__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.
- commonmeta/__init__.py +96 -0
- commonmeta/api_utils.py +77 -0
- commonmeta/author_utils.py +260 -0
- commonmeta/base_utils.py +121 -0
- commonmeta/cli.py +200 -0
- commonmeta/constants.py +587 -0
- commonmeta/crossref_utils.py +575 -0
- commonmeta/date_utils.py +193 -0
- commonmeta/doi_utils.py +273 -0
- commonmeta/metadata.py +320 -0
- commonmeta/readers/__init__.py +1 -0
- commonmeta/readers/cff_reader.py +199 -0
- commonmeta/readers/codemeta_reader.py +112 -0
- commonmeta/readers/commonmeta_reader.py +13 -0
- commonmeta/readers/crossref_reader.py +409 -0
- commonmeta/readers/crossref_xml_reader.py +505 -0
- commonmeta/readers/csl_reader.py +98 -0
- commonmeta/readers/datacite_reader.py +390 -0
- commonmeta/readers/datacite_xml_reader.py +359 -0
- commonmeta/readers/inveniordm_reader.py +218 -0
- commonmeta/readers/json_feed_reader.py +420 -0
- commonmeta/readers/kbase_reader.py +205 -0
- commonmeta/readers/ris_reader.py +103 -0
- commonmeta/readers/schema_org_reader.py +506 -0
- commonmeta/resources/cff_v1.2.0.json +1827 -0
- commonmeta/resources/commonmeta_v0.12.json +601 -0
- commonmeta/resources/commonmeta_v0.13.json +559 -0
- commonmeta/resources/commonmeta_v0.14.json +573 -0
- commonmeta/resources/crossref/AccessIndicators.xsd +47 -0
- commonmeta/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd +10130 -0
- commonmeta/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd +48 -0
- commonmeta/resources/crossref/JATS-journalpublishing1-elements.xsd +8705 -0
- commonmeta/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd +8608 -0
- commonmeta/resources/crossref/JATS-journalpublishing1-mathml3.xsd +49 -0
- commonmeta/resources/crossref/JATS-journalpublishing1.xsd +6176 -0
- commonmeta/resources/crossref/clinicaltrials.xsd +61 -0
- commonmeta/resources/crossref/common5.3.1.xsd +1538 -0
- commonmeta/resources/crossref/crossref5.3.1.xsd +1949 -0
- commonmeta/resources/crossref/crossref_query_output3.0.xsd +1097 -0
- commonmeta/resources/crossref/fundref.xsd +49 -0
- commonmeta/resources/crossref/module-ali.xsd +39 -0
- commonmeta/resources/crossref/relations.xsd +444 -0
- commonmeta/resources/crossref-v0.2.json +60 -0
- commonmeta/resources/csl-data.json +538 -0
- commonmeta/resources/datacite-v4.5.json +829 -0
- commonmeta/resources/datacite-v4.5pr.json +608 -0
- commonmeta/resources/ietf-bcp-47.json +3025 -0
- commonmeta/resources/iso-8601.json +3182 -0
- commonmeta/resources/spdx/licenses.json +4851 -0
- commonmeta/resources/spdx-schema..json +903 -0
- commonmeta/resources/styles/apa.csl +1697 -0
- commonmeta/resources/styles/chicago-author-date.csl +684 -0
- commonmeta/resources/styles/harvard-cite-them-right.csl +321 -0
- commonmeta/resources/styles/ieee.csl +468 -0
- commonmeta/resources/styles/modern-language-association.csl +341 -0
- commonmeta/resources/styles/vancouver.csl +376 -0
- commonmeta/schema_utils.py +27 -0
- commonmeta/translators.py +47 -0
- commonmeta/utils.py +1108 -0
- commonmeta/writers/__init__.py +1 -0
- commonmeta/writers/bibtex_writer.py +149 -0
- commonmeta/writers/citation_writer.py +70 -0
- commonmeta/writers/commonmeta_writer.py +68 -0
- commonmeta/writers/crossref_xml_writer.py +17 -0
- commonmeta/writers/csl_writer.py +79 -0
- commonmeta/writers/datacite_writer.py +193 -0
- commonmeta/writers/inveniordm_writer.py +94 -0
- commonmeta/writers/ris_writer.py +58 -0
- commonmeta/writers/schema_org_writer.py +146 -0
- {commonmeta_py-0.23.dist-info → commonmeta_py-0.24.dist-info}/METADATA +56 -45
- commonmeta_py-0.24.dist-info/RECORD +75 -0
- {commonmeta_py-0.23.dist-info → commonmeta_py-0.24.dist-info}/WHEEL +1 -1
- commonmeta_py-0.24.dist-info/entry_points.txt +3 -0
- commonmeta_py-0.23.dist-info/RECORD +0 -5
- /commonmeta_py/__init__.py → /commonmeta/readers/bibtex_reader.py +0 -0
- {commonmeta_py-0.23.dist-info/licenses → commonmeta_py-0.24.dist-info}/LICENSE +0 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
"""RIS writer for commonmeta-py"""
|
2
|
+
from ..utils import to_ris
|
3
|
+
from ..base_utils import compact, wrap, presence, parse_attributes
|
4
|
+
from ..doi_utils import doi_from_url
|
5
|
+
from ..constants import CM_TO_RIS_TRANSLATIONS
|
6
|
+
|
7
|
+
|
8
|
+
def write_ris(metadata):
|
9
|
+
"""Write ris"""
|
10
|
+
container = metadata.container or {}
|
11
|
+
_type = CM_TO_RIS_TRANSLATIONS.get(metadata.type, "GEN")
|
12
|
+
ris = compact(
|
13
|
+
{
|
14
|
+
"TY": _type,
|
15
|
+
"T1": parse_attributes(metadata.titles, content="title", first=True),
|
16
|
+
"T2": container.get("title", None),
|
17
|
+
"AU": to_ris(metadata.contributors),
|
18
|
+
"DO": doi_from_url(metadata.id),
|
19
|
+
"UR": metadata.url,
|
20
|
+
"AB": parse_attributes(
|
21
|
+
metadata.descriptions, content="description", first=True
|
22
|
+
),
|
23
|
+
"KW": presence(
|
24
|
+
parse_attributes(
|
25
|
+
wrap(metadata.subjects), content="subject", first=False
|
26
|
+
)
|
27
|
+
),
|
28
|
+
"PY": metadata.date.get("published")[:4]
|
29
|
+
if metadata.date.get("published", None)
|
30
|
+
else None,
|
31
|
+
"PB": metadata.publisher.get("name", None),
|
32
|
+
"LA": metadata.language,
|
33
|
+
"VL": container.get("volume", None),
|
34
|
+
"IS": container.get("issue", None),
|
35
|
+
"SP": container.get("firstPage", None),
|
36
|
+
"EP": container.get("lastPage", None),
|
37
|
+
# 'SN'= > Array.wrap(related_identifiers).find do | ri |
|
38
|
+
# ri['relationType'] == 'IsPartOf'
|
39
|
+
# end.to_h.fetch('relatedIdentifier', nil),
|
40
|
+
"ER": "",
|
41
|
+
}
|
42
|
+
)
|
43
|
+
string = []
|
44
|
+
for key, val in ris.items():
|
45
|
+
if isinstance(val, list) and val not in [[], [None]]:
|
46
|
+
for vai in val:
|
47
|
+
string.append(f"{key} - {vai}")
|
48
|
+
elif val not in [[], [None]]:
|
49
|
+
string.append(f"{key} - {val}")
|
50
|
+
return "\r\n".join(string)
|
51
|
+
|
52
|
+
|
53
|
+
def write_ris_list(metalist):
|
54
|
+
"""Write RIS list"""
|
55
|
+
if metalist is None:
|
56
|
+
return None
|
57
|
+
items = [write_ris(item) for item in metalist.items]
|
58
|
+
return "\r\n\r\n".join(items)
|
@@ -0,0 +1,146 @@
|
|
1
|
+
"""Schema.org writer for commonmeta-py"""
|
2
|
+
import orjson as json
|
3
|
+
from ..utils import to_schema_org_creators, github_as_repo_url, get_language
|
4
|
+
from ..base_utils import compact, wrap, presence, parse_attributes
|
5
|
+
from ..constants import CM_TO_SO_TRANSLATIONS
|
6
|
+
|
7
|
+
|
8
|
+
def write_schema_org(metadata):
|
9
|
+
"""Write schema.org"""
|
10
|
+
container = metadata.container
|
11
|
+
if metadata.type == "Dataset" and metadata.files is not None:
|
12
|
+
media_objects = [
|
13
|
+
compact(
|
14
|
+
{
|
15
|
+
"@type": "DataDownload",
|
16
|
+
"contentUrl": file.get("url"),
|
17
|
+
"encodingFormat": file.get("mimeType", None),
|
18
|
+
"name": file.get("key", None),
|
19
|
+
"sha256": file["checksum"]
|
20
|
+
if file.get("checksum", None)
|
21
|
+
and file["checksum"].startswith("sha256")
|
22
|
+
else None,
|
23
|
+
"size": file.get("size", None),
|
24
|
+
}
|
25
|
+
)
|
26
|
+
for file in metadata.files
|
27
|
+
]
|
28
|
+
elif metadata.files is not None:
|
29
|
+
media_objects = [
|
30
|
+
compact(
|
31
|
+
{
|
32
|
+
"@type": "MediaObject",
|
33
|
+
"contentUrl": file.get("url"),
|
34
|
+
"encodingFormat": file.get("mimeType", None),
|
35
|
+
"name": file.get("key", None),
|
36
|
+
"sha256": file["checksum"]
|
37
|
+
if file.get("checksum", None)
|
38
|
+
and file["checksum"].startswith("sha256")
|
39
|
+
else None,
|
40
|
+
"size": file.get("size", None),
|
41
|
+
}
|
42
|
+
)
|
43
|
+
for file in metadata.files
|
44
|
+
]
|
45
|
+
else:
|
46
|
+
media_objects = None
|
47
|
+
if metadata.type == "Dataset" and container is not None:
|
48
|
+
data_catalog = compact(
|
49
|
+
{
|
50
|
+
"@id": container.get("id", None),
|
51
|
+
"@type": "DataCatalog",
|
52
|
+
"name": container.get("title", None),
|
53
|
+
}
|
54
|
+
)
|
55
|
+
periodical = None
|
56
|
+
elif container is not None:
|
57
|
+
periodical = compact(
|
58
|
+
{
|
59
|
+
"issn": container.get("identifier", None)
|
60
|
+
if container.get("identifierType", None) == "ISSN"
|
61
|
+
else None,
|
62
|
+
"@id": container.get("identifier", None)
|
63
|
+
if container.get("identifierType", None) != "ISSN"
|
64
|
+
else None,
|
65
|
+
"@type": container.get("type", None)
|
66
|
+
if container.get("type", None) == "Journal"
|
67
|
+
else None,
|
68
|
+
"additionalType": container.get("type", None)
|
69
|
+
if container.get("type", None) != "Journal"
|
70
|
+
else None,
|
71
|
+
"name": container.get("title", None),
|
72
|
+
}
|
73
|
+
)
|
74
|
+
data_catalog = None
|
75
|
+
else:
|
76
|
+
periodical = None
|
77
|
+
data_catalog = None
|
78
|
+
schema_org = CM_TO_SO_TRANSLATIONS.get(metadata.type, "CreativeWork")
|
79
|
+
additional_type = metadata.additional_type
|
80
|
+
authors = [
|
81
|
+
au for au in wrap(metadata.contributors) if au["contributorRoles"] == ["Author"]
|
82
|
+
]
|
83
|
+
editors = [
|
84
|
+
au for au in wrap(metadata.contributors) if au["contributorRoles"] == ["Editor"]
|
85
|
+
]
|
86
|
+
if metadata.type == "Software":
|
87
|
+
rel = next(
|
88
|
+
(
|
89
|
+
relation
|
90
|
+
for relation in metadata.relations
|
91
|
+
if relation["type"] == "IsSupplementTo"
|
92
|
+
),
|
93
|
+
None,
|
94
|
+
)
|
95
|
+
code_repository = github_as_repo_url(rel["id"])
|
96
|
+
else:
|
97
|
+
code_repository = None
|
98
|
+
|
99
|
+
data = compact(
|
100
|
+
{
|
101
|
+
"@context": "http://schema.org",
|
102
|
+
"@id": metadata.id,
|
103
|
+
"identifier": metadata.id,
|
104
|
+
"@type": schema_org,
|
105
|
+
"url": metadata.url,
|
106
|
+
"additionalType": additional_type,
|
107
|
+
"name": parse_attributes(metadata.titles, content="title", first=True),
|
108
|
+
"author": to_schema_org_creators(authors),
|
109
|
+
"editor": to_schema_org_creators(editors),
|
110
|
+
"description": parse_attributes(
|
111
|
+
metadata.descriptions, content="description", first=True
|
112
|
+
),
|
113
|
+
"license": metadata.license.get("url", None) if metadata.license else None,
|
114
|
+
"version": metadata.version,
|
115
|
+
"keywords": presence(
|
116
|
+
parse_attributes(
|
117
|
+
wrap(metadata.subjects), content="subject", first=False
|
118
|
+
)
|
119
|
+
),
|
120
|
+
"inLanguage": get_language(metadata.language, format="name"),
|
121
|
+
"dateCreated": metadata.date.get("created", None),
|
122
|
+
"datePublished": metadata.date.get("published", None),
|
123
|
+
"dateModified": metadata.date.get("updated", None),
|
124
|
+
"pageStart": container.get("firstPage", None) if container else None,
|
125
|
+
"pageEnd": container.get("lastPage", None) if container else None,
|
126
|
+
# "isPartOf": unwrap(to_schema_org_relations(
|
127
|
+
# related_items=metadata.related_items,
|
128
|
+
# relation_type="IsPartOf",
|
129
|
+
# )),
|
130
|
+
"periodical": periodical if periodical else None,
|
131
|
+
"includedInDataCatalog": data_catalog if data_catalog else None,
|
132
|
+
"distribution": media_objects if metadata.type == "Dataset" else None,
|
133
|
+
"encoding": media_objects if metadata.type != "Dataset" else None,
|
134
|
+
"codeRepository": code_repository,
|
135
|
+
"publisher": {
|
136
|
+
"@type": "Organization",
|
137
|
+
"name": metadata.publisher.get("name", None),
|
138
|
+
}
|
139
|
+
if metadata.publisher
|
140
|
+
else None,
|
141
|
+
"provider": {"@type": "Organization", "name": metadata.provider}
|
142
|
+
if metadata.provider
|
143
|
+
else None,
|
144
|
+
}
|
145
|
+
)
|
146
|
+
return json.dumps(data)
|
@@ -1,50 +1,60 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: commonmeta-py
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.24
|
4
4
|
Summary: Library for conversions to/from the Commonmeta scholarly metadata format
|
5
|
-
|
6
|
-
License
|
7
|
-
Keywords:
|
8
|
-
|
9
|
-
|
10
|
-
Requires-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
Requires-Dist:
|
18
|
-
Requires-Dist:
|
19
|
-
Requires-Dist:
|
20
|
-
Requires-Dist:
|
21
|
-
Requires-Dist:
|
22
|
-
Requires-Dist:
|
23
|
-
Requires-Dist:
|
24
|
-
Requires-Dist:
|
25
|
-
Requires-Dist:
|
26
|
-
Requires-Dist:
|
27
|
-
Requires-Dist:
|
28
|
-
Requires-Dist:
|
29
|
-
Requires-Dist:
|
30
|
-
Requires-Dist:
|
31
|
-
Requires-Dist:
|
32
|
-
Requires-Dist:
|
33
|
-
Requires-Dist:
|
34
|
-
Requires-Dist:
|
35
|
-
Requires-Dist:
|
36
|
-
Requires-Dist:
|
37
|
-
Requires-Dist:
|
38
|
-
Requires-Dist:
|
39
|
-
Requires-Dist:
|
40
|
-
Requires-Dist:
|
41
|
-
Requires-Dist:
|
42
|
-
Requires-Dist:
|
43
|
-
Requires-Dist:
|
44
|
-
Requires-Dist:
|
45
|
-
Requires-Dist:
|
46
|
-
Requires-Dist:
|
47
|
-
Requires-Dist:
|
5
|
+
Home-page: https://python.commonmeta.org
|
6
|
+
License: MIT
|
7
|
+
Keywords: science,metadata,commonmeta,bibtex,csl,crossref,datacite
|
8
|
+
Author: Martin Fenner
|
9
|
+
Author-email: martin@front-matter.io
|
10
|
+
Requires-Python: >=3.9,<4.0.0
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
17
|
+
Requires-Dist: PyYAML (>=6.0,<7.0)
|
18
|
+
Requires-Dist: anyio (>=4.2.0,<5.0.0)
|
19
|
+
Requires-Dist: asyncclick (>=8.1.7.1,<9.0.0.0)
|
20
|
+
Requires-Dist: asyncio (>=3.4.3,<4.0.0)
|
21
|
+
Requires-Dist: base32_lib (>=1.0,<2.0)
|
22
|
+
Requires-Dist: beautifulsoup4 (>=4.11,<5.0)
|
23
|
+
Requires-Dist: bibtexparser (>=1.4,<2.0)
|
24
|
+
Requires-Dist: citeproc-py (>=0.6,<0.7)
|
25
|
+
Requires-Dist: citeproc-py-styles (>0.1)
|
26
|
+
Requires-Dist: click (>=8.1.7,<9.0.0)
|
27
|
+
Requires-Dist: datacite (>=1.1,<2.0)
|
28
|
+
Requires-Dist: dateparser (>=1.1.7,<2.0.0)
|
29
|
+
Requires-Dist: docutils (>=0.19,<0.20)
|
30
|
+
Requires-Dist: furl (>=2.1.3,<3.0.0)
|
31
|
+
Requires-Dist: httpx (>=0.27,<0.28)
|
32
|
+
Requires-Dist: jsonschema (>=4.21,<5.0)
|
33
|
+
Requires-Dist: jupyterlab (>=4.0.9,<5.0.0)
|
34
|
+
Requires-Dist: jupyterlab-quarto (>=0.2.8,<0.3.0)
|
35
|
+
Requires-Dist: lxml (>=4.8)
|
36
|
+
Requires-Dist: nameparser (>=1.1.2,<2.0.0)
|
37
|
+
Requires-Dist: nbstripout (>=0.6,<0.7)
|
38
|
+
Requires-Dist: nh3 (>=0.2.14,<0.3.0)
|
39
|
+
Requires-Dist: orjson (>=3.9.14,<4.0.0)
|
40
|
+
Requires-Dist: orjsonl (>=1.0.0,<2.0.0)
|
41
|
+
Requires-Dist: pikepdf (>=8.14.0,<9.0.0)
|
42
|
+
Requires-Dist: pycountry (>=23.12.11,<24.0.0)
|
43
|
+
Requires-Dist: pydash (>=7.0,<8.0)
|
44
|
+
Requires-Dist: pyjwt (>=2.8.0,<3.0.0)
|
45
|
+
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
|
46
|
+
Requires-Dist: quartodoc (>=0.7.1,<0.8.0)
|
47
|
+
Requires-Dist: setuptools (>=69.0,<70.0)
|
48
|
+
Requires-Dist: simplejson (>=3.18,<4.0)
|
49
|
+
Requires-Dist: sphinx-autodoc-typehints (>=1.19,<2.0)
|
50
|
+
Requires-Dist: sphinxcontrib-issuetracker (>=0.11,<0.12)
|
51
|
+
Requires-Dist: types-PyYAML (>=6.0,<7.0)
|
52
|
+
Requires-Dist: types-beautifulsoup4 (>=4.11,<5.0)
|
53
|
+
Requires-Dist: types-dateparser (>=1.1,<2.0)
|
54
|
+
Requires-Dist: types-xmltodict (>=0.13,<0.14)
|
55
|
+
Requires-Dist: xmltodict (>=0.12,<0.13)
|
56
|
+
Project-URL: Documentation, https://python.commonmeta.org
|
57
|
+
Project-URL: Repository, https://github.com/front-matter/commonmeta-py
|
48
58
|
Description-Content-Type: text/markdown
|
49
59
|
|
50
60
|
[](https://zenodo.org/doi/10.5281/zenodo.8340374)
|
@@ -108,3 +118,4 @@ Documentation (work in progress) for using the library is available at the [comm
|
|
108
118
|
Please note that this project is released with a [Contributor Code of Conduct](https://github.com/front-matter/commonmeta-py/blob/main/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
|
109
119
|
|
110
120
|
License: [MIT](https://github.com/front-matter/commonmeta-py/blob/main/LICENSE)
|
121
|
+
|
@@ -0,0 +1,75 @@
|
|
1
|
+
commonmeta/__init__.py,sha256=aq7TQyYBbqhfClw1iOox4gAi8bRJDq_r0KC3RFuwku0,1779
|
2
|
+
commonmeta/api_utils.py,sha256=-ZHGVZZhJqnjnsLtp4-PoeHYbDqL0cQme7W70BEjo4U,2677
|
3
|
+
commonmeta/author_utils.py,sha256=wNYUofQtxzuTr55SQflEsZaOswmrF6kZOuXJN16FsD4,8366
|
4
|
+
commonmeta/base_utils.py,sha256=0t6fr9XGeeTBoMlKSAMI7p_EmKsA6wYRW0roEBXVcc8,3722
|
5
|
+
commonmeta/cli.py,sha256=0IJF1SQ1sKPg7M0Gb8fpX2nBps-G0L13o01__M6c5Z0,6104
|
6
|
+
commonmeta/constants.py,sha256=VZdkvk-pnzwf4Ze0jwc67wX4a7dIZ_T7neeMQbRxdq0,15879
|
7
|
+
commonmeta/crossref_utils.py,sha256=uffkjbs3732yCzD7hEA5lZ9ZZ648Mftl_n0GGcnEPHc,21918
|
8
|
+
commonmeta/date_utils.py,sha256=amF3E0ZJlh8yY5eY3aVXQyAO1x2WuZHJXw-ajOEcdUQ,5808
|
9
|
+
commonmeta/doi_utils.py,sha256=Dt6K9ADD2ga2WNsOzfX9f29gnubhn7xqeKL7U5pEpBs,8209
|
10
|
+
commonmeta/metadata.py,sha256=dqqk4IW-_OwtS_PVs0i7AuxrkNqOYjJCqhQJ2X-I1DQ,12398
|
11
|
+
commonmeta/readers/__init__.py,sha256=vOf7UsOKNoh_ZCuyexxhAmPMt8wjB-pF_CfpWRaN8pk,45
|
12
|
+
commonmeta/readers/bibtex_reader.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
commonmeta/readers/cff_reader.py,sha256=5HMFUvjE1zb-zfpQSNM8vtB0YunD0reom99hn8N0xKc,6144
|
14
|
+
commonmeta/readers/codemeta_reader.py,sha256=efv2V1WPfdrKLQNxgSvoripdWqS2M6CwXWSGiRuzRtU,3658
|
15
|
+
commonmeta/readers/commonmeta_reader.py,sha256=gNjdsJ-671-pXmBdzy1NybkQ29q9_qtorFoK2D-zStA,302
|
16
|
+
commonmeta/readers/crossref_reader.py,sha256=6rC3q-YGzA0bP0fk2zTch_N7-8agxcsFqufvKmfxWJo,12331
|
17
|
+
commonmeta/readers/crossref_xml_reader.py,sha256=QF1A-r3OJbykBTH9YMSxusT3-KSKmmz7d6Ch8S0OM0I,18619
|
18
|
+
commonmeta/readers/csl_reader.py,sha256=5V_sHSJwcAWJmhB8SYk199nB96BWYX1Sq9vkQ3iEmAY,3164
|
19
|
+
commonmeta/readers/datacite_reader.py,sha256=CdOtxhthrakBoQMsLTdPx6sUCmqtEWo5ICYE6ZsWDdo,12026
|
20
|
+
commonmeta/readers/datacite_xml_reader.py,sha256=nhnO92fZihr1HZlbXjyem-HJXc9_DWLgJ2zeltuPMIg,13041
|
21
|
+
commonmeta/readers/inveniordm_reader.py,sha256=aYFMkeOZHJvIYwhtwRPi-SIlP-n2iecavA5JlcL5UYo,7129
|
22
|
+
commonmeta/readers/json_feed_reader.py,sha256=Ke-J_xZJk6DltFMPrdFBF8iGhs_3EMzpBbDg7wcw678,13773
|
23
|
+
commonmeta/readers/kbase_reader.py,sha256=NpIK-_fh5QFN4Q_ArqcrnH4tS5zR1gqbPew6VEjrUbs,6764
|
24
|
+
commonmeta/readers/ris_reader.py,sha256=v6qOd-i2OcMTEFy5RGd3MlYthJcYSU6yzmZ5yHDzmII,3677
|
25
|
+
commonmeta/readers/schema_org_reader.py,sha256=xyWzO2XAWlI2pYVl2EbVRsUmfiWXEwP64CHRBQNRN-M,16835
|
26
|
+
commonmeta/resources/cff_v1.2.0.json,sha256=MpfjDYgX7fN9PLiG54ISZ2uu9WItNqfh-yaRuTf6Ptg,46691
|
27
|
+
commonmeta/resources/commonmeta_v0.12.json,sha256=HUSNReXh2JN3Q6YWSt7CE69js8dh50OlpMYGTyU98oU,16762
|
28
|
+
commonmeta/resources/commonmeta_v0.13.json,sha256=2-WSZGijR13zVu97S_YHXr-cyeLW7hzHXYMlr6nIjdw,15787
|
29
|
+
commonmeta/resources/commonmeta_v0.14.json,sha256=nACmkTe4IrZkygd5AeJnAv9P4EWfzCwW9oL5AhubvnE,17657
|
30
|
+
commonmeta/resources/crossref/AccessIndicators.xsd,sha256=en-G2FFt4ewIFRw5C6g4YA8Nc0M66fCM2CygiO_ZqqY,2825
|
31
|
+
commonmeta/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd,sha256=l5jJMFm4xx09bavH2Gc3EqIdr-0PTf6M9YBTNpUaZhY,415409
|
32
|
+
commonmeta/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd,sha256=goO2ckm12fF2-kGFZC_FaTBdi4BK3YCRwb_ESur8dfY,2210
|
33
|
+
commonmeta/resources/crossref/JATS-journalpublishing1-elements.xsd,sha256=rzvo2CC_lPb6mgamDReX3kqQjJUFurP4irR6lneKmHE,350964
|
34
|
+
commonmeta/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd,sha256=_YiZ4zm47qLpo_Ru_j4gegpPpBhsKXw_UONA4gEgR2I,346132
|
35
|
+
commonmeta/resources/crossref/JATS-journalpublishing1-mathml3.xsd,sha256=qEbOzW0gcoXDH2Q964vvTx18dGKFe9Gq7tMJlVvCRsU,2154
|
36
|
+
commonmeta/resources/crossref/JATS-journalpublishing1.xsd,sha256=ZfGOCPqmikVScNlZYa9Gnv3PMJ8bG6YCGWozzlUeueE,227271
|
37
|
+
commonmeta/resources/crossref/clinicaltrials.xsd,sha256=zFQJR6uTOj3zc9enEbzP-1d4GFskXac_8TbHPsIsuJk,2766
|
38
|
+
commonmeta/resources/crossref/common5.3.1.xsd,sha256=EuHGLeZ9GkJQFFGs1zyT7CoOK9feNYokPguMYtqfhp4,76694
|
39
|
+
commonmeta/resources/crossref/crossref5.3.1.xsd,sha256=mKtu9DEcft1hvdg2tDHDiFOZCPsq1hP1Uy_CWB408Do,79697
|
40
|
+
commonmeta/resources/crossref/crossref_query_output3.0.xsd,sha256=sL1xvIq_1cqHANp5kIRGClo2eh78-Vld4KIcZS_Oz4k,43457
|
41
|
+
commonmeta/resources/crossref/fundref.xsd,sha256=qau1JgYG6EAikQjHkOrPa6UUiZlPgq17IUrsOv9i098,4490
|
42
|
+
commonmeta/resources/crossref/module-ali.xsd,sha256=3gYezOC4Wy8bRRB4q42DYv53Ue6HlSb2gsS4e_fmkrs,2079
|
43
|
+
commonmeta/resources/crossref/relations.xsd,sha256=f2EJeWHdPWfHLsPgCQdNFryamBw64OA4s3CweQWxsNU,14552
|
44
|
+
commonmeta/resources/crossref-v0.2.json,sha256=THbFem4IDSE-TFNOtP1-NOmZhED2dlLBso9RdGMbGIY,1431
|
45
|
+
commonmeta/resources/csl-data.json,sha256=I7LAYtdSYGD0YxuwS0s7ojfkiEhCU-MnvQD6aRhhuBE,12222
|
46
|
+
commonmeta/resources/datacite-v4.5.json,sha256=ocpQNSbORPJf5Ogidy6M6EHundgv7DSgIqRco02KgM4,18970
|
47
|
+
commonmeta/resources/datacite-v4.5pr.json,sha256=2A1fKDid_hNfKc5YLjOjtXUobJovU3so9lNkTXVS3sw,21092
|
48
|
+
commonmeta/resources/ietf-bcp-47.json,sha256=QQUmtIleKwywDfilVLlxzhf7XA4T46LdtLZic5XwDco,228225
|
49
|
+
commonmeta/resources/iso-8601.json,sha256=SJpMPOyep2ujMnTw7PeL_KjF4tNPjx5E0n7KslCm2_I,246361
|
50
|
+
commonmeta/resources/spdx/licenses.json,sha256=acWuaiWFY35GOht9uXgX20vdG-QH7ISrqTL_D0mf2bY,172114
|
51
|
+
commonmeta/resources/spdx-schema..json,sha256=Zq3_ad54nFivIkbnnqGPXEcXcDHJ_KuA6WIBSjmeJq8,47334
|
52
|
+
commonmeta/resources/styles/apa.csl,sha256=2KSBL2rUz55nJj5ulA9w9E-GLSL8dX0nfCBVUdRP45o,63244
|
53
|
+
commonmeta/resources/styles/chicago-author-date.csl,sha256=e577X6ZqwhajOsrJLXMiOALuwk5_wkLb-Y5BeBB8gW8,23208
|
54
|
+
commonmeta/resources/styles/harvard-cite-them-right.csl,sha256=XmLVFDrfsgkECYaAbdqM7CtPnxoigqfGKhyX9qnYTJ0,10723
|
55
|
+
commonmeta/resources/styles/ieee.csl,sha256=DfuN__z8FZ5Rcdaj_Myc5y_FmB-fHwfRVTeS9-hOgmQ,15854
|
56
|
+
commonmeta/resources/styles/modern-language-association.csl,sha256=HI2iU4krze1aHYc9VSQCUyw_2I6fEQYnA9xIWo-xNus,11594
|
57
|
+
commonmeta/resources/styles/vancouver.csl,sha256=lun3_i2oTilgsANk4LjFao2UDPQlGj_hgFgKAWC_DF8,12878
|
58
|
+
commonmeta/schema_utils.py,sha256=Ep8suJgqtgDAvbjVkQxwzAY1MqwwqPwNRKDTMAxMQTg,915
|
59
|
+
commonmeta/translators.py,sha256=RpGJtKNLjmz41VREZDY7KyyE2eXOi8j7m-da4jHmknI,1362
|
60
|
+
commonmeta/utils.py,sha256=qJOEnjKbpLGPEhc2n_VGB0ifRohE_zWT1VtyUv8_OFY,39463
|
61
|
+
commonmeta/writers/__init__.py,sha256=47-snms6xBHkoEXKYV1DBtH1npAtlVtvY29Z4Zr45qI,45
|
62
|
+
commonmeta/writers/bibtex_writer.py,sha256=s3hIJIgWvSG7TAriZMRQEAyuitw6ebwWSI1YcYFQ-do,4971
|
63
|
+
commonmeta/writers/citation_writer.py,sha256=RjaNh9EALxq6gfODLRWVJxGxPArGd6ZiHUlkYnCT6MA,2355
|
64
|
+
commonmeta/writers/commonmeta_writer.py,sha256=2qlttCfYpGhfVjrYkjzbIra7AywssRLT30FlxEWgXGw,1844
|
65
|
+
commonmeta/writers/crossref_xml_writer.py,sha256=0Ds494RnXfdfjWw5CLX1kwV2zP7gqffdVqO-X74Uc6c,492
|
66
|
+
commonmeta/writers/csl_writer.py,sha256=rlCeShkvC6ui9By0yVfNCMay_JfaZ4AooUPOPg-g-2M,2819
|
67
|
+
commonmeta/writers/datacite_writer.py,sha256=G7Lr0aZ4sAEdbfXe3dG4Y6AyGUKA9UWr_iiaQRDnV24,6233
|
68
|
+
commonmeta/writers/inveniordm_writer.py,sha256=tX24ml2tkaS_pmCwBH4hkK0MNwS4L-O0ovGy2dbuQ_g,3339
|
69
|
+
commonmeta/writers/ris_writer.py,sha256=AcnCszS3WY9lF594NbFBtLylsA8ownnYp_XLQJ84Ios,2093
|
70
|
+
commonmeta/writers/schema_org_writer.py,sha256=5j002uCNLdlScZMNQmPjodcVWqaBh2z38zL1H4lo2hY,5741
|
71
|
+
commonmeta_py-0.24.dist-info/LICENSE,sha256=746hEF2wZCKkcckk5-_DcBLtHewfaEMS4iXTlA1PVwk,1074
|
72
|
+
commonmeta_py-0.24.dist-info/METADATA,sha256=cISR_Z1weWrS70oFegmMK4OQpzZO6qXIkhCCS9HnoFI,8331
|
73
|
+
commonmeta_py-0.24.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
74
|
+
commonmeta_py-0.24.dist-info/entry_points.txt,sha256=vbcDw3_2lMTKdcAL2VUF4DRYRpKuzXVYLMCdgKVf88U,49
|
75
|
+
commonmeta_py-0.24.dist-info/RECORD,,
|
@@ -1,5 +0,0 @@
|
|
1
|
-
commonmeta_py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
commonmeta_py-0.23.dist-info/METADATA,sha256=WQjJLmTIv1HkWmisYP51AYqe_SxNbOB4MFHDsZEIzB0,7510
|
3
|
-
commonmeta_py-0.23.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
4
|
-
commonmeta_py-0.23.dist-info/licenses/LICENSE,sha256=746hEF2wZCKkcckk5-_DcBLtHewfaEMS4iXTlA1PVwk,1074
|
5
|
-
commonmeta_py-0.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|