CoolFace
Datasetpublic

tkawen/algerian-drug-nomenclature

🇩🇿 Algerian Drug Nomenclature — Nomenclature Nationale des Médicaments A clean, structured, PII-free reference dataset of pharmaceutical products authorised for the Algerian market, derived from the official Nomenclature Nationale des Médicaments (Ministère de la Santé, Algeria). This is reference product data — registration numbers, INNs, brand names, dosages, manufacturers, and reimbursement status. It contains no personal, patient, or transactional data of any kind.… See the full description on the dataset page: https://huggingface.co/datasets/tkawen/algerian-drug-nomenclature.

sourceHugging Facecc-by-4.0updated 4mo agoView on Hugging Face
0likes38downloads
Dataset Card

🇩🇿 Algerian Drug Nomenclature — Nomenclature Nationale des Médicaments

A clean, structured, PII-free reference dataset of pharmaceutical products authorised for the Algerian market, derived from the official Nomenclature Nationale des Médicaments (Ministère de la Santé, Algeria).

This is reference product data — registration numbers, INNs, brand names, dosages, manufacturers, and reimbursement status. It contains no personal, patient, or transactional data of any kind.

Published by [TKAWEN](https://huggingface.co/tkawen) as part of our open-data program: well-curated, openly licensed datasets for Algerian and Maghrebi AI.

📊 At a glance

Records4,627 registered products
Distinct INNs (active substances)1,365
Manufacturers / decision holders827
Reimbursable (CNAS/CASNOS)3,268
Formatsingle UTF-8 CSV
PIInone

🧬 Schema

ColumnDescription
idRow identifier
registration_numberNational registration number (numéro d'enregistrement)
codeNomenclature code
innInternational Non-proprietary Name — the active substance (DCI)
brand_nameCommercial brand name (nom de marque)
formGalenic form (tablet, syrup, injection…)
dosageStrength / concentration
packagingConditioning (conditionnement)
listRegulatory list (Liste I / Liste II…)
p1, p2Dispensing setting flags (HOP = hospital, OFF = officine/pharmacy)
observationFree-text notes
laboratoryHolder of the registration decision
laboratory_countryCountry of the holder laboratory
registration_date_initialInitial registration date
registration_date_finalLatest registration date
typeProduct type (e.g. Ge = generic)
statusRegistration status
shelf_lifeStated stability / shelf life
price_decisionPrice carried on the registration decision
reimbursableReimbursement eligibility (OUI / blank)

🚀 Usage

python
from datasets import load_dataset

ds = load_dataset("tkawen/algerian-drug-nomenclature", split="train")
print(ds[0])

# e.g. every reimbursable generic
generics = ds.filter(lambda r: r["type"] == "Ge" and r["reimbursable"] == "OUI")
python
import pandas as pd
df = pd.read_csv("hf://datasets/tkawen/algerian-drug-nomenclature/algerian_drug_nomenclature.csv")
df.groupby("inn").size().sort_values(ascending=False).head(20)

💡 Intended uses

  • —Pharmacy & health-tech software — drug autocomplete, code/INN lookup, CHIFA/CNAS-compatible product references.
  • —Pharmacovigilance & research — generic-vs-brand mapping, manufacturer landscape, reimbursement analysis.
  • —NLP for the Maghreb — entity normalisation of Algerian drug names (FR/AR), retrieval and matching.
  • —Education — a real, well-shaped tabular dataset for teaching.

⚠️ Limitations & responsible use

  • —This is a historical snapshot of the national nomenclature, not a live regulatory feed. Registration status, prices, and reimbursement can change. Always verify against the current official source before any clinical, dispensing, or billing decision.
  • —Prices are as carried on the registration decision and are not a real-time market price.
  • —Not medical advice. Not a substitute for the prescriber, the pharmacist, or official CNAS/CASNOS rules.

📜 Source & license

  • —Primary source: Nomenclature Nationale des Médicaments — Ministère de la Santé, République Algérienne (official public nomenclature).
  • —Cleaned, normalised, and re-published with English column names by TKAWEN.
  • —License: CC BY 4.0 — free to use with attribution.

🔒 Privacy

By design this dataset is reference product data only. It contains no patient data, no prescriptions, no transactions, and no personal information. This reflects TKAWEN's core principle: anonymized features and reference data, never PII.


<div align="center">

TKAWEN · Engineering Trust · Empowering Minds · Algeria 🇩🇿 → Maghreb → World

🌍 tkawen.com · 🧠 ask.tkawen.com · 🛡️ trust.tkawen.com

</div>