معرفی شرکت ها


doi2ietf-0.1.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Converts DOI metadata into IETF BibXML format
ویژگی مقدار
سیستم عامل -
نام فایل doi2ietf-0.1.2
نام doi2ietf
نسخه کتابخانه 0.1.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Ribose
ایمیل نویسنده open.source@ribose.com
آدرس صفحه اصلی https://github.com/ietf-ribose/doi2ietf-py
آدرس اینترنتی https://pypi.org/project/doi2ietf/
مجوز MIT
# doi2ietf: Convert DOI metadata into BibXML [![test](https://github.com/ietf-ribose/doi2ietf-py/actions/workflows/test.yml/badge.svg)](https://github.com/ietf-ribose/doi2ietf-py/actions/workflows/test.yml) [![release](https://github.com/ietf-ribose/doi2ietf-py/actions/workflows/release.yml/badge.svg)](https://github.com/ietf-ribose/doi2ietf-py/actions/workflows/release.yml) ## Purpose `doi2ietf` allows you to fetch bibliographic data from a DOI entry and convert that into IETF BibXML. IETF BibXML is the bibliographic data XML schema used by IETF RFC XML ([RFC 7991](https://datatracker.ietf.org/doc/html/rfc7991)) The digital object identifier system (DOI) is specified in [ISO 26324](https://www.iso.org/standard/43506.html) with the Registration Authority being the [International Digital Object Identifier Foundation](https://www.doi.org). The DOI registration authority allows attaching bibliographic metadata on DOI entries using the CrossRef format, available at https://data.crossref.org, and `doi2ietf` fetches those metadata from that site. DOI identifiers can be resolved at the [DOI resolver page](https://dx.doi.org). NOTE: [doilit](https://github.com/cabo/kramdown-rfc2629/blob/master/bin/doilit) was originally written by [Carsten Bormann](https://www.informatik.uni-bremen.de/~cabo/) as part of the [`kramdown-rfc2629`](https://github.com/cabo/kramdown-rfc2629) package. The `doi2ietf` package provides the Python equivalent of that functionality. ## Prerequisites This software requires Python 3.6+. All dependencies are specified in `setup.py` for PyPA. ## Install The package is published at PyPi and can be installed on its own. ```sh pip install doi2ietf ``` ## Usage ### Command-line interface The `doi2ietf` command takes a list of arguments like this: ```sh doi2ietf [options] [one or more DOI identifiers] ``` Where: * A DOI identifier looks like this: e.g. `10.1109/5.771073`. * The list of DOI identifiers have to be be separated by spaces. * By default, the output is in YAML format, printed to `STDOUT`. Options include: * `-x` or `--xml`: produce XML output instead of YAML. * `-c` or `--cache`: Cache HTTP-requests to `data.crossref.org`. Example: ```sh $ doi2ietf -c -x 10.1109/5.771073 10.1109/MIC.2012.29 <reference anchor="a"><front><title>Toward unique identifiers... <reference anchor="b"><front><title>CoAP: An Application Protocol... ``` ### Library The main function provided by the `doi2ietf` library is `process_doi_list`. It can be used in the following manner, for example: ```sh $ python >>> import doi2ietf >>> doi2ietf.process_doi_list(['10.1109/5.771073']) a: author: - ins: N. Paskin name: N. Paskin date: 1999-07 seriesinfo: DOI: 10.1109/5.771073 Proceedings of the IEEE: vol. 87, no. 7, pp. 1208-1227 title: Toward unique identifiers >>> doi2ietf.process_doi_list(['10.1109/5.771073'], 'XML') <reference anchor="a"><front><title>Toward unique identifiers</title>... ``` `process_doi_list` takes the following arguments: * list of DOI identifiers as strings * output format. Can be `XML` for XML strings, `DICT` for python dict objects, and `YAML` or `None` for YAML strings as default) ## Development ### General Development using `pyenv` is strongly encouraged. ```sh virtualenv venv pip install -e . ``` Dependencies are listed inside `setup.py`. ### Testing Test modules are placed under the `tests` directory. It uses data from `tests/fixtures` directory. Python `xmldiff` module is required for this tests. It was commented out in `requirements.txt`. There is 3 type of files: `*.json`, `*.yaml` and `*.xml`. * `*.json` - is body of HTTP(S) response from `data.crossref.org` * `*.yaml` - is original `doilit` output * `*.xml` - is original `doilit` output with `-x=xmlhandle` option


نیازمندی

مقدار نام
- pyyaml
- requests
- requests-cache
- simplejson


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl doi2ietf-0.1.2:

    pip install doi2ietf-0.1.2.whl


نصب پکیج tar.gz doi2ietf-0.1.2:

    pip install doi2ietf-0.1.2.tar.gz