Version 1.0.0
Created by Graham Waters
- Table of Contents
- Description
- Usage
- License
- Contributing
- Tests
- Questions
- Instructions
- Repositories that we hope to integrate with in the future
This simple tool scrapes drug names from druginfo.nlm.nih.gov
using bs4
and requests
.
This script is designed to pull drug names from the website and return a pandas dataframe for use in various applications. I am not responsible for any misuse of this script. It implements a sleeping time to limit the rate of requests to the website.
from drug_scraper import DrugScraper
ds = DrugScraper()
df = ds.get_drug_names()
This project is licensed under the ${data.license} license.
${data.contributing}
To run tests, run the following command:
${data.tests}
See my profile for contact information.
Scrapes Drug names from druginfo.nlm.nih.gov using bs4 and requests.
This script is designed to pull drug names from the website and return a pandas dataframe for use in various applications. I am not responsible for any misuse of this script. It implements a sleeping time to limit the rate of requests to the website.