Metadata-Version: 2.1
Name: pubmed-download
Version: 0.2.1
Summary: download pdf by pmid
Home-page: https://github.com/decouples/pubmed_download
Author: lin.li
Author-email: lilinxr@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Requires-Dist: pandas
Requires-Dist: lxml
Requires-Dist: requests
Requires-Dist: PyPDF2
Requires-Dist: bs4

### Download PDF by pmid

[github](https://github.com/decouples/pubmed_download)

- install

```shell
pip install pubmed_download
```

example:
```python
# -*- encoding:utf-8 -*-
from pubmed_download import DownloadPdf


p_list = ['29632648',
          '22640600',
          '25898960',
          '27780853']

download_path = r"D:/data"
DownloadPdf(download_path, p_list).run()

# pdf files will store in D:/data/{pmid}.pdf
```

