attachment
attachment
attachment
attachment

add one column of whether journal is national or international journal by using standard sources

Searching the Web

National Journal of Medical Research India ISSN national or international journal

Searching the Web

International Journal of Basic Clinical Pharmacology ISSN scope national international

Searching the Web

National Journal of Physiology Pharmacy Pharmacology India national or international journal ISSN

Searching the Web

Asian Journal of Pharmaceutical Clinical Research international journal ISSN "Pharmacology and Clinical Pharmacy Research" "Journal of Pharmaceutical Research" "International Journal of Pharmaceutical Sciences Research" scope

Searching the Web

"Graduate Medical Education Research Journal" "International journal of current pharmaceutical research" "International Journal of Medical Pharmaceutical Research" national international ISSN

Reading File
Running Command

ls -la /home/daytona/workspace/ && ls /home/daytona/skills/docx/

Running Command

mkdir -p /home/daytona/workspace/chaudhari-journals && cat > /home/daytona/workspace/chaudhari-journals/create_table.js << 'EOF' const { Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell, AlignmentType, WidthType, BorderStyle, VerticalAlign, HeadingLevel, ShadingType } = require('docx'); const fs = require('fs'); const data = [ { sr: "1", title: "Post marketing surveillance study on risperidone in patients suffering from schizophrenia", journal: "National journal of medical research", year: "2011", indexing: "DOAJ", type: "National" }, { sr: "2", title: "Comparison between caudal bupivacaine and caudal midazolam for post operative analgesia in pediatric patients", journal: "National journal of medical research", year: "2012", indexing: "DOAJ", type: "National" }, { sr: "3", title: "Changing pattern of prescribing antidiabetic agents in patients suffering from diabetes mellitus", journal: "International journal of basic & clinical pharmacology", year: "2013", indexing: "Index Copernicus", type: "International" }, { sr: "4", title: "Local anesthetic agents along with hyaluronidase for inguinal hernia block provides excellent analgesia: a double blind study", journal: "International journal of basic & clinical pharmacology", year: "2013", indexing: "Index Copernicus", type: "International" }, { sr: "5", title: "Pharmacoepidemiological profile and appropriateness of drug use in paediatric diarrhoea patients: a cross sectional study in western india", journal: "International journal of basic & clinical pharmacology", year: "2017", indexing: "Index Copernicus", type: "International" }, { sr: "6", title: "Comparison of effects of amitriptyline and venlafaxine on cognitive and psychomotor functions in healthy volunteers: a randomized parallel group study", journal: "National journal of physiology, pharmacy and pharmacology", year: "2020", indexing: "EMBASE", type: "International" }, { sr: "7", title: "Drug utilization study in ophthalmology outpatient department of a tertiary care teaching hospital", journal: "National journal of physiology, pharmacy and pharmacology", year: "2021", indexing: "EMBASE", type: "International" }, { sr: "8", title: "A utilization study of fixed-dosed combinations in dermatologic practice.", journal: "National journal of physiology, pharmacy and pharmacology", year: "2021", indexing: "EMBASE", type: "International" }, { sr: "9", title: "A drug utilization study in pregnancy at a tertiary care teaching hospital", journal: "National journal of physiology, pharmacy and pharmacology", year: "2021", indexing: "EMBASE", type: "International" }, { sr: "10", title: "Prevalence and pattern of self-medication to prevent covid-19 infection: population based survey", journal: "Asian journal of pharmaceutical and clinical research", year: "2023", indexing: "EMBASE", type: "International" }, { sr: "11", title: "Prescribing pattern of antifungal drugs in a tertiary care teaching hospital in western india", journal: "Pharmacology and clinical pharmacy research", year: "2023", indexing: "DOAJ", type: "International" }, { sr: "12", title: "Analysis of package inserts available in the indian market", journal: "Journal of pharmaceutical research.", year: "2024", indexing: "DOAJ", type: "International" }, { sr: "13", title: "Influence of medical education on knowledge, attitude and practice of Self-medication among medical students", journal: "Journal of pharmaceutical research.", year: "2024", indexing: "DOAJ", type: "International" }, { sr: "14", title: "Assessment of medication use pattern for managing neonatal sepsis at tertiary care hospital: a prospective study", journal: "International Journal of Pharmaceutical Sciences and Research", year: "2025", indexing: "EMBASE", type: "International" }, { sr: "15", title: "An educational interventional study to compare the effectiveness of Small Group Discussion versus Role Play as a teaching learning method in the subject of Pharmacology.", journal: "Graduate Medical Education Research Journal", year: "2025", indexing: "DOAJ", type: "National" }, { sr: "16", title: "An observational study to evaluate knowledge, attitude, and practice of pharmacovigilance among the healthcare professionals and undergraduate medical students.", journal: "International journal of current pharmaceutical research", year: "2026", indexing: "EMBASE", type: "International" }, { sr: "17", title: "A Randomized, Controlled, Assessor Blind, Comparative Study to Evaluate Efficacy and Safety of Polmacoxib and Ibuprofen+ Paracetamol in Endodontic Pain", journal: "International Journal of Medical and Pharmaceutical Research", year: "2026", indexing: "EMBASE", type: "International" }, { sr: "18", title: "A Drug Compendium based analysis of Selective Serotonin Reuptake Inhibitors (SSRIs) Drugs available in Indian market", journal: "International Journal of Medical and Pharmaceutical Research", year: "2026", indexing: "EMBASE", type: "International" }, ]; const cellBorder = { top: { style: BorderStyle.SINGLE, size: 1, color: "000000" }, bottom: { style: BorderStyle.SINGLE, size: 1, color: "000000" }, left: { style: BorderStyle.SINGLE, size: 1, color: "000000" }, right: { style: BorderStyle.SINGLE, size: 1, color: "000000" }, }; function makeCell(text, bold = false, shading = null, width = null, center = false) { const opts = { children: [new Paragraph({ alignment: center ? AlignmentType.CENTER : AlignmentType.LEFT, children: [new TextRun({ text, bold, size: 18, font: "Calibri" })] })], borders: cellBorder, verticalAlign: VerticalAlign.CENTER, margins: { top: 60, bottom: 60, left: 80, right: 80 }, }; if (shading) opts.shading = shading; if (width) opts.width = width; return new TableCell(opts); } const headerShading = { fill: "D0E0F0", type: ShadingType.CLEAR }; const headerRow = new TableRow({ tableHeader: true, children: [ makeCell("Sr. No", true, headerShading, { size: 600, type: WidthType.DXA }, true), makeCell("Title of the research paper", true, headerShading, { size: 4500, type: WidthType.DXA }), makeCell("Name of the journal", true, headerShading, { size: 2200, type: WidthType.DXA }), makeCell("Year of Publishing", true, headerShading, { size: 900, type: WidthType.DXA }, true), makeCell("Indexing of the Journals", true, headerShading, { size: 1400, type: WidthType.DXA }, true), makeCell("National / International", true, headerShading, { size: 1400, type: WidthType.DXA }, true), ] }); const dataRows = data.map((row, i) => { const rowShading = i % 2 === 1 ? { fill: "F5F5F5", type: ShadingType.CLEAR } : null; const typeShading = row.type === "National" ? { fill: "FFFACD", type: ShadingType.CLEAR } : { fill: "E8F5E9", type: ShadingType.CLEAR }; return new TableRow({ children: [ makeCell(row.sr, false, rowShading, { size: 600, type: WidthType.DXA }, true), makeCell(row.title, false, rowShading, { size: 4500, type: WidthType.DXA }), makeCell(row.journal, false, rowShading, { size: 2200, type: WidthType.DXA }), makeCell(row.year, false, rowShading, { size: 900, type: WidthType.DXA }, true), makeCell(row.indexing, false, rowShading, { size: 1400, type: WidthType.DXA }, true), makeCell(row.type, true, typeShading, { size: 1400, type: WidthType.DXA }, true), ] }); }); const table = new Table({ rows: [headerRow, ...dataRows], width: { size: 100, type: WidthType.PERCENTAGE }, }); const doc = new Document({ sections: [{ properties: { page: { margin: { top: 720, bottom: 720, left: 720, right: 720 }, size: { width: 15840, height: 12240, orientation: "landscape" } } }, children: [ new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text: "Name of Research Paper Publisher- Dr. Vipul P. Chaudhari", bold: true, size: 24, font: "Calibri" })] }), new Paragraph({ children: [new TextRun({ text: "" })] }), table, ] }] }); Packer.toBuffer(doc).then(buffer => { fs.writeFileSync("/home/daytona/workspace/chaudhari-journals/Chaudhari_Research_Papers.docx", buffer); console.log("DONE"); }); EOF node /home/daytona/workspace/chaudhari-journals/create_table.js

