pybliometrics


Namepybliometrics JSON
Version 3.6 PyPI version JSON
download
home_page
SummaryPython-based API-Wrapper to access Scopus
upload_time2023-12-08 09:22:42
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords scopus
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pybliometrics
=============

Enables large-scale access to Elsevier's Scopus API from Python.

Documentation: https://pybliometrics.readthedocs.io

Development: https://github.com/pybliometrics-dev/pybliometrics

.. image:: https://badge.fury.io/py/pybliometrics.svg
    :target: https://badge.fury.io/py/pybliometrics

.. image:: https://img.shields.io/pypi/pyversions/pybliometrics.svg
    :target: https://img.shields.io/pypi/pyversions/pybliometrics.svg

.. image:: https://readthedocs.org/projects/pybliometrics/badge/?version=stable
    :target: https://readthedocs.org/projects/pybliometrics/badge/?version=stable

.. image:: https://img.shields.io/pypi/dm/pybliometrics.svg
    :target: https://img.shields.io/pypi/dm/pybliometrics.svg

.. image:: https://img.shields.io/pypi/l/pybliometrics.svg
    :target: https://img.shields.io/pypi/l/pybliometrics.svg

.. image:: https://api.codeclimate.com/v1/badges/a4d7edd206a1252dfcfe/maintainability
   :target: https://codeclimate.com/github/pybliometrics-dev/pybliometrics/maintainability

Example
=======
.. example-begin
.. code:: python

    >>> # Document-specific information
    >>> from pybliometrics.scopus import AbstractRetrieval
    >>> ab = AbstractRetrieval("10.1016/j.softx.2019.100263")
    >>> ab.title
    'pybliometrics: Scriptable bibliometrics using a Python interface to Scopus'
    >>> ab.publicationName
    'SoftwareX'
    >>> ab.authors
    [Author(auid=57209617104, indexed_name='Rose M.E.', surname='Rose',
     given_name='Michael E.', affiliation='60105007'),
     Author(auid=7004212771, indexed_name='Kitchin J.R.', surname='Kitchin',
     given_name='John R.', affiliation='60027950')]
    >>> 
    >>> # Author-specific information
    >>> from pybliometrics.scopus import AuthorRetrieval
    >>> au2 = AuthorRetrieval(ab.authors[1].auid)
    >>> au2.h_index
    34
    >>> au1 = AuthorRetrieval(ab.authors[0].auid)
    >>> au1.affiliation_current
    [Affiliation(id=60105007, parent=None, type='parent', relationship='author',
     afdispname=None, preferred_name='Max Planck Institute for Innovation and Competition',
     parent_preferred_name=None, country_code='deu', country='Germany',
     address_part='Marstallplatz 1', city='Munich', state='Bayern',
     postal_code='80539', org_domain='ip.mpg.de', org_URL='http://www.ip.mpg.de/')]
    >>> 
    >>> # Affiliation information
    >>> from pybliometrics.scopus import AffiliationRetrieval
    >>> aff1 = AffiliationRetrieval(au1.affiliation_current[0].id)
    >>> aff1.author_count
    98

.. example-end

Installation
============

.. installation-begin

Install the stable version from PyPI:

.. code-block:: bash

    pip install pybliometrics

or the development version from the GitHub repository (requires git on your system):

.. code-block:: bash

    pip install git+https://github.com/pybliometrics-dev/pybliometrics

.. installation-end

Citation
========

If pybliometrics helped you getting data for research, please cite our corresponding paper:

* Rose, Michael E. and John R. Kitchin: "`pybliometrics: Scriptable bibliometrics using a Python interface to Scopus <./meta/1-s2.0-S2352711019300573-main.pdf>`_", SoftwareX 10 (2019) 100263.

Citing the paper helps the development of pybliometrics, because it justifies funneling resources into the development.  It also signals that you obtained data from Scopus in a transparent and replicable way.

Change log
==========

Please see `CHANGES.rst <./meta/CHANGES.rst>`_.

Contributing
============

Please see `CONTRIBUTING.rst <CONTRIBUTING.rst>`_. For a list of contributors see
`AUTHORS.rst <./meta/AUTHORS.rst>`_.

License
=======

