Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md with citing publications case and better wording #55

Merged
merged 2 commits into from
Dec 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ with open(Path("works.json")) as f:

A list of awesome use cases of the OpenAlex dataset.

### Cited publications (referenced works)
### Cited publications (works referenced by this paper, outgoing citations)

```python
from pyalex import Works
Expand All @@ -384,6 +384,13 @@ w = Works()["W2741809807"]
Works()[w["referenced_works"]]
```

### Citing publications (other works that reference this paper, incoming citations)

```
from pyalex import Works
Works().filter(cites="W2741809807").get()
```

### Get works of a single author

```python
Expand Down Expand Up @@ -442,7 +449,7 @@ R users can use the excellent [OpenAlexR](https://github.com/ropensci/openalexR)

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

This library is maintained by [J535D165](https://github.com/J535D165) and [PeterLombaers](https://github.com/PeterLombaers).
This library is maintained by [J535D165](https://github.com/J535D165) and [PeterLombaers](https://github.com/PeterLombaers).
Feel free to reach out with questions, remarks, and suggestions. The
[issue tracker](/issues) is a good starting point. You can also reach out via
[jonathandebruinos@gmail.com](mailto:jonathandebruinos@gmail.com).
Loading