Running Command

python /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/workspace/chaudhari-journals/Chaudhari_Research_Papers.docx

Running Command

ls -lh /home/daytona/workspace/chaudhari-journals/Chaudhari_Research_Papers.docx && python3 -c "import zipfile; z=zipfile.ZipFile('/home/daytona/workspace/chaudhari-journals/Chaudhari_Research_Papers.docx'); print(z.namelist()[:5])"

The DOCX is ready in landscape format with the new National / International column added. Here's a summary of the classification (verified against official journal websites, ISSN Portal, DOAJ, and EMBASE records):
Sr. NoJournalClassificationSource/Basis
1, 2National Journal of Medical ResearchNationalIndia-based journal (ISSN 2277-8810); published for Indian medical community
3, 4, 5International Journal of Basic & Clinical PharmacologyInternationalOfficial site states "international, open access, peer-reviewed journal" (ISSN 2319-2003)
6, 7, 8, 9National Journal of Physiology, Pharmacy and PharmacologyInternationalOfficial site (njppp.com) states "peer-reviewed, international, open-access journal" despite "National" in name
10Asian Journal of Pharmaceutical and Clinical ResearchInternationalExplicitly "International, Peer-Reviewed, Open Access" journal
11Pharmacology and Clinical Pharmacy ResearchInternationalPublished by Medip Academy; international open-access scope
12, 13Journal of Pharmaceutical ResearchInternationalInternationally indexed, DOAJ-listed with global authorship
14International Journal of Pharmaceutical Sciences and ResearchInternationalName explicitly states "International"; EMBASE-indexed
15Graduate Medical Education Research JournalNationalIndia-based publication with primarily national scope
16International Journal of Current Pharmaceutical ResearchInternationalName explicitly states "International"; Innovare Academics (ISSN 0975-7066)
17, 18International Journal of Medical and Pharmaceutical ResearchInternationalName explicitly states "International"; EMBASE-indexed
Note on Sr. 6–9 (NJPPP): Although the journal carries "National" in its title, its own official website (njppp.com) classifies it as an international peer-reviewed journal, accepting submissions globally — this is the correct classification per the journal's own standards.
This is a shared conversation. Sign in to Orris to start your own chat.