Save this pdf in your memory
ls -la /tmp/workspace/ && mkdir -p /tmp/workspace/books && cp "/tmp/workspace/attachments/27a274a5-7874-471d-b406-89d6ad628b8c/Tara V Shanbhag - Pharmacology for Dentistry - 2nd Edition - www.thedentalhub.org.in.pdf" "/tmp/workspace/books/Tara_V_Shanbhag_Pharmacology_for_Dentistry_2nd_Ed.pdf" && echo "Done" && ls -lh /tmp/workspace/books/
python3 -c " from pypdf import PdfReader reader = PdfReader('/tmp/workspace/books/Tara_V_Shanbhag_Pharmacology_for_Dentistry_2nd_Ed.pdf') meta = reader.metadata print(f'Pages: {len(reader.pages)}') print(f'Title: {meta.title if meta else \"N/A\"}') print(f'Author: {meta.author if meta else \"N/A\"}') print(f'Subject: {meta.subject if meta else \"N/A\"}') # Preview first page text first_page = reader.pages[0].extract_text() print('--- First page preview ---') print(first_page[:500]) "
/tmp/workspace/books/Tara_V_Shanbhag_Pharmacology_for_Dentistry_2nd_Ed.pdf| Detail | Info |
|---|---|
| Title | Pharmacology for Dentistry |
| Authors | Tara Shanbhag, Smita Shenoy, Veena Nayak |
| Edition | 2nd Edition |
| Pages | 430 |
| File Size | 4.3 MB |
Search all information provided in this textbook about ondansetron
python3 -c " from pypdf import PdfReader reader = PdfReader('/tmp/workspace/books/Tara_V_Shanbhag_Pharmacology_for_Dentistry_2nd_Ed.pdf') results = [] for i, page in enumerate(reader.pages): text = page.extract_text() if text and 'ondansetron' in text.lower(): results.append((i+1, text)) print(f'Found ondansetron on {len(results)} pages:') for pg, txt in results: print(f'\\n===== PAGE {pg} =====') print(txt) "
Anticancer drugs / radiotherapy → Tissue damage in gut → Release of serotonin (5-HT) from enterochromaffin cells of intestinal mucosa → Stimulates vagal afferents via 5-HT₃ receptors → Impulses to CTZ and STN → Vomiting ← blocked by 5-HT₃ antagonists
| Use | Details |
|---|---|
| Anticancer drug-induced nausea & vomiting | Most effective agent; first-line choice |
| Radiation sickness (post-radiation vomiting) | Effective |
| Postoperative vomiting | Effective |
| Hyperemesis of pregnancy | Effective |
| Alcohol consumption reduction | As a 5-HT₃ antagonist, reduces alcohol consumption (used in alcohol aversion therapy) |
| Motion sickness | Ineffective |
| Drug | Advantage over Ondansetron |
|---|---|
| Metoclopramide | Prokinetic; useful pre-surgery for gastric emptying |
| Domperidone | Preferred in children; safe in levodopa therapy |
| Granisetron | More potent and longer acting than ondansetron |
| Neuroleptics | NOT as effective as ondansetron in cytotoxic/radiation-induced vomiting |
| Form | Dose |
|---|---|
| Tablet (oral) | 8 mg PO |
| Injection (IV) | 8 mg IV |