pyalex


Namepyalex JSON
Version 0.15.1 PyPI version JSON
download
home_pageNone
SummaryPython interface to the OpenAlex database
upload_time2024-08-26 09:19:50
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <img alt="PyAlex - a Python wrapper for OpenAlex" src="https://github.com/J535D165/pyalex/raw/main/pyalex_repocard.svg">
</p>

# PyAlex

![PyPI](https://img.shields.io/pypi/v/pyalex) [![DOI](https://zenodo.org/badge/557541347.svg)](https://zenodo.org/badge/latestdoi/557541347)


PyAlex is a Python library for [OpenAlex](https://openalex.org/). OpenAlex is
an index of hundreds of millions of interconnected scholarly papers, authors,
institutions, and more. OpenAlex offers a robust, open, and free [REST API](https://docs.openalex.org/) to extract, aggregate, or search scholarly data.
PyAlex is a lightweight and thin Python interface to this API. PyAlex tries to
stay as close as possible to the design of the original service.

The following features of OpenAlex are currently supported by PyAlex:

- [x] Get single entities
- [x] Filter entities
- [x] Search entities
- [x] Group entities
- [x] Search filters
- [x] Select fields
- [x] Sample
- [x] Pagination
- [x] Autocomplete endpoint
- [x] N-grams
- [x] Authentication

We aim to cover the entire API, and we are looking for help. We are welcoming Pull Requests.

## Key features

- **Pipe operations** - PyAlex can handle multiple operations in a sequence. This allows the developer to write understandable queries. For examples, see [code snippets](#code-snippets).
- **Plaintext abstracts** - OpenAlex [doesn't include plaintext abstracts](https://docs.openalex.org/api-entities/works/work-object#abstract_inverted_index) due to legal constraints. PyAlex can convert the inverted abstracts into [plaintext abstracts on the fly](#get-abstract).
- **Permissive license** - OpenAlex data is CC0 licensed :raised_hands:. PyAlex is published under the MIT license.

## Installation

PyAlex requires Python 3.8 or later.

```sh
pip install pyalex
```

## Getting started

PyAlex offers support for all [Entity Objects](https://docs.openalex.org/api-entities/entities-overview): [Works](https://docs.openalex.org/api-entities/works), [Authors](https://docs.openalex.org/api-entities/authors), [Sources](https://docs.openalex.org/api-entities/sourcese), [Institutions](https://docs.openalex.org/api-entities/institutions), [Topics](https://docs.openalex.org/api-entities/topics), [Publishers](https://docs.openalex.org/api-entities/publishers), and [Funders](https://docs.openalex.org/api-entities/funders).

```python
from pyalex import Works, Authors, Sources, Institutions, Topics, Publishers, Funders
```

### The polite pool

[The polite pool](https://docs.openalex.org/how-to-use-the-api/rate-limits-and-authentication#the-polite-pool) has much
faster and more consistent response times. To get into the polite pool, you
set your email:

```python
import pyalex

pyalex.config.email = "mail@example.com"
```

### Max retries

By default, PyAlex will raise an error at the first failure when querying the OpenAlex API. You can set `max_retries` to a number higher than 0 to allow PyAlex to retry when an error occurs. `retry_backoff_factor` is related to the delay between two retry, and `retry_http_codes` are the HTTP error codes that should trigger a retry.

```python
from pyalex import config

config.max_retries = 0
config.retry_backoff_factor = 0.1
config.retry_http_codes = [429, 500, 503]
```

### Get single entity

Get a single Work, Author, Source, Institution, Concept, Topic, Publisher or Funder from OpenAlex by the
OpenAlex ID, or by DOI or ROR.

```python
Works()["W2741809807"]

# same as
Works()["https://doi.org/10.7717/peerj.4375"]
```

The result is a `Work` object, which is very similar to a dictionary. Find the available fields with `.keys()`.

For example, get the open access status:

```python
Works()["W2741809807"]["open_access"]
```

```python
{'is_oa': True, 'oa_status': 'gold', 'oa_url': 'https://doi.org/10.7717/peerj.4375'}
```

The previous works also for Authors, Sources, Institutions, Concepts and Topics

```python
Authors()["A2887243803"]
Authors()["https://orcid.org/0000-0002-4297-0502"]  # same
```

#### Get random

Get a [random Work, Author, Source, Institution, Concept, Topic, Publisher or Funder](https://docs.openalex.org/how-to-use-the-api/get-single-entities/random-result).

```python
Works().random()
Authors().random()
Sources().random()
Institutions().random()
Concepts().random()
Topics().random()
Publishers().random()
Funders().random()
```

#### Get abstract

Only for Works. Request a work from the OpenAlex database:

```python
w = Works()["W3128349626"]
```

All attributes are available like documented under [Works](https://docs.openalex.org/api-entities/works/work-object), as well as `abstract` (only if `abstract_inverted_index` is not None). This abstract made human readable is create on the fly.

```python
w["abstract"]
```

```python
'Abstract To help researchers conduct a systematic review or meta-analysis as efficiently and transparently as possible, we designed a tool to accelerate the step of screening titles and abstracts. For many tasks—including but not limited to systematic reviews and meta-analyses—the scientific literature needs to be checked systematically. Scholars and practitioners currently screen thousands of studies by hand to determine which studies to include in their review or meta-analysis. This is error prone and inefficient because of extremely imbalanced data: only a fraction of the screened studies is relevant. The future of systematic reviewing will be an interaction with machine learning algorithms to deal with the enormous increase of available text. We therefore developed an open source machine learning-aided pipeline applying active learning: ASReview. We demonstrate by means of simulation studies that active learning can yield far more efficient reviewing than manual reviewing while providing high quality. Furthermore, we describe the options of the free and open source research software and present the results from user experience tests. We invite the community to contribute to open source projects such as our own that provide measurable and reproducible improvements over current practice.'
```

Please respect the legal constraints when using this feature.

### Get lists of entities

```python
results = Works().get()
```

For lists of entities, you can also `count` the number of records found
instead of returning the results. This also works for search queries and
filters.

```python
Works().count()
# 10338153
```

For lists of entities, you can return the result as well as the metadata. By default, only the results are returned.

```python
results, meta = Topics().get(return_meta=True)
```

```python
print(meta)
{'count': 65073, 'db_response_time_ms': 16, 'page': 1, 'per_page': 25}
```

#### Filter records

```python
Works().filter(publication_year=2020, is_oa=True).get()
```

which is identical to:

```python
Works().filter(publication_year=2020).filter(is_oa=True).get()
```

#### Nested attribute filters

Some attribute filters are nested and separated with dots by OpenAlex. For
example, filter on [`authorships.institutions.ror`](https://docs.openalex.org/api-entities/works/filter-works).

In case of nested attribute filters, use a dict to build the query.

```python
Works()
  .filter(authorships={"institutions": {"ror": "04pp8hn57"}})
  .get()
```

#### Search entities

OpenAlex reference: [The search parameter](https://docs.openalex.org/api-entities/works/search-works)

```python
Works().search("fierce creatures").get()
```

#### Search filter

OpenAlex reference: [The search filter](https://docs.openalex.org/api-entities/works/search-works#search-a-specific-field)

```python
Authors().search_filter(display_name="einstein").get()
```

```python
Works().search_filter(title="cubist").get()
```

```python
Funders().search_filter(display_name="health").get()
```


#### Sort entity lists

OpenAlex reference: [Sort entity lists](https://docs.openalex.org/api-entities/works/get-lists-of-works#page-and-sort-works).

```python
Works().sort(cited_by_count="desc").get()
```

#### Select

OpenAlex reference: [Select fields](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/select-fields).

```python
Works().filter(publication_year=2020, is_oa=True).select(["id", "doi"]).get()
```

#### Sample

OpenAlex reference: [Sample entity lists](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/sample-entity-lists).

```python
Works().sample(100, seed=535).get()
```

#### Logical expressions

OpenAlex reference: [Logical expressions](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/filter-entity-lists#logical-expressions)

Inequality:

```python
Sources().filter(works_count=">1000").get()
```

Negation (NOT):

```python
Institutions().filter(country_code="!us").get()
```

Intersection (AND):

```python
Works().filter(institutions={"country_code": ["fr", "gb"]}).get()

# same
Works().filter(institutions={"country_code": "fr"}).filter(institutions={"country_code": "gb"}).get()
```

Addition (OR):

```python
Works().filter(institutions={"country_code": "fr|gb"}).get()
```

#### Paging

OpenAlex offers two methods for paging: [basic (offset) paging](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/paging#basic-paging) and [cursor paging](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/paging#cursor-paging). Both methods are supported by PyAlex.

##### Cursor paging (default)

Use the method `paginate()` to paginate results. Each returned page is a list
of records, with a maximum of `per_page` (default 25). By default,
`paginate`s argument `n_max` is set to 10000. Use `None` to retrieve all
results.

```python
from pyalex import Authors

pager = Authors().search_filter(display_name="einstein").paginate(per_page=200)

for page in pager:
    print(len(page))
```

> Looking for an easy method to iterate the records of a pager?

```python
from itertools import chain
from pyalex import Authors

query = Authors().search_filter(display_name="einstein")

for record in chain(*query.paginate(per_page=200)):
    print(record["id"])
```

##### Basic paging

See limitations of [basic paging](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/paging#basic-paging) in the OpenAlex documentation.

```python
from pyalex import Authors

pager = Authors().search_filter(display_name="einstein").paginate(method="page", per_page=200)

for page in pager:
    print(len(page))
```


### Autocomplete

OpenAlex reference: [Autocomplete entities](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/autocomplete-entities).

Autocomplete a string:
```python
from pyalex import autocomplete

autocomplete("stockholm resilience centre")
```

Autocomplete a string to get a specific type of entities:
```python
from pyalex import Institutions

Institutions().autocomplete("stockholm resilience centre")
```

You can also use the filters to autocomplete:
```python
from pyalex import Works

r = Works().filter(publication_year=2023).autocomplete("planetary boundaries")
```


### Get N-grams

OpenAlex reference: [Get N-grams](https://docs.openalex.org/api-entities/works/get-n-grams).


```python
Works()["W2023271753"].ngrams()
```


### Serialize

All results from PyAlex can be serialized. For example, save the results to a JSON file:

```python
with open(Path("works.json"), "w") as f:
    json.dump(Works().get(), f)

with open(Path("works.json")) as f:
    works = [Work(w) for w in json.load(f)]
```

## Code snippets

A list of awesome use cases of the OpenAlex dataset.

### Cited publications (referenced works)

```python
from pyalex import Works

# the work to extract the referenced works of
w = Works()["W2741809807"]

Works()[w["referenced_works"]]
```

### Get works of a single author

```python
from pyalex import Works

Works().filter(author={"id": "A2887243803"}).get()
```

### Dataset publications in the global south

```python
from pyalex import Works

# the work to extract the referenced works of
w = Works() \
  .filter(institutions={"is_global_south":True}) \
  .filter(type="dataset") \
  .group_by("institutions.country_code") \
  .get()

```

### Most cited publications in your organisation

```python
from pyalex import Works

Works() \
  .filter(authorships={"institutions": {"ror": "04pp8hn57"}}) \
  .sort(cited_by_count="desc") \
  .get()

```

## Experimental

### Authentication

OpenAlex experiments with authenticated requests at the moment. Authenticate your requests with

```python
import pyalex

pyalex.config.api_key = "<MY_KEY>"
```

## Alternatives

R users can use the excellent [OpenAlexR](https://github.com/ropensci/openalexR) library.

## License

[MIT](/LICENSE)

## Contact

> This library is a community contribution. The authors of this Python library aren't affiliated with OpenAlex.

Feel free to reach out with questions, remarks, and suggestions. The
[issue tracker](/issues) is a good starting point. You can also email me at
[jonathandebruinos@gmail.com](mailto:jonathandebruinos@gmail.com).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyalex",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Jonathan de Bruin <jonathandebruinos@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/aa/de/1edd12185f2eb950a8a65042e7c5e1dec31aa2b04a78af8d6c72be22c246/pyalex-0.15.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img alt=\"PyAlex - a Python wrapper for OpenAlex\" src=\"https://github.com/J535D165/pyalex/raw/main/pyalex_repocard.svg\">\n</p>\n\n# PyAlex\n\n![PyPI](https://img.shields.io/pypi/v/pyalex) [![DOI](https://zenodo.org/badge/557541347.svg)](https://zenodo.org/badge/latestdoi/557541347)\n\n\nPyAlex is a Python library for [OpenAlex](https://openalex.org/). OpenAlex is\nan index of hundreds of millions of interconnected scholarly papers, authors,\ninstitutions, and more. OpenAlex offers a robust, open, and free [REST API](https://docs.openalex.org/) to extract, aggregate, or search scholarly data.\nPyAlex is a lightweight and thin Python interface to this API. PyAlex tries to\nstay as close as possible to the design of the original service.\n\nThe following features of OpenAlex are currently supported by PyAlex:\n\n- [x] Get single entities\n- [x] Filter entities\n- [x] Search entities\n- [x] Group entities\n- [x] Search filters\n- [x] Select fields\n- [x] Sample\n- [x] Pagination\n- [x] Autocomplete endpoint\n- [x] N-grams\n- [x] Authentication\n\nWe aim to cover the entire API, and we are looking for help. We are welcoming Pull Requests.\n\n## Key features\n\n- **Pipe operations** - PyAlex can handle multiple operations in a sequence. This allows the developer to write understandable queries. For examples, see [code snippets](#code-snippets).\n- **Plaintext abstracts** - OpenAlex [doesn't include plaintext abstracts](https://docs.openalex.org/api-entities/works/work-object#abstract_inverted_index) due to legal constraints. PyAlex can convert the inverted abstracts into [plaintext abstracts on the fly](#get-abstract).\n- **Permissive license** - OpenAlex data is CC0 licensed :raised_hands:. PyAlex is published under the MIT license.\n\n## Installation\n\nPyAlex requires Python 3.8 or later.\n\n```sh\npip install pyalex\n```\n\n## Getting started\n\nPyAlex offers support for all [Entity Objects](https://docs.openalex.org/api-entities/entities-overview): [Works](https://docs.openalex.org/api-entities/works), [Authors](https://docs.openalex.org/api-entities/authors), [Sources](https://docs.openalex.org/api-entities/sourcese), [Institutions](https://docs.openalex.org/api-entities/institutions), [Topics](https://docs.openalex.org/api-entities/topics), [Publishers](https://docs.openalex.org/api-entities/publishers), and [Funders](https://docs.openalex.org/api-entities/funders).\n\n```python\nfrom pyalex import Works, Authors, Sources, Institutions, Topics, Publishers, Funders\n```\n\n### The polite pool\n\n[The polite pool](https://docs.openalex.org/how-to-use-the-api/rate-limits-and-authentication#the-polite-pool) has much\nfaster and more consistent response times. To get into the polite pool, you\nset your email:\n\n```python\nimport pyalex\n\npyalex.config.email = \"mail@example.com\"\n```\n\n### Max retries\n\nBy default, PyAlex will raise an error at the first failure when querying the OpenAlex API. You can set `max_retries` to a number higher than 0 to allow PyAlex to retry when an error occurs. `retry_backoff_factor` is related to the delay between two retry, and `retry_http_codes` are the HTTP error codes that should trigger a retry.\n\n```python\nfrom pyalex import config\n\nconfig.max_retries = 0\nconfig.retry_backoff_factor = 0.1\nconfig.retry_http_codes = [429, 500, 503]\n```\n\n### Get single entity\n\nGet a single Work, Author, Source, Institution, Concept, Topic, Publisher or Funder from OpenAlex by the\nOpenAlex ID, or by DOI or ROR.\n\n```python\nWorks()[\"W2741809807\"]\n\n# same as\nWorks()[\"https://doi.org/10.7717/peerj.4375\"]\n```\n\nThe result is a `Work` object, which is very similar to a dictionary. Find the available fields with `.keys()`.\n\nFor example, get the open access status:\n\n```python\nWorks()[\"W2741809807\"][\"open_access\"]\n```\n\n```python\n{'is_oa': True, 'oa_status': 'gold', 'oa_url': 'https://doi.org/10.7717/peerj.4375'}\n```\n\nThe previous works also for Authors, Sources, Institutions, Concepts and Topics\n\n```python\nAuthors()[\"A2887243803\"]\nAuthors()[\"https://orcid.org/0000-0002-4297-0502\"]  # same\n```\n\n#### Get random\n\nGet a [random Work, Author, Source, Institution, Concept, Topic, Publisher or Funder](https://docs.openalex.org/how-to-use-the-api/get-single-entities/random-result).\n\n```python\nWorks().random()\nAuthors().random()\nSources().random()\nInstitutions().random()\nConcepts().random()\nTopics().random()\nPublishers().random()\nFunders().random()\n```\n\n#### Get abstract\n\nOnly for Works. Request a work from the OpenAlex database:\n\n```python\nw = Works()[\"W3128349626\"]\n```\n\nAll attributes are available like documented under [Works](https://docs.openalex.org/api-entities/works/work-object), as well as `abstract` (only if `abstract_inverted_index` is not None). This abstract made human readable is create on the fly.\n\n```python\nw[\"abstract\"]\n```\n\n```python\n'Abstract To help researchers conduct a systematic review or meta-analysis as efficiently and transparently as possible, we designed a tool to accelerate the step of screening titles and abstracts. For many tasks\u2014including but not limited to systematic reviews and meta-analyses\u2014the scientific literature needs to be checked systematically. Scholars and practitioners currently screen thousands of studies by hand to determine which studies to include in their review or meta-analysis. This is error prone and inefficient because of extremely imbalanced data: only a fraction of the screened studies is relevant. The future of systematic reviewing will be an interaction with machine learning algorithms to deal with the enormous increase of available text. We therefore developed an open source machine learning-aided pipeline applying active learning: ASReview. We demonstrate by means of simulation studies that active learning can yield far more efficient reviewing than manual reviewing while providing high quality. Furthermore, we describe the options of the free and open source research software and present the results from user experience tests. We invite the community to contribute to open source projects such as our own that provide measurable and reproducible improvements over current practice.'\n```\n\nPlease respect the legal constraints when using this feature.\n\n### Get lists of entities\n\n```python\nresults = Works().get()\n```\n\nFor lists of entities, you can also `count` the number of records found\ninstead of returning the results. This also works for search queries and\nfilters.\n\n```python\nWorks().count()\n# 10338153\n```\n\nFor lists of entities, you can return the result as well as the metadata. By default, only the results are returned.\n\n```python\nresults, meta = Topics().get(return_meta=True)\n```\n\n```python\nprint(meta)\n{'count': 65073, 'db_response_time_ms': 16, 'page': 1, 'per_page': 25}\n```\n\n#### Filter records\n\n```python\nWorks().filter(publication_year=2020, is_oa=True).get()\n```\n\nwhich is identical to:\n\n```python\nWorks().filter(publication_year=2020).filter(is_oa=True).get()\n```\n\n#### Nested attribute filters\n\nSome attribute filters are nested and separated with dots by OpenAlex. For\nexample, filter on [`authorships.institutions.ror`](https://docs.openalex.org/api-entities/works/filter-works).\n\nIn case of nested attribute filters, use a dict to build the query.\n\n```python\nWorks()\n  .filter(authorships={\"institutions\": {\"ror\": \"04pp8hn57\"}})\n  .get()\n```\n\n#### Search entities\n\nOpenAlex reference: [The search parameter](https://docs.openalex.org/api-entities/works/search-works)\n\n```python\nWorks().search(\"fierce creatures\").get()\n```\n\n#### Search filter\n\nOpenAlex reference: [The search filter](https://docs.openalex.org/api-entities/works/search-works#search-a-specific-field)\n\n```python\nAuthors().search_filter(display_name=\"einstein\").get()\n```\n\n```python\nWorks().search_filter(title=\"cubist\").get()\n```\n\n```python\nFunders().search_filter(display_name=\"health\").get()\n```\n\n\n#### Sort entity lists\n\nOpenAlex reference: [Sort entity lists](https://docs.openalex.org/api-entities/works/get-lists-of-works#page-and-sort-works).\n\n```python\nWorks().sort(cited_by_count=\"desc\").get()\n```\n\n#### Select\n\nOpenAlex reference: [Select fields](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/select-fields).\n\n```python\nWorks().filter(publication_year=2020, is_oa=True).select([\"id\", \"doi\"]).get()\n```\n\n#### Sample\n\nOpenAlex reference: [Sample entity lists](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/sample-entity-lists).\n\n```python\nWorks().sample(100, seed=535).get()\n```\n\n#### Logical expressions\n\nOpenAlex reference: [Logical expressions](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/filter-entity-lists#logical-expressions)\n\nInequality:\n\n```python\nSources().filter(works_count=\">1000\").get()\n```\n\nNegation (NOT):\n\n```python\nInstitutions().filter(country_code=\"!us\").get()\n```\n\nIntersection (AND):\n\n```python\nWorks().filter(institutions={\"country_code\": [\"fr\", \"gb\"]}).get()\n\n# same\nWorks().filter(institutions={\"country_code\": \"fr\"}).filter(institutions={\"country_code\": \"gb\"}).get()\n```\n\nAddition (OR):\n\n```python\nWorks().filter(institutions={\"country_code\": \"fr|gb\"}).get()\n```\n\n#### Paging\n\nOpenAlex offers two methods for paging: [basic (offset) paging](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/paging#basic-paging) and [cursor paging](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/paging#cursor-paging). Both methods are supported by PyAlex.\n\n##### Cursor paging (default)\n\nUse the method `paginate()` to paginate results. Each returned page is a list\nof records, with a maximum of `per_page` (default 25). By default,\n`paginate`s argument `n_max` is set to 10000. Use `None` to retrieve all\nresults.\n\n```python\nfrom pyalex import Authors\n\npager = Authors().search_filter(display_name=\"einstein\").paginate(per_page=200)\n\nfor page in pager:\n    print(len(page))\n```\n\n> Looking for an easy method to iterate the records of a pager?\n\n```python\nfrom itertools import chain\nfrom pyalex import Authors\n\nquery = Authors().search_filter(display_name=\"einstein\")\n\nfor record in chain(*query.paginate(per_page=200)):\n    print(record[\"id\"])\n```\n\n##### Basic paging\n\nSee limitations of [basic paging](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/paging#basic-paging) in the OpenAlex documentation.\n\n```python\nfrom pyalex import Authors\n\npager = Authors().search_filter(display_name=\"einstein\").paginate(method=\"page\", per_page=200)\n\nfor page in pager:\n    print(len(page))\n```\n\n\n### Autocomplete\n\nOpenAlex reference: [Autocomplete entities](https://docs.openalex.org/how-to-use-the-api/get-lists-of-entities/autocomplete-entities).\n\nAutocomplete a string:\n```python\nfrom pyalex import autocomplete\n\nautocomplete(\"stockholm resilience centre\")\n```\n\nAutocomplete a string to get a specific type of entities:\n```python\nfrom pyalex import Institutions\n\nInstitutions().autocomplete(\"stockholm resilience centre\")\n```\n\nYou can also use the filters to autocomplete:\n```python\nfrom pyalex import Works\n\nr = Works().filter(publication_year=2023).autocomplete(\"planetary boundaries\")\n```\n\n\n### Get N-grams\n\nOpenAlex reference: [Get N-grams](https://docs.openalex.org/api-entities/works/get-n-grams).\n\n\n```python\nWorks()[\"W2023271753\"].ngrams()\n```\n\n\n### Serialize\n\nAll results from PyAlex can be serialized. For example, save the results to a JSON file:\n\n```python\nwith open(Path(\"works.json\"), \"w\") as f:\n    json.dump(Works().get(), f)\n\nwith open(Path(\"works.json\")) as f:\n    works = [Work(w) for w in json.load(f)]\n```\n\n## Code snippets\n\nA list of awesome use cases of the OpenAlex dataset.\n\n### Cited publications (referenced works)\n\n```python\nfrom pyalex import Works\n\n# the work to extract the referenced works of\nw = Works()[\"W2741809807\"]\n\nWorks()[w[\"referenced_works\"]]\n```\n\n### Get works of a single author\n\n```python\nfrom pyalex import Works\n\nWorks().filter(author={\"id\": \"A2887243803\"}).get()\n```\n\n### Dataset publications in the global south\n\n```python\nfrom pyalex import Works\n\n# the work to extract the referenced works of\nw = Works() \\\n  .filter(institutions={\"is_global_south\":True}) \\\n  .filter(type=\"dataset\") \\\n  .group_by(\"institutions.country_code\") \\\n  .get()\n\n```\n\n### Most cited publications in your organisation\n\n```python\nfrom pyalex import Works\n\nWorks() \\\n  .filter(authorships={\"institutions\": {\"ror\": \"04pp8hn57\"}}) \\\n  .sort(cited_by_count=\"desc\") \\\n  .get()\n\n```\n\n## Experimental\n\n### Authentication\n\nOpenAlex experiments with authenticated requests at the moment. Authenticate your requests with\n\n```python\nimport pyalex\n\npyalex.config.api_key = \"<MY_KEY>\"\n```\n\n## Alternatives\n\nR users can use the excellent [OpenAlexR](https://github.com/ropensci/openalexR) library.\n\n## License\n\n[MIT](/LICENSE)\n\n## Contact\n\n> This library is a community contribution. The authors of this Python library aren't affiliated with OpenAlex.\n\nFeel free to reach out with questions, remarks, and suggestions. The\n[issue tracker](/issues) is a good starting point. You can also email me at\n[jonathandebruinos@gmail.com](mailto:jonathandebruinos@gmail.com).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python interface to the OpenAlex database",
    "version": "0.15.1",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da3fe2dfe66db69c2900099ec966b6405912c11be65f4f38ab0c2a3eb56b5730",
                "md5": "4a18d79385da7a3695bb141eca0480d7",
                "sha256": "713a1aa1cee77f89f212afa58a0a262dbcea46b3c8a4a62dc232f2ed3ccf1ce3"
            },
            "downloads": -1,
            "filename": "pyalex-0.15.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4a18d79385da7a3695bb141eca0480d7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 11095,
            "upload_time": "2024-08-26T09:19:47",
            "upload_time_iso_8601": "2024-08-26T09:19:47.928863Z",
            "url": "https://files.pythonhosted.org/packages/da/3f/e2dfe66db69c2900099ec966b6405912c11be65f4f38ab0c2a3eb56b5730/pyalex-0.15.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aade1edd12185f2eb950a8a65042e7c5e1dec31aa2b04a78af8d6c72be22c246",
                "md5": "7781b2bc486f2b5f1bf080472a08ff13",
                "sha256": "064ae2bc20b21e66a813bccf7f1aec3223ab112ca77e8a1f3e40d657281d181f"
            },
            "downloads": -1,
            "filename": "pyalex-0.15.1.tar.gz",
            "has_sig": false,
            "md5_digest": "7781b2bc486f2b5f1bf080472a08ff13",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 44458,
            "upload_time": "2024-08-26T09:19:50",
            "upload_time_iso_8601": "2024-08-26T09:19:50.104601Z",
            "url": "https://files.pythonhosted.org/packages/aa/de/1edd12185f2eb950a8a65042e7c5e1dec31aa2b04a78af8d6c72be22c246/pyalex-0.15.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-26 09:19:50",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyalex"
}
        
Elapsed time: 3.20674s