pubmed
Get literature information via PubMed ID, such as the author, title, journal_name, pub_date and so on.
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: ncbi.nlm.nih.gov -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (5.1%) to scientific vocabulary
Keywords
Repository
Get literature information via PubMed ID, such as the author, title, journal_name, pub_date and so on.
Basic Info
Statistics
- Stars: 17
- Watchers: 5
- Forks: 2
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
pubmed is used to:
Get literature information via PubMed ID, such as the author, title, journalname, pubdate and so on.
Read csv file downloaded from pubmed search page.

Install
pip install pubmed
Usage
Query Online
```python from pubmed import PubMed
http://www.ncbi.nlm.nih.gov/pubmed/26471457
pm = PubMed(26471457)
print pm.title print pm.authors print pm.pubdate print pm.journalname print pm.journalfullname
or
print pm.gettitle() print pm.getauthors() print pm.getpubdate() print pm.getjournalname() print pm.getjournalfull_name()
or
print pm.getTitle() print pm.getAuthors() print pm.getPubDate() print pm.getJournalName() print pm.getJournalFullName() ```
Read Download File
read csv files download from pubmed ```python from pubmed import OpenCsv
f = OpenCsv('./pubmed_result.csv')
for p in f: print(p.title) print(p.authors) print(p.PMID) ```
demo
```
pm = PubMed(26471457) pm.authors ['Tu W', 'Zhang H', 'Liu J', 'Hu QN'] pm.title 'BioSynther: a customized biosynthetic potential explorer.' pm.pub_date '2016 Feb 1'
```
Owner
- Name: WeizhongTu
- Login: twz915
- Kind: user
- Location: Beijing, China
- Company: Alibaba
- Website: http://www.tuweizhong.com
- Repositories: 91
- Profile: https://github.com/twz915
like coding, all kinds of IT news
GitHub Events
Total
Last Year
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| WeizhongTu | t****g@1****m | 6 |
| Weizhong Tu | m****l@t****m | 3 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 425 last-month
- Total dependent packages: 0
- Total dependent repositories: 2
- Total versions: 3
- Total maintainers: 1
pypi.org: pubmed
Get literature information via PubMed ID
- Homepage: http://github.com/twz915/pubmed
- Documentation: https://pubmed.readthedocs.io/
- License: MIT
-
Latest release: 0.0.1
published over 2 years ago
Rankings
Maintainers (1)
Dependencies
- beautifulsoup4 *
- pyquery *