Baselight

Comprehensive Drug Information Dataset

The "Pharmaceutical Product Data Repository" is a comprehensive dataset.

@kaggle.anoopjohny_comprehensive_drug_information_dataset

Drugdata
@kaggle.anoopjohny_comprehensive_drug_information_dataset.drugdata

  • 29.69 KB
  • 220 rows
  • 20 columns
drug_id

Drug ID

drug_name

Drug Name

generic_name

Generic Name

drug_class

Drug Class

indications

Indications

dosage_form

Dosage Form

strength

Strength

route_of_administration

Route Of Administration

mechanism_of_action

Mechanism Of Action

side_effects

Side Effects

contraindications

Contraindications

interactions

Interactions

warnings_and_precautions

Warnings And Precautions

pregnancy_category

Pregnancy Category

storage_conditions

Storage Conditions

manufacturer

Manufacturer

approval_date

Approval Date

availability

Availability

ndc

NDC

price

Price

1AspirinAcetylsalicylic AcidAnalgesicHeadacheTablet325 mgOralInhibits prostaglandin synthesisStomach irritationAllergy to NSAIDsAnticoagulants: increased bleeding riskGastric ulcers: risk of bleedingCategory CRoom temperaturePharmaCorp15-01-2022OTC123456789015.99
2AmoxicillinAmoxicillinAntibioticBacterial InfectionsCapsule500 mgOralInhibits bacterial cell wall synthesisNausea Allergic reactionsPenicillin: reduced efficacyTake with food to reduce stomach upsetCategory BRoom temperatureMediPharm20-11-2021Prescription2345678901212.49
3LisinoprilLisinoprilAntihypertensiveHypertensionTablet10 mgOralBlocks conversion of angiotensin I to angiotensin IICough Kidney problemsDiuretics: increased risk of kidney problemsMonitor kidney function regularlyCategory DRoom temperatureHealthMeds05-03-2022Prescription345678901238.75
4AlbuterolAlbuterolBronchodilatorAsthmaInhaler100 mcg/inhalationInhalationStimulates beta-2 adrenergic receptorsTremor Rapid heart rateBeta-blockers: decreased effectivenessUse as needed for acute asthma symptomsCategory CRoom temperatureRespirePharma10-08-2021Prescription4567890123422.99
5OmeprazoleOmeprazoleProton Pump InhibitorAcid RefluxCapsule20 mgOralReduces stomach acid productionHeadache Abdominal painClopidogrel: reduced effectivenessTake before a mealCategory CRoom temperatureMediCare30-05-2022OTC567890123456.25
6LevothyroxineLevothyroxineHormoneThyroid DisorderTablet50 mcgOralReplaces or supplements thyroid hormoneDizziness Heart palpitationsAdrenal insufficiency: monitor carefullyTake on an empty stomachCategory ARoom temperatureEndoHealth18-02-2022Prescription678901234569.99
7SimvastatinSimvastatinCholesterol-loweringHyperlipidemiaTablet20 mgOralInhibits cholesterol synthesisMuscle pain Liver problemsCYP3A4 inhibitors: increased risk of side effectsAvoid grapefruit juiceCategory XRoom temperaturePharmaCare05-10-2021Prescription789012345677.85
8MetforminMetforminOral AntidiabeticType 2 DiabetesTablet1000 mgOralDecreases glucose production by the liverDiarrhea Lactic acidosisKidney problems: avoid in severe impairmentTake with mealsCategory BRoom temperatureDiabetesRx22-04-2022Prescription890123456784.5
9IbuprofenIbuprofenNSAIDPain and InflammationTablet200 mgOralInhibits prostaglandin synthesisUpset stomach GI bleedingAllergy to NSAIDsAnticoagulants: increased bleeding riskCategory CRoom temperatureReliefMeds08-09-2021OTC901234567893.15
10CiprofloxacinCiprofloxacinFluoroquinoloneBacterial InfectionsTablet500 mgOralInhibits bacterial DNA synthesisNausea Tendon ruptureAntacids: reduced effectivenessTake 2 hours before or 6 hours after antacidsCategory CRoom temperaturePharmaX30-12-2021Prescription1234567890218.75

CREATE TABLE drugdata (
  "drug_id" BIGINT,
  "drug_name" VARCHAR,
  "generic_name" VARCHAR,
  "drug_class" VARCHAR,
  "indications" VARCHAR,
  "dosage_form" VARCHAR,
  "strength" VARCHAR,
  "route_of_administration" VARCHAR,
  "mechanism_of_action" VARCHAR,
  "side_effects" VARCHAR,
  "contraindications" VARCHAR,
  "interactions" VARCHAR,
  "warnings_and_precautions" VARCHAR,
  "pregnancy_category" VARCHAR,
  "storage_conditions" VARCHAR,
  "manufacturer" VARCHAR,
  "approval_date" VARCHAR,
  "availability" VARCHAR,
  "ndc" BIGINT,
  "price" DOUBLE
);

Share link

Anyone who has the link will be able to view this.