MIT License; see `LICENSE <LICENSE>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pybliometrics",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "\"Michael E. Rose\" <Michael.Ernst.Rose@gmail.com>",
    "keywords": "scopus",
    "author": "",
    "author_email": "\"'John Kitchin and Michael E. Rose\" <Michael.Ernst.Rose@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/35/29/68a6349d725670d67ef7ec47ae4952ced361f7a52453e48abfe4384611d2/pybliometrics-3.6.tar.gz",
    "platform": null,
    "description": "pybliometrics\n=============\n\nEnables large-scale access to Elsevier's Scopus API from Python.\n\nDocumentation: https://pybliometrics.readthedocs.io\n\nDevelopment: https://github.com/pybliometrics-dev/pybliometrics\n\n.. image:: https://badge.fury.io/py/pybliometrics.svg\n    :target: https://badge.fury.io/py/pybliometrics\n\n.. image:: https://img.shields.io/pypi/pyversions/pybliometrics.svg\n    :target: https://img.shields.io/pypi/pyversions/pybliometrics.svg\n\n.. image:: https://readthedocs.org/projects/pybliometrics/badge/?version=stable\n    :target: https://readthedocs.org/projects/pybliometrics/badge/?version=stable\n\n.. image:: https://img.shields.io/pypi/dm/pybliometrics.svg\n    :target: https://img.shields.io/pypi/dm/pybliometrics.svg\n\n.. image:: https://img.shields.io/pypi/l/pybliometrics.svg\n    :target: https://img.shields.io/pypi/l/pybliometrics.svg\n\n.. image:: https://api.codeclimate.com/v1/badges/a4d7edd206a1252dfcfe/maintainability\n   :target: https://codeclimate.com/github/pybliometrics-dev/pybliometrics/maintainability\n\nExample\n=======\n.. example-begin\n.. code:: python\n\n    >>> # Document-specific information\n    >>> from pybliometrics.scopus import AbstractRetrieval\n    >>> ab = AbstractRetrieval(\"10.1016/j.softx.2019.100263\")\n    >>> ab.title\n    'pybliometrics: Scriptable bibliometrics using a Python interface to Scopus'\n    >>> ab.publicationName\n    'SoftwareX'\n    >>> ab.authors\n    [Author(auid=57209617104, indexed_name='Rose M.E.', surname='Rose',\n     given_name='Michael E.', affiliation='60105007'),\n     Author(auid=7004212771, indexed_name='Kitchin J.R.', surname='Kitchin',\n     given_name='John R.', affiliation='60027950')]\n    >>> \n    >>> # Author-specific information\n    >>> from pybliometrics.scopus import AuthorRetrieval\n    >>> au2 = AuthorRetrieval(ab.authors[1].auid)\n    >>> au2.h_index\n    34\n    >>> au1 = AuthorRetrieval(ab.authors[0].auid)\n    >>> au1.affiliation_current\n    [Affiliation(id=60105007, parent=None, type='parent', relationship='author',\n     afdispname=None, preferred_name='Max Planck Institute for Innovation and Competition',\n     parent_preferred_name=None, country_code='deu', country='Germany',\n     address_part='Marstallplatz 1', city='Munich', state='Bayern',\n     postal_code='80539', org_domain='ip.mpg.de', org_URL='http://www.ip.mpg.de/')]\n    >>> \n    >>> # Affiliation information\n    >>> from pybliometrics.scopus import AffiliationRetrieval\n    >>> aff1 = AffiliationRetrieval(au1.affiliation_current[0].id)\n    >>> aff1.author_count\n    98\n\n.. example-end\n\nInstallation\n============\n\n.. installation-begin\n\nInstall the stable version from PyPI:\n\n.. code-block:: bash\n\n    pip install pybliometrics\n\nor the development version from the GitHub repository (requires git on your system):\n\n.. code-block:: bash\n\n    pip install git+https://github.com/pybliometrics-dev/pybliometrics\n\n.. installation-end\n\nCitation\n========\n\nIf pybliometrics helped you getting data for research, please cite our corresponding paper:\n\n* Rose, Michael E. and John R. Kitchin: \"`pybliometrics: Scriptable bibliometrics using a Python interface to Scopus <./meta/1-s2.0-S2352711019300573-main.pdf>`_\", SoftwareX 10 (2019) 100263.\n\nCiting the paper helps the development of pybliometrics, because it justifies funneling resources into the development.  It also signals that you obtained data from Scopus in a transparent and replicable way.\n\nChange log\n==========\n\nPlease see `CHANGES.rst <./meta/CHANGES.rst>`_.\n\nContributing\n============\n\nPlease see `CONTRIBUTING.rst <CONTRIBUTING.rst>`_. For a list of contributors see\n`AUTHORS.rst <./meta/AUTHORS.rst>`_.\n\nLicense\n=======\n\nMIT License; see `LICENSE <LICENSE>`_.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python-based API-Wrapper to access Scopus",
    "version": "3.6",
    "project_urls": {
        "Bug Tracker": "https://github.com/pybliometrics-dev/pybliometrics/issues",
        "Documentation (latest)": "https://pybliometrics.readthedocs.io/en/latest/",
        "Documentation (stable)": "https://pybliometrics.readthedocs.io/en/stable/",
        "Homepage": "https://github.com/pybliometrics-dev/pybliometrics"
    },
    "split_keywords": [
        "scopus"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13a83bdb4b2ea2da58e30acc2d303c4ca1ab6d636c0871d948c0b0aba685c4c8",
                "md5": "fbf574f3eb49c821b929deeb520ce8e0",
                "sha256": "ece3b83432a52893a7aae822f159c02446d79cf583c9b380ba7cd95494f36444"
            },
            "downloads": -1,
            "filename": "pybliometrics-3.6-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fbf574f3eb49c821b929deeb520ce8e0",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 76443,
            "upload_time": "2023-12-08T09:22:38",
            "upload_time_iso_8601": "2023-12-08T09:22:38.313434Z",
            "url": "https://files.pythonhosted.org/packages/13/a8/3bdb4b2ea2da58e30acc2d303c4ca1ab6d636c0871d948c0b0aba685c4c8/pybliometrics-3.6-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "352968a6349d725670d67ef7ec47ae4952ced361f7a52453e48abfe4384611d2",
                "md5": "fead6cd4c05b4f1dc59cf3f7092fd0d3",
                "sha256": "23576a7620c0877aae438a10732d3b6aac8a6e3874c033823c963792dddcbdbd"
            },
            "downloads": -1,
            "filename": "pybliometrics-3.6.tar.gz",
            "has_sig": false,
            "md5_digest": "fead6cd4c05b4f1dc59cf3f7092fd0d3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 928057,
            "upload_time": "2023-12-08T09:22:42",
            "upload_time_iso_8601": "2023-12-08T09:22:42.010750Z",
            "url": "https://files.pythonhosted.org/packages/35/29/68a6349d725670d67ef7ec47ae4952ced361f7a52453e48abfe4384611d2/pybliometrics-3.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-08 09:22:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pybliometrics-dev",
    "github_project": "pybliometrics",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pybliometrics"
}
        
Elapsed time: 0.17042s