Connect RAG citations to extended papers and guidelines
Browse files
cloudflare/src/index.js
CHANGED
|
@@ -14,7 +14,8 @@ async function hash(s){const b=await crypto.subtle.digest('SHA-256',new TextEnco
|
|
| 14 |
function baseAnswer(q){q=(q||'').toLowerCase();return (KB.find(x=>q.includes(x[0]))?.[1]||'ابتدا ایمنی، شدت علائم، مصرف مواد، خواب، پایبندی و علل طبی بررسی شوند. برای پاسخ دقیقتر موضوع و بازه زمانی را بدون اطلاعات هویتی بنویسید.')+'\n\n⚠️ جایگزین ارزیابی پزشک نیست.'}
|
| 15 |
function clean(s=''){return String(s).replace(/<[^>]+>/g,' ').replace(/\s+/g,' ').slice(0,4000)}
|
| 16 |
async function scanPapers(env){const q=encodeURIComponent('dual diagnosis psychosis substance use treatment');const r=await fetch(`https://api.crossref.org/works?query=${q}&filter=from-pub-date:2023-01-01,until-pub-date:2026-08-06,type:journal-article&select=DOI,title,abstract,container-title,published,published-print,URL&sort=relevance&order=desc&rows=20`,{headers:{'user-agent':'DualDiagnosisEvidenceBot/1.0 (mailto:research@example.invalid)'}});if(!r.ok)throw Error('Crossref '+r.status);const items=(await r.json()).message.items;let n=0;for(const x of items){const doi=x.DOI||x.URL;if(!doi)continue;const title=clean(x.title?.[0]||'بدون عنوان'),abstract=clean(x.abstract||''),journal=clean(x['container-title']?.[0]||''),parts=x['published-print']?.['date-parts']?.[0]||x.published?.['date-parts']?.[0]||[],published=parts.join('-'),url=x.URL||`https://doi.org/${doi}`;await env.DB.prepare('INSERT INTO articles(doi,title,abstract,journal,published,url,source,fetched_at) VALUES(?,?,?,?,?,?,?,?) ON CONFLICT(doi) DO UPDATE SET title=excluded.title,abstract=excluded.abstract,journal=excluded.journal,published=excluded.published,url=excluded.url,fetched_at=excluded.fetched_at').bind(doi,title,abstract,journal,published,url,'Crossref',new Date().toISOString()).run();n++}return n}
|
| 17 |
-
async function papersFor(env,q){const lower=(q||'').toLowerCase(),map={'روان':'psychosis','سایکوز':'psychosis','ماده':'substance','اعتیاد':'addiction','لغزش':'relapse','خودکشی':'suicide','کانابیس':'cannabis','حشیش':'cannabis','درمان':'treatment'};const expanded=lower+' '+Object.entries(map).filter(([fa])=>lower.includes(fa)).map(x=>x[1]).join(' ');const terms=expanded.split(/\s+/).filter(x=>x.length>3).slice(-6);if(!terms.length)return (await env.DB.prepare('SELECT title,abstract,journal,published,url FROM
|
|
|
|
| 18 |
async function handle(req,env){const u=new URL(req.url);if(req.method==='OPTIONS')return new Response(null,{headers:{'access-control-allow-origin':'*','access-control-allow-headers':'content-type'}});if(u.pathname==='/')return new Response(HTML,{headers:{'content-type':'text/html;charset=utf-8','x-content-type-options':'nosniff'}});
|
| 19 |
if(u.pathname==='/api/dashboard'){const [a,o,h,al,ar,p]=await Promise.all([env.DB.prepare('SELECT count(*) n FROM assessments').first(),env.DB.prepare("SELECT count(*) n FROM alerts WHERE status='open'").first(),env.DB.prepare("SELECT count(*) n FROM assessments WHERE level IN ('بالا','خیلی بالا','بحرانی')").first(),env.DB.prepare('SELECT created_at,patient_id,score,level FROM assessments ORDER BY created_at DESC LIMIT 30').all(),env.DB.prepare("SELECT created_at,patient_id,level,status FROM alerts WHERE status='open' ORDER BY created_at DESC LIMIT 30").all(),env.DB.prepare('SELECT count(*) n FROM articles').first()]);return json({stats:{assessments:a.n,openAlerts:o.n,highRisk:h.n,articles:p.n},assessments:al.results,alerts:ar.results})}
|
| 20 |
if(u.pathname==='/api/articles')return json({articles:(await env.DB.prepare('SELECT title,journal,published,url,source FROM articles ORDER BY published DESC LIMIT 50').all()).results});
|
|
@@ -27,6 +28,6 @@ if(req.method==='POST'&&u.pathname==='/api/academy/certificate'){const d=await r
|
|
| 27 |
if(u.pathname.startsWith('/api/certificate/')){const code=u.pathname.split('/').pop(),c=await env.DB.prepare('SELECT audience,issued_at,modules_count,verification_code FROM certificates WHERE verification_code=?').bind(code).first();return c?json({valid:true,...c,notice:'Educational participation certificate; not a clinical license.'}):json({valid:false},404)}
|
| 28 |
if(req.method==='POST'&&u.pathname==='/api/admin/scan'){if(req.headers.get('authorization')!==`Bearer ${env.ADMIN_TOKEN}`)return json({error:'unauthorized'},401);return json({imported:await scanPapers(env)})}
|
| 29 |
if(req.method==='POST'&&u.pathname==='/api/risk'){const d=await req.json();let score=0;for(const k in W)score+=Math.max(0,Math.min(4,+d[k]||0))*W[k];let level=score>=45?'خیلی بالا':score>=28?'بالا':score>=14?'متوسط':'پایین';if(+d.suicide===4||+d.withdrawal===4)level='بحرانی';const actions={بحرانی:'ارزیابی فوری حضوری/اورژانس؛ بیمار تنها نماند.','خیلی بالا':'بازبینی همانروز توسط روانپزشک.',بالا:'تماس با تیم درمان طی ۲۴ ساعت.',متوسط:'بازبینی بالینی طی ۷۲ ساعت.',پایین:'ادامه پایش برنامهریزیشده.'};const pid=await hash(env.PATIENT_SALT+':'+(d.patientRef||crypto.randomUUID())),id=crypto.randomUUID(),now=new Date().toISOString();await env.DB.prepare('INSERT INTO assessments VALUES(?,?,?,?,?,?)').bind(id,pid,now,score,level,JSON.stringify(d)).run();if(['بالا','خیلی بالا','بحرانی'].includes(level))await env.DB.prepare('INSERT INTO alerts VALUES(?,?,?,?,?,?)').bind(crypto.randomUUID(),id,pid,now,level,'open').run();return json({id,score,level,action:actions[level],storage:'Cloudflare D1',disclaimer:'جایگزین ارزیابی پزشک نیست.'})}
|
| 30 |
-
if(req.method==='POST'&&u.pathname==='/api/chat'){const started=Date.now(),body=await req.json(),question=body.question,role=['admin','doctor','family','patient'].includes(body.role)?body.role:'patient';if(!question)return json({error:'لطفاً سؤال را بنویسید.'},400);const key=await hash(role+':'+question.trim().toLowerCase()),cached=await env.DB.prepare("SELECT answer,source FROM rag_cache WHERE cache_key=? AND created_at>datetime('now','-7 days')").bind(key).first();
|
| 31 |
return json({error:'مسیر پیدا نشد'},404)}
|
| 32 |
export default{fetch(req,env){return handle(req,env).catch(e=>json({error:'خطای داخلی',detail:String(e)},500))},async scheduled(event,env,ctx){ctx.waitUntil(scanPapers(env))}};
|
|
|
|
| 14 |
function baseAnswer(q){q=(q||'').toLowerCase();return (KB.find(x=>q.includes(x[0]))?.[1]||'ابتدا ایمنی، شدت علائم، مصرف مواد، خواب، پایبندی و علل طبی بررسی شوند. برای پاسخ دقیقتر موضوع و بازه زمانی را بدون اطلاعات هویتی بنویسید.')+'\n\n⚠️ جایگزین ارزیابی پزشک نیست.'}
|
| 15 |
function clean(s=''){return String(s).replace(/<[^>]+>/g,' ').replace(/\s+/g,' ').slice(0,4000)}
|
| 16 |
async function scanPapers(env){const q=encodeURIComponent('dual diagnosis psychosis substance use treatment');const r=await fetch(`https://api.crossref.org/works?query=${q}&filter=from-pub-date:2023-01-01,until-pub-date:2026-08-06,type:journal-article&select=DOI,title,abstract,container-title,published,published-print,URL&sort=relevance&order=desc&rows=20`,{headers:{'user-agent':'DualDiagnosisEvidenceBot/1.0 (mailto:research@example.invalid)'}});if(!r.ok)throw Error('Crossref '+r.status);const items=(await r.json()).message.items;let n=0;for(const x of items){const doi=x.DOI||x.URL;if(!doi)continue;const title=clean(x.title?.[0]||'بدون عنوان'),abstract=clean(x.abstract||''),journal=clean(x['container-title']?.[0]||''),parts=x['published-print']?.['date-parts']?.[0]||x.published?.['date-parts']?.[0]||[],published=parts.join('-'),url=x.URL||`https://doi.org/${doi}`;await env.DB.prepare('INSERT INTO articles(doi,title,abstract,journal,published,url,source,fetched_at) VALUES(?,?,?,?,?,?,?,?) ON CONFLICT(doi) DO UPDATE SET title=excluded.title,abstract=excluded.abstract,journal=excluded.journal,published=excluded.published,url=excluded.url,fetched_at=excluded.fetched_at').bind(doi,title,abstract,journal,published,url,'Crossref',new Date().toISOString()).run();n++}return n}
|
| 17 |
+
async function papersFor(env,q){const lower=(q||'').toLowerCase(),map={'روان':'psychosis','سایکوز':'psychosis','ماده':'substance','اعتیاد':'addiction','لغزش':'relapse','خودکشی':'suicide','کانابیس':'cannabis','حشیش':'cannabis','درمان':'treatment','خانواده':'family','اوردوز':'overdose'};const expanded=lower+' '+Object.entries(map).filter(([fa])=>lower.includes(fa)).map(x=>x[1]).join(' ');const terms=expanded.split(/\s+/).filter(x=>x.length>3).slice(-6);if(!terms.length)return (await env.DB.prepare('SELECT title,abstract,journal,year AS published,url,corpus,treatment_tags FROM research_papers ORDER BY cited_by_count DESC LIMIT 5').all()).results;const where=terms.map(()=>'(lower(title) LIKE ? OR lower(abstract) LIKE ? OR lower(treatment_tags) LIKE ?)').join(' OR '),bind=terms.flatMap(t=>[`%${t}%`,`%${t}%`,`%${t}%`]);const found=(await env.DB.prepare(`SELECT title,abstract,journal,year AS published,url,corpus,treatment_tags FROM research_papers WHERE ${where} ORDER BY cited_by_count DESC LIMIT 5`).bind(...bind).all()).results;return found.length?found:(await env.DB.prepare('SELECT title,abstract,journal,year AS published,url,corpus,treatment_tags FROM research_papers ORDER BY cited_by_count DESC LIMIT 5').all()).results}
|
| 18 |
+
async function guidelinesFor(env,q){const lower=(q||'').toLowerCase(),keys=['opioid','methadone','stimulant','overdose','harm','psychosis','treatment','الکل','متادون','افیون','محرک','اوردوز','کاهش آسیب'];const terms=keys.filter(x=>lower.includes(x));if(!terms.length)return (await env.GUIDELINES_DB.prepare('SELECT title,organization,year,url,tags,status FROM guidelines ORDER BY year DESC LIMIT 3').all()).results;const where=terms.map(()=>'(lower(title) LIKE ? OR lower(tags) LIKE ?)').join(' OR '),bind=terms.flatMap(t=>[`%${t}%`,`%${t}%`]);return (await env.GUIDELINES_DB.prepare(`SELECT title,organization,year,url,tags,status FROM guidelines WHERE ${where} ORDER BY year DESC LIMIT 3`).bind(...bind).all()).results}
|
| 19 |
async function handle(req,env){const u=new URL(req.url);if(req.method==='OPTIONS')return new Response(null,{headers:{'access-control-allow-origin':'*','access-control-allow-headers':'content-type'}});if(u.pathname==='/')return new Response(HTML,{headers:{'content-type':'text/html;charset=utf-8','x-content-type-options':'nosniff'}});
|
| 20 |
if(u.pathname==='/api/dashboard'){const [a,o,h,al,ar,p]=await Promise.all([env.DB.prepare('SELECT count(*) n FROM assessments').first(),env.DB.prepare("SELECT count(*) n FROM alerts WHERE status='open'").first(),env.DB.prepare("SELECT count(*) n FROM assessments WHERE level IN ('بالا','خیلی بالا','بحرانی')").first(),env.DB.prepare('SELECT created_at,patient_id,score,level FROM assessments ORDER BY created_at DESC LIMIT 30').all(),env.DB.prepare("SELECT created_at,patient_id,level,status FROM alerts WHERE status='open' ORDER BY created_at DESC LIMIT 30").all(),env.DB.prepare('SELECT count(*) n FROM articles').first()]);return json({stats:{assessments:a.n,openAlerts:o.n,highRisk:h.n,articles:p.n},assessments:al.results,alerts:ar.results})}
|
| 21 |
if(u.pathname==='/api/articles')return json({articles:(await env.DB.prepare('SELECT title,journal,published,url,source FROM articles ORDER BY published DESC LIMIT 50').all()).results});
|
|
|
|
| 28 |
if(u.pathname.startsWith('/api/certificate/')){const code=u.pathname.split('/').pop(),c=await env.DB.prepare('SELECT audience,issued_at,modules_count,verification_code FROM certificates WHERE verification_code=?').bind(code).first();return c?json({valid:true,...c,notice:'Educational participation certificate; not a clinical license.'}):json({valid:false},404)}
|
| 29 |
if(req.method==='POST'&&u.pathname==='/api/admin/scan'){if(req.headers.get('authorization')!==`Bearer ${env.ADMIN_TOKEN}`)return json({error:'unauthorized'},401);return json({imported:await scanPapers(env)})}
|
| 30 |
if(req.method==='POST'&&u.pathname==='/api/risk'){const d=await req.json();let score=0;for(const k in W)score+=Math.max(0,Math.min(4,+d[k]||0))*W[k];let level=score>=45?'خیلی بالا':score>=28?'بالا':score>=14?'متوسط':'پایین';if(+d.suicide===4||+d.withdrawal===4)level='بحرانی';const actions={بحرانی:'ارزیابی فوری حضوری/اورژانس؛ بیمار تنها نماند.','خیلی بالا':'بازبینی همانروز توسط روانپزشک.',بالا:'تماس با تیم درمان طی ۲۴ ساعت.',متوسط:'بازبینی بالینی طی ۷۲ ساعت.',پایین:'ادامه پایش برنامهریزیشده.'};const pid=await hash(env.PATIENT_SALT+':'+(d.patientRef||crypto.randomUUID())),id=crypto.randomUUID(),now=new Date().toISOString();await env.DB.prepare('INSERT INTO assessments VALUES(?,?,?,?,?,?)').bind(id,pid,now,score,level,JSON.stringify(d)).run();if(['بالا','خیلی بالا','بحرانی'].includes(level))await env.DB.prepare('INSERT INTO alerts VALUES(?,?,?,?,?,?)').bind(crypto.randomUUID(),id,pid,now,level,'open').run();return json({id,score,level,action:actions[level],storage:'Cloudflare D1',disclaimer:'جایگزین ارزیابی پزشک نیست.'})}
|
| 31 |
+
if(req.method==='POST'&&u.pathname==='/api/chat'){const started=Date.now(),body=await req.json(),question=body.question,role=['admin','doctor','family','patient'].includes(body.role)?body.role:'patient';if(!question)return json({error:'لطفاً سؤال را بنویسید.'},400);const key=await hash(role+':'+question.trim().toLowerCase()),cached=await env.DB.prepare("SELECT answer,source FROM rag_cache WHERE cache_key=? AND created_at>datetime('now','-7 days')").bind(key).first();const [papers,guidelines]=await Promise.all([papersFor(env,question),guidelinesFor(env,question)]),context=(papers.map((p,i)=>`مقاله ${i+1}. ${p.title} (${p.journal}, ${p.published}) ${p.abstract||''} URL:${p.url}`).join('\n')+'\n'+guidelines.map((g,i)=>`استاندارد ${i+1}. ${g.title} (${g.organization}, ${g.year}) URL:${g.url} status:${g.status}`).join('\n')).slice(0,10000),roleGuide={patient:'برای بیمار با زبان ساده، امیدبخش و بدون دوز یا جزئیات حساس پاسخ بده.',family:'برای خانواده، اقدامات حمایتی، علائم هشدار و زمان تماس با پزشک را ساده توضیح بده؛ دوز نده.',doctor:'برای پزشک با زبان فنی، محدودیت شواهد و DOIها پاسخ بده؛ دوز فقط اگر در شواهد تأییدشده حاضر است و هرگز نسخه فردی نده.',admin:'فقط درباره عملکرد سامانه، داده، منابع و پایش پاسخ بده؛ توصیه درمانی نده.'},messages=[{role:'system',content:`به فارسی و فقط بر اساس شواهد دادهشده پاسخ بده. شماره مقاله را ذکر کن، عدم قطعیت را صریح بگو و جایگزین پزشک نشو. ${roleGuide[role]}`},{role:'user',content:`نقش مخاطب: ${role}\nپرسش: ${question}\nشواهد:\n${context}`}];let answer,provider='Cloudflare Workers AI';try{const x=await env.AI.run('@cf/meta/llama-3.1-8b-instruct-fast',{messages,max_tokens:500});answer=x.response}catch(e){provider='Hugging Face RAG';try{const r=await fetch('https://router.huggingface.co/v1/chat/completions',{method:'POST',headers:{Authorization:'Bearer '+env.HF_TOKEN,'content-type':'application/json'},body:JSON.stringify({model:env.HF_MODEL,messages,max_tokens:500})});const x=await r.json();answer=x.choices?.[0]?.message?.content}catch{}}if(!answer){answer=baseAnswer(question);provider='RAG داخلی'}await Promise.all([env.DB.prepare('INSERT OR REPLACE INTO rag_cache VALUES(?,?,?,?)').bind(key,answer,provider,new Date().toISOString()).run(),env.DB.prepare('INSERT INTO api_usage(endpoint,provider,latency_ms,success,created_at) VALUES(?,?,?,?,?)').bind('/api/chat',provider,Date.now()-started,1,new Date().toISOString()).run()]);return json({answer,role,source:provider,papers,guidelines,latency_ms:Date.now()-started})}
|
| 32 |
return json({error:'مسیر پیدا نشد'},404)}
|
| 33 |
export default{fetch(req,env){return handle(req,env).catch(e=>json({error:'خطای داخلی',detail:String(e)},500))},async scheduled(event,env,ctx){ctx.waitUntil(scanPapers(env))}};
|
data/articles/open_access_pdf_manifest.jsonl
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"openalex_id": "https://openalex.org/W3164324796", "title": "Age at onset of mental disorders worldwide: large-scale meta-analysis of 192 epidemiological studies", "corpus": "international", "doi": "https://doi.org/10.1038/s41380-021-01161-7", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.nature.com/articles/s41380-021-01161-7.pdf", "landing_page_url": "https://doi.org/10.1038/s41380-021-01161-7", "content_length_bytes": 1695820}
|
| 2 |
+
{"openalex_id": "https://openalex.org/W3048791385", "title": "Mental Health, Substance Use, and Suicidal Ideation During the COVID-19 Pandemic — United States, June 24–30, 2020", "corpus": "international", "doi": "https://doi.org/10.15585/mmwr.mm6932a1", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://www.cdc.gov/mmwr/volumes/69/wr/pdfs/mm6932a1-H.pdf", "landing_page_url": "https://doi.org/10.15585/mmwr.mm6932a1", "content_length_bytes": null}
|
| 3 |
+
{"openalex_id": "https://openalex.org/W4308369850", "title": "CDC Clinical Practice Guideline for Prescribing Opioids for Pain<b>—</b>United States, 2022", "corpus": "international", "doi": "https://doi.org/10.15585/mmwr.rr7103a1", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://www.cdc.gov/mmwr/volumes/71/rr/pdfs/rr7103a1-H.pdf", "landing_page_url": "https://doi.org/10.15585/mmwr.rr7103a1", "content_length_bytes": null}
|
| 4 |
+
{"openalex_id": "https://openalex.org/W3012261821", "title": "Drug and Opioid-Involved Overdose Deaths — United States, 2017–2018", "corpus": "international", "doi": "https://doi.org/10.15585/mmwr.mm6911a4", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://www.cdc.gov/mmwr/volumes/69/wr/pdfs/mm6911a4-H.pdf", "landing_page_url": "https://doi.org/10.15585/mmwr.mm6911a4", "content_length_bytes": null}
|
| 5 |
+
{"openalex_id": "https://openalex.org/W3087653702", "title": "A meta‐review of “lifestyle psychiatry”: the role of exercise, smoking, diet and sleep in the prevention and treatment of mental disorders", "corpus": "international", "doi": "https://doi.org/10.1002/wps.20773", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://kclpure.kcl.ac.uk/portal/en/publications/6d90a68c-7ccd-442a-8f79-c74b296c12fb", "content_length_bytes": null}
|
| 6 |
+
{"openalex_id": "https://openalex.org/W3127222350", "title": "Trends and Geographic Patterns in Drug and Synthetic Opioid Overdose Deaths — United States, 2013–2019", "corpus": "international", "doi": "https://doi.org/10.15585/mmwr.mm7006a4", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://www.cdc.gov/mmwr/volumes/70/wr/pdfs/mm7006a4-H.pdf", "landing_page_url": "https://doi.org/10.15585/mmwr.mm7006a4", "content_length_bytes": null}
|
| 7 |
+
{"openalex_id": "https://openalex.org/W3005454586", "title": "Comparative Effectiveness of Different Treatment Pathways for Opioid Use Disorder", "corpus": "international", "doi": "https://doi.org/10.1001/jamanetworkopen.2019.20622", "is_oa": true, "oa_status": "gold", "pdf_url": "https://jamanetwork.com/journals/jamanetworkopen/articlepdf/2760032/wakeman_2020_oi_190774.pdf", "landing_page_url": "https://doi.org/10.1001/jamanetworkopen.2019.20622", "content_length_bytes": null}
|
| 8 |
+
{"openalex_id": "https://openalex.org/W3160915496", "title": "The rise of illicit fentanyls, stimulants and the fourth wave of the opioid overdose crisis", "corpus": "international", "doi": "https://doi.org/10.1097/yco.0000000000000717", "is_oa": true, "oa_status": "hybrid", "pdf_url": null, "landing_page_url": "https://doi.org/10.1097/yco.0000000000000717", "content_length_bytes": null}
|
| 9 |
+
{"openalex_id": "https://openalex.org/W4225885267", "title": "Schizophrenia", "corpus": "international", "doi": "https://doi.org/10.1016/s0140-6736(21)01730-x", "is_oa": true, "oa_status": "bronze", "pdf_url": "http://www.thelancet.com/article/S014067362101730X/pdf", "landing_page_url": "https://doi.org/10.1016/s0140-6736(21)01730-x", "content_length_bytes": null}
|
| 10 |
+
{"openalex_id": "https://openalex.org/W3082177965", "title": "The American Psychiatric Association Practice Guideline for the Treatment of Patients With Schizophrenia", "corpus": "international", "doi": "https://doi.org/10.1176/appi.ajp.2020.177901", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://ajp.psychiatryonline.org/doi/pdf/10.1176/appi.ajp.2020.177901", "landing_page_url": "https://doi.org/10.1176/appi.ajp.2020.177901", "content_length_bytes": null}
|
| 11 |
+
{"openalex_id": "https://openalex.org/W4317811195", "title": "Cognitive impairment in schizophrenia: aetiology, pathophysiology, and treatment", "corpus": "international", "doi": "https://doi.org/10.1038/s41380-023-01949-9", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.nature.com/articles/s41380-023-01949-9.pdf", "landing_page_url": "https://doi.org/10.1038/s41380-023-01949-9", "content_length_bytes": 1845018}
|
| 12 |
+
{"openalex_id": "https://openalex.org/W3000475066", "title": "Opioid use disorder", "corpus": "international", "doi": "https://doi.org/10.1038/s41572-019-0137-5", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 13 |
+
{"openalex_id": "https://openalex.org/W2999889141", "title": "Dopamine and glutamate in schizophrenia: biology, symptoms and treatment", "corpus": "international", "doi": "https://doi.org/10.1002/wps.20693", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1002/wps.20693", "landing_page_url": "https://doi.org/10.1002/wps.20693", "content_length_bytes": null}
|
| 14 |
+
{"openalex_id": "https://openalex.org/W3165633131", "title": "Association of Opioid Agonist Treatment With All-Cause Mortality and Specific Causes of Death Among People With Opioid Dependence", "corpus": "international", "doi": "https://doi.org/10.1001/jamapsychiatry.2021.0976", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://jamanetwork.com/journals/jamapsychiatry/articlepdf/2780655/jamapsychiatry_santo_2021_oi_210027_1647372061.14743.pdf", "landing_page_url": "https://doi.org/10.1001/jamapsychiatry.2021.0976", "content_length_bytes": null}
|
| 15 |
+
{"openalex_id": "https://openalex.org/W3131397527", "title": "Cannabis use and cannabis use disorder", "corpus": "international", "doi": "https://doi.org/10.1038/s41572-021-00247-4", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/8655458", "content_length_bytes": null}
|
| 16 |
+
{"openalex_id": "https://openalex.org/W3005496517", "title": "The changing opioid crisis: development, challenges and opportunities", "corpus": "international", "doi": "https://doi.org/10.1038/s41380-020-0661-4", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7398847", "content_length_bytes": null}
|
| 17 |
+
{"openalex_id": "https://openalex.org/W3013064929", "title": "The transition to compulsion in addiction", "corpus": "international", "doi": "https://doi.org/10.1038/s41583-020-0289-z", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7610550", "content_length_bytes": null}
|
| 18 |
+
{"openalex_id": "https://openalex.org/W3033876247", "title": "Brief Report: Increased Addictive Internet and Substance Use Behavior During the COVID‐19 Pandemic in China", "corpus": "international", "doi": "https://doi.org/10.1111/ajad.13066", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1111/ajad.13066", "landing_page_url": "https://doi.org/10.1111/ajad.13066", "content_length_bytes": null}
|
| 19 |
+
{"openalex_id": "https://openalex.org/W2998018164", "title": "Prevention of Psychosis", "corpus": "international", "doi": "https://doi.org/10.1001/jamapsychiatry.2019.4779", "is_oa": true, "oa_status": "green", "pdf_url": "https://pure.amsterdamumc.nl/ws/files/173162965/Prevention-of-psychosis-advances-in-detection-prognosis-and-intervention.pdf", "landing_page_url": "https://pure.amsterdamumc.nl/en/publications/8537ac48-ae78-4e50-bde8-4c6007861df8", "content_length_bytes": null}
|
| 20 |
+
{"openalex_id": "https://openalex.org/W4376132878", "title": "Substance use disorders: a comprehensive update of classification, epidemiology, neurobiology, clinical aspects, treatment and prevention", "corpus": "international", "doi": "https://doi.org/10.1002/wps.21073", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1002/wps.21073", "landing_page_url": "https://doi.org/10.1002/wps.21073", "content_length_bytes": null}
|
| 21 |
+
{"openalex_id": "https://openalex.org/W3205115907", "title": "The ASAM National Practice Guideline for the Treatment of Opioid Use Disorder: 2020 Focused Update", "corpus": "international", "doi": "https://doi.org/10.1097/adm.0000000000000633", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 22 |
+
{"openalex_id": "https://openalex.org/W3022354320", "title": "Autism Spectrum Disorder and Substance Use Disorder", "corpus": "international", "doi": "https://doi.org/10.1016/j.chc.2020.03.002", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 23 |
+
{"openalex_id": "https://openalex.org/W3193815771", "title": "Multivariate analysis of 1.5 million people identifies genetic associations with traits related to self-regulation and addiction", "corpus": "international", "doi": "https://doi.org/10.1038/s41593-021-00908-3", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://www.nature.com/articles/s41593-021-00908-3.pdf", "landing_page_url": "https://doi.org/10.1038/s41593-021-00908-3", "content_length_bytes": null}
|
| 24 |
+
{"openalex_id": "https://openalex.org/W3025405166", "title": "The COVID-19 pandemic and its impact on substance use: Implications for prevention and treatment", "corpus": "international", "doi": "https://doi.org/10.1016/j.psychres.2020.113096", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7219362", "content_length_bytes": null}
|
| 25 |
+
{"openalex_id": "https://openalex.org/W4289841403", "title": "Has the treatment gap for opioid use disorder narrowed in the U.S.?: A yearly assessment from 2010 to 2019”", "corpus": "international", "doi": "https://doi.org/10.1016/j.drugpo.2022.103786", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.sciencedirect.com/science/article/pii/S0955395922002031/pdf", "landing_page_url": "https://doi.org/10.1016/j.drugpo.2022.103786", "content_length_bytes": null}
|
| 26 |
+
{"openalex_id": "https://openalex.org/W3024002321", "title": "Retention of patients in opioid substitution treatment: A systematic review", "corpus": "international", "doi": "https://doi.org/10.1371/journal.pone.0232086", "is_oa": true, "oa_status": "gold", "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0232086&type=printable", "landing_page_url": "https://doi.org/10.1371/journal.pone.0232086", "content_length_bytes": 1076725}
|
| 27 |
+
{"openalex_id": "https://openalex.org/W3196389154", "title": "Global Changes and Factors of Increase in Caloric/Salty Food Intake, Screen Use, and Substance Use During the Early COVID-19 Containment Phase in the General Population in France: Survey Study", "corpus": "international", "doi": "https://doi.org/10.2196/19630", "is_oa": true, "oa_status": "gold", "pdf_url": "https://jmir.org/api/download?alt_name=publichealth_v6i3e19630_app2.pdf&filename=fb9000a4e223c62e3809023fe48c3571.pdf", "landing_page_url": "https://doi.org/10.2196/19630", "content_length_bytes": 5292694}
|
| 28 |
+
{"openalex_id": "https://openalex.org/W3104589131", "title": "Polysubstance use in the U.S. opioid crisis", "corpus": "international", "doi": "https://doi.org/10.1038/s41380-020-00949-3", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.nature.com/articles/s41380-020-00949-3.pdf", "landing_page_url": "https://doi.org/10.1038/s41380-020-00949-3", "content_length_bytes": 855189}
|
| 29 |
+
{"openalex_id": "https://openalex.org/W4310780757", "title": "Use of Opioids for Adults With Pain From Cancer or Cancer Treatment: ASCO Guideline", "corpus": "international", "doi": "https://doi.org/10.1200/jco.22.02198", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 30 |
+
{"openalex_id": "https://openalex.org/W4210771126", "title": "Therapeutic Potential of Cannabis, Cannabidiol, and Cannabinoid-Based Pharmaceuticals", "corpus": "international", "doi": "https://doi.org/10.1159/000521683", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://www.karger.com/Article/Pdf/521683", "landing_page_url": "https://doi.org/10.1159/000521683", "content_length_bytes": null}
|
| 31 |
+
{"openalex_id": "https://openalex.org/W3036689426", "title": "Combined Pharmacotherapy and Cognitive Behavioral Therapy for Adults With Alcohol or Substance Use Disorders", "corpus": "international", "doi": "https://doi.org/10.1001/jamanetworkopen.2020.8279", "is_oa": true, "oa_status": "gold", "pdf_url": "https://jamanetwork.com/journals/jamanetworkopen/articlepdf/2767358/ray_2020_oi_200356.pdf", "landing_page_url": "https://doi.org/10.1001/jamanetworkopen.2020.8279", "content_length_bytes": null}
|
| 32 |
+
{"openalex_id": "https://openalex.org/W3161940807", "title": "Rates of treatment-resistant schizophrenia from first-episode cohorts: systematic review and meta-analysis", "corpus": "international", "doi": "https://doi.org/10.1192/bjp.2021.61", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://www.cambridge.org/core/services/aop-cambridge-core/content/view/CBED0FC65FEF401AD2967C9E48E96EC1/S0007125021000611a.pdf/div-class-title-rates-of-treatment-resistant-schizophrenia-from-first-episode-cohorts-systematic-review-and-meta-analysis-div.pdf", "landing_page_url": "https://doi.org/10.1192/bjp.2021.61", "content_length_bytes": null}
|
| 33 |
+
{"openalex_id": "https://openalex.org/W4353055381", "title": "Multivariate genome-wide association meta-analysis of over 1 million subjects identifies loci underlying multiple substance use disorders", "corpus": "international", "doi": "https://doi.org/10.1038/s44220-023-00034-y", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://www.nature.com/articles/s44220-023-00034-y.pdf", "landing_page_url": "https://doi.org/10.1038/s44220-023-00034-y", "content_length_bytes": null}
|
| 34 |
+
{"openalex_id": "https://openalex.org/W4220780040", "title": "Use of Medication for Opioid Use Disorder Among US Adolescents and Adults With Need for Opioid Treatment, 2019", "corpus": "international", "doi": "https://doi.org/10.1001/jamanetworkopen.2022.3821", "is_oa": true, "oa_status": "gold", "pdf_url": "https://jamanetwork.com/journals/jamanetworkopen/articlepdf/2790432/mauro_2022_oi_220135_1658775431.83724.pdf", "landing_page_url": "https://doi.org/10.1001/jamanetworkopen.2022.3821", "content_length_bytes": null}
|
| 35 |
+
{"openalex_id": "https://openalex.org/W4287733275", "title": "Association of cannabis potency with mental ill health and addiction: a systematic review", "corpus": "international", "doi": "https://doi.org/10.1016/s2215-0366(22)00161-4", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://hdl.handle.net/1983/da6e1249-5b2c-4f4f-9acb-fffcfedfb28e", "content_length_bytes": null}
|
| 36 |
+
{"openalex_id": "https://openalex.org/W4206926538", "title": "The Impact of Stigma on People with Opioid Use Disorder, Opioid Treatment, and Policy", "corpus": "international", "doi": "https://doi.org/10.2147/sar.s304566", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.dovepress.com/getfile.php?fileID=77830", "landing_page_url": "https://doi.org/10.2147/sar.s304566", "content_length_bytes": null}
|
| 37 |
+
{"openalex_id": "https://openalex.org/W3114344462", "title": "Stigma and substance use disorders: A clinical, research, and advocacy agenda.", "corpus": "international", "doi": "https://doi.org/10.1037/amp0000744", "is_oa": true, "oa_status": "hybrid", "pdf_url": null, "landing_page_url": "https://doi.org/10.1037/amp0000744", "content_length_bytes": null}
|
| 38 |
+
{"openalex_id": "https://openalex.org/W2994677306", "title": "Virtual Reality (VR) in Assessment and Treatment of Addictive Disorders: A Systematic Review", "corpus": "international", "doi": "https://doi.org/10.3389/fnins.2019.01409", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fnins.2019.01409/pdf", "landing_page_url": "https://doi.org/10.3389/fnins.2019.01409", "content_length_bytes": 1255315}
|
| 39 |
+
{"openalex_id": "https://openalex.org/W3030750231", "title": "Association of High-Potency Cannabis Use With Mental Health and Substance Use in Adolescence", "corpus": "international", "doi": "https://doi.org/10.1001/jamapsychiatry.2020.1035", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://jamanetwork.com/journals/jamapsychiatry/articlepdf/2765973/jamapsychiatry_hines_2020_oi_200026_1601309834.63439.pdf", "landing_page_url": "https://doi.org/10.1001/jamapsychiatry.2020.1035", "content_length_bytes": null}
|
| 40 |
+
{"openalex_id": "https://openalex.org/W3133913092", "title": "Assessment of Annual Cost of Substance Use Disorder in US Hospitals", "corpus": "international", "doi": "https://doi.org/10.1001/jamanetworkopen.2021.0242", "is_oa": true, "oa_status": "gold", "pdf_url": null, "landing_page_url": "https://doi.org/10.1001/jamanetworkopen.2021.0242", "content_length_bytes": null}
|
| 41 |
+
{"openalex_id": "https://openalex.org/W3216023063", "title": "Substance Use in Pregnancy: Identifying Stigma and Improving Care", "corpus": "international", "doi": "https://doi.org/10.2147/sar.s319180", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.dovepress.com/getfile.php?fileID=76032", "landing_page_url": "https://doi.org/10.2147/sar.s319180", "content_length_bytes": null}
|
| 42 |
+
{"openalex_id": "https://openalex.org/W3127776194", "title": "Prevalence and Co-occurrence of Alcohol, Nicotine, and Other Substance Use Disorder Diagnoses Among US Transgender and Cisgender Adults", "corpus": "international", "doi": "https://doi.org/10.1001/jamanetworkopen.2020.36512", "is_oa": true, "oa_status": "gold", "pdf_url": "https://jamanetwork.com/journals/jamanetworkopen/articlepdf/2775924/hughto_2021_oi_201092_1614110094.4837.pdf", "landing_page_url": "https://doi.org/10.1001/jamanetworkopen.2020.36512", "content_length_bytes": null}
|
| 43 |
+
{"openalex_id": "https://openalex.org/W3201396326", "title": "Public health monitoring of cannabis use in Europe: prevalence of use, cannabis potency, and treatment rates", "corpus": "international", "doi": "https://doi.org/10.1016/j.lanepe.2021.100227", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.sciencedirect.com/science/article/pii/S2666776221002131/pdf", "landing_page_url": "https://doi.org/10.1016/j.lanepe.2021.100227", "content_length_bytes": null}
|
| 44 |
+
{"openalex_id": "https://openalex.org/W4212872661", "title": "Analysis of global prevalence of mental and substance use disorders within countries: focus on sociodemographic characteristics and income levels", "corpus": "international", "doi": "https://doi.org/10.1080/09540261.2022.2040450", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 45 |
+
{"openalex_id": "https://openalex.org/W3154509218", "title": "Genetics of substance use disorders: a review", "corpus": "international", "doi": "https://doi.org/10.1017/s0033291721000969", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.cambridge.org/core/services/aop-cambridge-core/content/view/B3BAE9D2DCF78C7C4833A8DB4420F5B2/S0033291721000969a.pdf/div-class-title-genetics-of-substance-use-disorders-a-review-div.pdf", "landing_page_url": "https://doi.org/10.1017/s0033291721000969", "content_length_bytes": null}
|
| 46 |
+
{"openalex_id": "https://openalex.org/W3003347387", "title": "Personalizing the Treatment of Substance Use Disorders", "corpus": "international", "doi": "https://doi.org/10.1176/appi.ajp.2019.19121284", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://ajp.psychiatryonline.org/doi/pdf/10.1176/appi.ajp.2019.19121284", "landing_page_url": "https://doi.org/10.1176/appi.ajp.2019.19121284", "content_length_bytes": null}
|
| 47 |
+
{"openalex_id": "https://openalex.org/W3001327571", "title": "Persisting Reductions in Cannabis, Opioid, and Stimulant Misuse After Naturalistic Psychedelic Use: An Online Survey", "corpus": "international", "doi": "https://doi.org/10.3389/fpsyt.2019.00955", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fpsyt.2019.00955/pdf", "landing_page_url": "https://doi.org/10.3389/fpsyt.2019.00955", "content_length_bytes": 651470}
|
| 48 |
+
{"openalex_id": "https://openalex.org/W3025082979", "title": "Innovation During COVID-19: Improving Addiction Treatment Access", "corpus": "international", "doi": "https://doi.org/10.1097/adm.0000000000000685", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7236851", "content_length_bytes": null}
|
| 49 |
+
{"openalex_id": "https://openalex.org/W4311193167", "title": "Sex/Gender Differences in the Time-Course for the Development of Substance Use Disorder: A Focus on the Telescoping Effect", "corpus": "international", "doi": "https://doi.org/10.1124/pharmrev.121.000361", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://pharmrev.aspetjournals.org/content/pharmrev/75/2/217.full.pdf", "landing_page_url": "https://doi.org/10.1124/pharmrev.121.000361", "content_length_bytes": null}
|
| 50 |
+
{"openalex_id": "https://openalex.org/W4389614685", "title": "A systematic review and meta-analysis of neuromodulation therapies for substance use disorders", "corpus": "international", "doi": "https://doi.org/10.1038/s41386-023-01776-0", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.nature.com/articles/s41386-023-01776-0.pdf", "landing_page_url": "https://doi.org/10.1038/s41386-023-01776-0", "content_length_bytes": 2599091}
|
| 51 |
+
{"openalex_id": "https://openalex.org/W3119005666", "title": "Cancer Statistics, 2021", "corpus": "international", "doi": "https://doi.org/10.3322/caac.21654", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://acsjournals.onlinelibrary.wiley.com/doi/pdfdirect/10.3322/caac.21654", "landing_page_url": "https://doi.org/10.3322/caac.21654", "content_length_bytes": null}
|
| 52 |
+
{"openalex_id": "https://openalex.org/W4210520398", "title": "2021 ESC Guidelines for the diagnosis and treatment of acute and chronic heart failure", "corpus": "international", "doi": "https://doi.org/10.1002/ejhf.2333", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://cris.maastrichtuniversity.nl/en/publications/2c9bc952-c5c4-41d2-8b1f-b3e1376c9b08", "content_length_bytes": null}
|
| 53 |
+
{"openalex_id": "https://openalex.org/W4226079456", "title": "The clinician’s guide to prevention and treatment of osteoporosis", "corpus": "international", "doi": "https://doi.org/10.1007/s00198-021-05900-y", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://link.springer.com/content/pdf/10.1007/s00198-021-05900-y.pdf", "landing_page_url": "https://doi.org/10.1007/s00198-021-05900-y", "content_length_bytes": 2341479}
|
| 54 |
+
{"openalex_id": "https://openalex.org/W4223433728", "title": "Rare coding variants in ten genes confer substantial risk for schizophrenia", "corpus": "international", "doi": "https://doi.org/10.1038/s41586-022-04556-w", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://kclpure.kcl.ac.uk/portal/en/publications/c279ccad-6eed-4618-b0bb-47653b881622", "content_length_bytes": null}
|
| 55 |
+
{"openalex_id": "https://openalex.org/W4229038037", "title": "Mortality in people with schizophrenia: a systematic review and meta‐analysis of relative risk and aggravating or attenuating factors", "corpus": "international", "doi": "https://doi.org/10.1002/wps.20994", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1002/wps.20994", "landing_page_url": "https://doi.org/10.1002/wps.20994", "content_length_bytes": null}
|
| 56 |
+
{"openalex_id": "https://openalex.org/W3209664063", "title": "Alcohol and other substance use during the COVID-19 pandemic: A systematic review", "corpus": "international", "doi": "https://doi.org/10.1016/j.drugalcdep.2021.109150", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/8559994", "content_length_bytes": null}
|
| 57 |
+
{"openalex_id": "https://openalex.org/W4214952634", "title": "Profiles of Patients with Opioid Use Disorders Presenting a History of Suicidal Ideations and Attempts", "corpus": "international", "doi": "https://doi.org/10.1007/s11126-022-09978-3", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 58 |
+
{"openalex_id": "https://openalex.org/W3094181094", "title": "A large-scale genome-wide association study meta-analysis of cannabis use disorder", "corpus": "international", "doi": "https://doi.org/10.1016/s2215-0366(20)30339-4", "is_oa": true, "oa_status": "hybrid", "pdf_url": "http://www.thelancet.com/article/S2215036620303394/pdf", "landing_page_url": "https://doi.org/10.1016/s2215-0366(20)30339-4", "content_length_bytes": null}
|
| 59 |
+
{"openalex_id": "https://openalex.org/W3093906108", "title": "Neonatal Opioid Withdrawal Syndrome", "corpus": "international", "doi": "https://doi.org/10.1542/peds.2020-029074", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 60 |
+
{"openalex_id": "https://openalex.org/W3130230035", "title": "Virtual Reality Therapy in Mental Health", "corpus": "international", "doi": "https://doi.org/10.1146/annurev-clinpsy-081219-115923", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://www.annualreviews.org/doi/pdf/10.1146/annurev-clinpsy-081219-115923", "landing_page_url": "https://doi.org/10.1146/annurev-clinpsy-081219-115923", "content_length_bytes": null}
|
| 61 |
+
{"openalex_id": "https://openalex.org/W3035858980", "title": "One Is Not Enough: Understanding and Modeling Polysubstance Use", "corpus": "international", "doi": "https://doi.org/10.3389/fnins.2020.00569", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fnins.2020.00569/pdf", "landing_page_url": "https://doi.org/10.3389/fnins.2020.00569", "content_length_bytes": 2903428}
|
| 62 |
+
{"openalex_id": "https://openalex.org/W3088900688", "title": "Associations Between Prenatal Cannabis Exposure and Childhood Outcomes", "corpus": "international", "doi": "https://doi.org/10.1001/jamapsychiatry.2020.2902", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://jamanetwork.com/journals/jamapsychiatry/articlepdf/2770964/jamapsychiatry_paul_2020_oi_200057_1608576252.17563.pdf", "landing_page_url": "https://doi.org/10.1001/jamapsychiatry.2020.2902", "content_length_bytes": null}
|
| 63 |
+
{"openalex_id": "https://openalex.org/W3112790012", "title": "Drug Addiction: Hyperkatifeia/Negative Reinforcement as a Framework for Medications Development", "corpus": "international", "doi": "https://doi.org/10.1124/pharmrev.120.000083", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://pharmrev.aspetjournals.org/content/pharmrev/73/1/163.full.pdf", "landing_page_url": "https://doi.org/10.1124/pharmrev.120.000083", "content_length_bytes": null}
|
| 64 |
+
{"openalex_id": "https://openalex.org/W4286229596", "title": "Emotion regulation in substance use disorders: a systematic review and meta‐analysis", "corpus": "international", "doi": "https://doi.org/10.1111/add.16001", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1111/add.16001", "landing_page_url": "https://doi.org/10.1111/add.16001", "content_length_bytes": null}
|
| 65 |
+
{"openalex_id": "https://openalex.org/W3025481747", "title": "Validity and utility of Hierarchical Taxonomy of Psychopathology (HiTOP): I. Psychosis superspectrum", "corpus": "international", "doi": "https://doi.org/10.1002/wps.20730", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1002/wps.20730", "landing_page_url": "https://doi.org/10.1002/wps.20730", "content_length_bytes": null}
|
| 66 |
+
{"openalex_id": "https://openalex.org/W3000866924", "title": "Prevalence of comorbid substance use in major depressive disorder in community and clinical settings, 1990–2019: Systematic review and meta-analysis", "corpus": "international", "doi": "https://doi.org/10.1016/j.jad.2020.01.141", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://figshare.com/articles/journal_contribution/Prevalence_of_comorbid_substance_use_in_major_depressive_disorder_in_community_and_clinical_settings_1990_2019_Systematic_review_and_meta-analysis/16551396", "content_length_bytes": null}
|
| 67 |
+
{"openalex_id": "https://openalex.org/W3094213593", "title": "Neuroinflammation in psychiatric disorders: PET imaging and promising new targets", "corpus": "international", "doi": "https://doi.org/10.1016/s2215-0366(20)30255-8", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7893630", "content_length_bytes": null}
|
| 68 |
+
{"openalex_id": "https://openalex.org/W3004703759", "title": "Medicinal cannabis for psychiatric disorders: a clinically-focused systematic review", "corpus": "international", "doi": "https://doi.org/10.1186/s12888-019-2409-8", "is_oa": true, "oa_status": "gold", "pdf_url": "https://bmcpsychiatry.biomedcentral.com/track/pdf/10.1186/s12888-019-2409-8", "landing_page_url": "https://doi.org/10.1186/s12888-019-2409-8", "content_length_bytes": 643703}
|
| 69 |
+
{"openalex_id": "https://openalex.org/W4231884481", "title": "Chapter 1. Neurocircuitry of Addiction", "corpus": "international", "doi": "https://doi.org/10.1176/appi.books.9781615373970.kb01", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 70 |
+
{"openalex_id": "https://openalex.org/W3009147246", "title": "Associations between stopping prescriptions for opioids, length of opioid treatment, and overdose or suicide deaths in US veterans: observational evaluation", "corpus": "international", "doi": "https://doi.org/10.1136/bmj.m283", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.bmj.com/content/bmj/368/bmj.m283.full.pdf", "landing_page_url": "https://doi.org/10.1136/bmj.m283", "content_length_bytes": null}
|
| 71 |
+
{"openalex_id": "https://openalex.org/W4400083681", "title": "Treatment for Opioid Use Disorder: Population Estimates — United States, 2022", "corpus": "international", "doi": "https://doi.org/10.15585/mmwr.mm7325a1", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://www.cdc.gov/mmwr/volumes/73/wr/pdfs/mm7325a1-H.pdf", "landing_page_url": "https://doi.org/10.15585/mmwr.mm7325a1", "content_length_bytes": null}
|
| 72 |
+
{"openalex_id": "https://openalex.org/W3019524946", "title": "Improving Access to Evidence-Based Medical Treatment for Opioid Use Disorder: Strategies to Address Key Barriers Within the Treatment System", "corpus": "international", "doi": "https://doi.org/10.31478/202004b", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/8916813", "content_length_bytes": null}
|
| 73 |
+
{"openalex_id": "https://openalex.org/W3092055061", "title": "Improving translation of animal models of addiction and relapse by reverse translation", "corpus": "international", "doi": "https://doi.org/10.1038/s41583-020-0378-z", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 74 |
+
{"openalex_id": "https://openalex.org/W3165836256", "title": "A systematic review of stigma interventions for providers who treat patients with substance use disorders", "corpus": "international", "doi": "https://doi.org/10.1016/j.jsat.2021.108486", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 75 |
+
{"openalex_id": "https://openalex.org/W4224935398", "title": "Substance Use Among Youth During the COVID-19 Pandemic: a Systematic Review", "corpus": "international", "doi": "https://doi.org/10.1007/s11920-022-01338-z", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://link.springer.com/content/pdf/10.1007/s11920-022-01338-z.pdf", "landing_page_url": "https://doi.org/10.1007/s11920-022-01338-z", "content_length_bytes": 977072}
|
| 76 |
+
{"openalex_id": "https://openalex.org/W4200582775", "title": "Ketamine for the treatment of mental health and substance use disorders: comprehensive systematic review", "corpus": "international", "doi": "https://doi.org/10.1192/bjo.2021.1061", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.cambridge.org/core/services/aop-cambridge-core/content/view/36E261BFA62CDA6459B88F7777415FDA/S2056472421010619a.pdf/div-class-title-ketamine-for-the-treatment-of-mental-health-and-substance-use-disorders-comprehensive-systematic-review-div.pdf", "landing_page_url": "https://doi.org/10.1192/bjo.2021.1061", "content_length_bytes": null}
|
| 77 |
+
{"openalex_id": "https://openalex.org/W3004185853", "title": "A Narrative Pharmacological Review of Buprenorphine: A Unique Opioid for the Treatment of Chronic Pain", "corpus": "international", "doi": "https://doi.org/10.1007/s40122-019-00143-6", "is_oa": true, "oa_status": "gold", "pdf_url": "https://link.springer.com/content/pdf/10.1007/s40122-019-00143-6.pdf", "landing_page_url": "https://doi.org/10.1007/s40122-019-00143-6", "content_length_bytes": 964509}
|
| 78 |
+
{"openalex_id": "https://openalex.org/W3149786233", "title": "Cost-effectiveness of Treatments for Opioid Use Disorder", "corpus": "international", "doi": "https://doi.org/10.1001/jamapsychiatry.2021.0247", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://jamanetwork.com/journals/jamapsychiatry/articlepdf/2778020/jamapsychiatry_fairley_2021_oi_210009_1624468012.6625.pdf", "landing_page_url": "https://doi.org/10.1001/jamapsychiatry.2021.0247", "content_length_bytes": null}
|
| 79 |
+
{"openalex_id": "https://openalex.org/W3011933438", "title": "The Role of Inflammation in the Treatment of Schizophrenia", "corpus": "international", "doi": "https://doi.org/10.3389/fpsyt.2020.00160", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fpsyt.2020.00160/pdf", "landing_page_url": "https://doi.org/10.3389/fpsyt.2020.00160", "content_length_bytes": 143095}
|
| 80 |
+
{"openalex_id": "https://openalex.org/W3134537818", "title": "DNA methylation meta-analysis reveals cellular alterations in psychosis and markers of treatment-resistant schizophrenia", "corpus": "international", "doi": "https://doi.org/10.7554/elife.58430", "is_oa": true, "oa_status": "gold", "pdf_url": null, "landing_page_url": "https://doi.org/10.7554/elife.58430", "content_length_bytes": null}
|
| 81 |
+
{"openalex_id": "https://openalex.org/W3136520326", "title": "Suicide Risk and Addiction: The Impact of Alcohol and Opioid Use Disorders", "corpus": "international", "doi": "https://doi.org/10.1007/s40429-021-00361-z", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://link.springer.com/content/pdf/10.1007/s40429-021-00361-z.pdf", "landing_page_url": "https://doi.org/10.1007/s40429-021-00361-z", "content_length_bytes": null}
|
| 82 |
+
{"openalex_id": "https://openalex.org/W3216825328", "title": "Gene-Environment Interactions in Schizophrenia: A Literature Review", "corpus": "international", "doi": "https://doi.org/10.3390/genes12121850", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.mdpi.com/2073-4425/12/12/1850/pdf?version=1640151892", "landing_page_url": "https://doi.org/10.3390/genes12121850", "content_length_bytes": null}
|
| 83 |
+
{"openalex_id": "https://openalex.org/W3041861701", "title": "Adolescent Neurodevelopment and Vulnerability to Psychosis", "corpus": "international", "doi": "https://doi.org/10.1016/j.biopsych.2020.06.028", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/9397132", "content_length_bytes": null}
|
| 84 |
+
{"openalex_id": "https://openalex.org/W3152845296", "title": "Substance Use Disorders and Behavioral Addictions During the COVID-19 Pandemic and COVID-19-Related Restrictions", "corpus": "international", "doi": "https://doi.org/10.3389/fpsyt.2021.653674", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/journals/psychiatry/articles/10.3389/fpsyt.2021.653674/pdf", "landing_page_url": "https://doi.org/10.3389/fpsyt.2021.653674", "content_length_bytes": 245719}
|
| 85 |
+
{"openalex_id": "https://openalex.org/W3115315782", "title": "Cannabis Use, Cannabis Use Disorder, and Comorbid Psychiatric Illness: A Narrative Review", "corpus": "international", "doi": "https://doi.org/10.3390/jcm10010015", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.mdpi.com/2077-0383/10/1/15/pdf?version=1609148123", "landing_page_url": "https://doi.org/10.3390/jcm10010015", "content_length_bytes": null}
|
| 86 |
+
{"openalex_id": "https://openalex.org/W3093547425", "title": "Substance Use Disorders and Telehealth in the COVID-19 Pandemic Era", "corpus": "international", "doi": "https://doi.org/10.1016/j.mayocp.2020.10.011", "is_oa": true, "oa_status": "bronze", "pdf_url": "http://www.mayoclinicproceedings.org/article/S0025619620311952/pdf", "landing_page_url": "https://doi.org/10.1016/j.mayocp.2020.10.011", "content_length_bytes": null}
|
| 87 |
+
{"openalex_id": "https://openalex.org/W3091232918", "title": "Transcranial magnetic stimulation, deep brain stimulation, and other forms of neuromodulation for substance use disorders: Review of modalities and implications for treatment", "corpus": "international", "doi": "https://doi.org/10.1016/j.jns.2020.117149", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7702181", "content_length_bytes": null}
|
| 88 |
+
{"openalex_id": "https://openalex.org/W2998403196", "title": "Receipt of Addiction Treatment After Opioid Overdose Among Medicaid-Enrolled Adolescents and Young Adults", "corpus": "international", "doi": "https://doi.org/10.1001/jamapediatrics.2019.5183", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://jamanetwork.com/journals/jamapediatrics/articlepdf/2758103/jamapediatrics_alinsky_2020_oi_190090.pdf", "landing_page_url": "https://doi.org/10.1001/jamapediatrics.2019.5183", "content_length_bytes": null}
|
| 89 |
+
{"openalex_id": "https://openalex.org/W3027206624", "title": "Polysubstance use and association with opioid use disorder treatment in the US Veterans Health Administration", "corpus": "international", "doi": "https://doi.org/10.1111/add.15116", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1111/add.15116", "landing_page_url": "https://doi.org/10.1111/add.15116", "content_length_bytes": null}
|
| 90 |
+
{"openalex_id": "https://openalex.org/W4401567062", "title": "Stress and substance use disorders: risk, relapse, and treatment outcomes", "corpus": "international", "doi": "https://doi.org/10.1172/jci172883", "is_oa": true, "oa_status": "gold", "pdf_url": "http://www.jci.org/articles/view/172883/files/pdf", "landing_page_url": "https://doi.org/10.1172/jci172883", "content_length_bytes": 1970464}
|
| 91 |
+
{"openalex_id": "https://openalex.org/W3037099750", "title": "Substance-related exogenous psychosis: a postmodern syndrome", "corpus": "international", "doi": "https://doi.org/10.1017/s1092852920001479", "is_oa": true, "oa_status": "green", "pdf_url": "http://hdl.handle.net/2299/23038", "landing_page_url": "http://hdl.handle.net/2299/23038", "content_length_bytes": null}
|
| 92 |
+
{"openalex_id": "https://openalex.org/W3120795802", "title": "Cannabis sativa L. as a Natural Drug Meeting the Criteria of a Multitarget Approach to Treatment", "corpus": "international", "doi": "https://doi.org/10.3390/ijms22020778", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.mdpi.com/1422-0067/22/2/778/pdf", "landing_page_url": "https://doi.org/10.3390/ijms22020778", "content_length_bytes": null}
|
| 93 |
+
{"openalex_id": "https://openalex.org/W3033955935", "title": "Cannabis Use and its Association with Psychological Disorders", "corpus": "international", "doi": "https://doi.org/10.64719/pb.4606", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7255842", "content_length_bytes": null}
|
| 94 |
+
{"openalex_id": "https://openalex.org/W3135803799", "title": "Morbidity and mortality in schizophrenia with comorbid substance use disorders", "corpus": "international", "doi": "https://doi.org/10.1111/acps.13291", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1111/acps.13291", "landing_page_url": "https://doi.org/10.1111/acps.13291", "content_length_bytes": null}
|
| 95 |
+
{"openalex_id": "https://openalex.org/W3217028843", "title": "Gender Dynamics in Substance Use and Treatment", "corpus": "international", "doi": "https://doi.org/10.1016/j.mcna.2021.08.007", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/8881090", "content_length_bytes": null}
|
| 96 |
+
{"openalex_id": "https://openalex.org/W4391913138", "title": "Substance Use and Misuse", "corpus": "international", "doi": "https://doi.org/10.1891/9780826173294.0004", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 97 |
+
{"openalex_id": "https://openalex.org/W2999746377", "title": "A rapid access to addiction medicine clinic facilitates treatment of substance use disorder and reduces substance use", "corpus": "international", "doi": "https://doi.org/10.1186/s13011-019-0250-1", "is_oa": true, "oa_status": "gold", "pdf_url": "https://substanceabusepolicy.biomedcentral.com/track/pdf/10.1186/s13011-019-0250-1", "landing_page_url": "https://doi.org/10.1186/s13011-019-0250-1", "content_length_bytes": 677527}
|
| 98 |
+
{"openalex_id": "https://openalex.org/W4205604597", "title": "Cannabidiol and substance use disorder: Dream or reality", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.neuropharm.2022.108948", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/9157244", "content_length_bytes": null}
|
| 99 |
+
{"openalex_id": "https://openalex.org/W3016427148", "title": "Opioid Treatments for Chronic Pain", "corpus": "international", "doi": "https://doi.org/10.23970/ahrqepccer229", "is_oa": true, "oa_status": "gold", "pdf_url": "https://effectivehealthcare.ahrq.gov/sites/default/files/pdf/opioids-chronic-pain.pdf", "landing_page_url": "https://doi.org/10.23970/ahrqepccer229", "content_length_bytes": 0}
|
| 100 |
+
{"openalex_id": "https://openalex.org/W3044691903", "title": "Stigma: how it affects the substance use disorder patient", "corpus": "international", "doi": "https://doi.org/10.1186/s13011-020-00288-0", "is_oa": true, "oa_status": "gold", "pdf_url": "https://substanceabusepolicy.biomedcentral.com/track/pdf/10.1186/s13011-020-00288-0", "landing_page_url": "https://doi.org/10.1186/s13011-020-00288-0", "content_length_bytes": 486218}
|
| 101 |
+
{"openalex_id": "https://openalex.org/W2098082628", "title": "Global, regional, and national incidence, prevalence, and years lived with disability for 301 acute and chronic diseases and injuries in 188 countries, 1990–2013: a systematic analysis for the Global Burden of Disease Study 2013", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/s0140-6736(15)60692-4", "is_oa": true, "oa_status": "green", "pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4561509/pdf/emss-64121.pdf", "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/4561509", "content_length_bytes": 1817}
|
| 102 |
+
{"openalex_id": "https://openalex.org/W2982015067", "title": "Global patterns of opioid use and dependence: harms to populations, interventions, and future action", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/s0140-6736(19)32229-9", "is_oa": true, "oa_status": "gold", "pdf_url": "https://research-information.bris.ac.uk/ws/files/212993354/Degenhardt_et_al_opioid_paper_resubmitted_no_TC.pdf", "landing_page_url": "https://research-information.bris.ac.uk/en/publications/1b470062-c8b4-4404-a332-a2dc02ead7cb", "content_length_bytes": null}
|
| 103 |
+
{"openalex_id": "https://openalex.org/W2522364974", "title": "Carotenoids: biochemistry, pharmacology and treatment", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1111/bph.13625", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://bpspubs.onlinelibrary.wiley.com/doi/pdfdirect/10.1111/bph.13625", "landing_page_url": "https://doi.org/10.1111/bph.13625", "content_length_bytes": null}
|
| 104 |
+
{"openalex_id": "https://openalex.org/W2904363872", "title": "Opioids for Chronic Noncancer Pain", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1001/jama.2018.18472", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://jamanetwork.com/journals/jama/articlepdf/2718795/jama_busse_2018_oi_180142.pdf", "landing_page_url": "https://doi.org/10.1001/jama.2018.18472", "content_length_bytes": null}
|
| 105 |
+
{"openalex_id": "https://openalex.org/W3012009865", "title": "ENIGMA and global neuroscience: A decade of large-scale studies of the brain in health and disease across more than 40 countries", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1038/s41398-020-0705-1", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.nature.com/articles/s41398-020-0705-1.pdf", "landing_page_url": "https://doi.org/10.1038/s41398-020-0705-1", "content_length_bytes": 2686155}
|
| 106 |
+
{"openalex_id": "https://openalex.org/W3121420611", "title": "The role of hypoxia in the tumor microenvironment and development of cancer stem cell: a novel approach to developing treatment", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12935-020-01719-5", "is_oa": true, "oa_status": "gold", "pdf_url": "https://cancerci.biomedcentral.com/track/pdf/10.1186/s12935-020-01719-5", "landing_page_url": "https://doi.org/10.1186/s12935-020-01719-5", "content_length_bytes": 4258821}
|
| 107 |
+
{"openalex_id": "https://openalex.org/W2887909476", "title": "EPA guidance on physical activity as a treatment for severe mental illness: a meta-review of the evidence and Position Statement from the European Psychiatric Association (EPA), supported by the International Organization of Physical Therapists in Mental Health (IOPTMH)", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.eurpsy.2018.07.004", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://www.cambridge.org/core/services/aop-cambridge-core/content/view/4CDBA14B2882C84176325582ADA22E30/S0924933800008853a.pdf/div-class-title-epa-guidance-on-physical-activity-as-a-treatment-for-severe-mental-illness-a-meta-review-of-the-evidence-and-position-statement-from-the-european-psychiatric-association-epa-supported-by-the-international-organization-of-physical-therapists-in-mental-health-ioptmh-div.pdf", "landing_page_url": "https://doi.org/10.1016/j.eurpsy.2018.07.004", "content_length_bytes": null}
|
| 108 |
+
{"openalex_id": "https://openalex.org/W2473174975", "title": "Global burden of HIV, viral hepatitis, and tuberculosis in prisoners and detainees", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/s0140-6736(16)30466-4", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "http://handle.unsw.edu.au/1959.4/unsworks_40432", "content_length_bytes": null}
|
| 109 |
+
{"openalex_id": "https://openalex.org/W2432962063", "title": "Methodological Note: Neurofeedback: A Comprehensive Review on System Design, Methodology and Clinical Applications", "corpus": "iran_affiliated", "doi": "https://doi.org/10.15412/j.bcn.03070208", "is_oa": true, "oa_status": "diamond", "pdf_url": "http://bcn.iums.ac.ir/files/site1/user_files_c424bc/mansourian-A-10-739-1-d9cca26.pdf", "landing_page_url": "https://doi.org/10.15412/j.bcn.03070208", "content_length_bytes": null}
|
| 110 |
+
{"openalex_id": "https://openalex.org/W2809112603", "title": "Neurobiology and consequences of social isolation stress in animal model—A comprehensive review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.biopha.2018.05.086", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 111 |
+
{"openalex_id": "https://openalex.org/W3200600985", "title": "The burden of mental disorders, substance use disorders and self-harm among young people in Europe, 1990–2019: Findings from the Global Burden of Disease Study 2019", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.lanepe.2022.100341", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.sciencedirect.com/science/article/pii/S2666776222000345/pdf", "landing_page_url": "https://doi.org/10.1016/j.lanepe.2022.100341", "content_length_bytes": null}
|
| 112 |
+
{"openalex_id": "https://openalex.org/W2955210960", "title": "Transcranial electrical and magnetic stimulation (tES and TMS) for addiction medicine: A consensus paper on the present state of the science and the road ahead", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.neubiorev.2019.06.007", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://pure.eur.nl/en/publications/bb18f8c8-471d-4879-8087-8f6708ac9300", "content_length_bytes": null}
|
| 113 |
+
{"openalex_id": "https://openalex.org/W2394109200", "title": "Epidemiology of illicit drug use disorders in Iran: prevalence, correlates, comorbidity and service utilization results from the Iranian Mental Health Survey", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1111/add.13453", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 114 |
+
{"openalex_id": "https://openalex.org/W3037865145", "title": "Comparing generalized and specific problematic smartphone/internet use: Longitudinal relationships between smartphone application-based addiction and social media addiction and psychological distress", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1556/2006.2020.00023", "is_oa": true, "oa_status": "gold", "pdf_url": "https://akjournals.com/downloadpdf/journals/2006/9/2/article-p410.pdf", "landing_page_url": "https://doi.org/10.1556/2006.2020.00023", "content_length_bytes": null}
|
| 115 |
+
{"openalex_id": "https://openalex.org/W2749895937", "title": "Chronic pain and opioid misuse: a review of reviews", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s13011-017-0120-7", "is_oa": true, "oa_status": "gold", "pdf_url": "https://substanceabusepolicy.biomedcentral.com/track/pdf/10.1186/s13011-017-0120-7", "landing_page_url": "https://doi.org/10.1186/s13011-017-0120-7", "content_length_bytes": 535501}
|
| 116 |
+
{"openalex_id": "https://openalex.org/W2887135691", "title": "Opioids and Cardiac Arrhythmia: A Literature Review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1159/000492616", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://www.karger.com/Article/Pdf/492616", "landing_page_url": "https://doi.org/10.1159/000492616", "content_length_bytes": null}
|
| 117 |
+
{"openalex_id": "https://openalex.org/W4295271007", "title": "Estimation of Behavioral Addiction Prevalence During COVID-19 Pandemic: A Systematic Review and Meta-analysis", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1007/s40429-022-00435-6", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://link.springer.com/content/pdf/10.1007/s40429-022-00435-6.pdf", "landing_page_url": "https://doi.org/10.1007/s40429-022-00435-6", "content_length_bytes": 2160988}
|
| 118 |
+
{"openalex_id": "https://openalex.org/W4293761423", "title": "Barriers and Facilitators to Substance Use Disorder Treatment: An Overview of Systematic Reviews", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1177/11782218221118462", "is_oa": true, "oa_status": "gold", "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/11782218221118462", "landing_page_url": "https://doi.org/10.1177/11782218221118462", "content_length_bytes": null}
|
| 119 |
+
{"openalex_id": "https://openalex.org/W639066964", "title": "Substance Use and HIV Among Female Sex Workers and Female Prisoners", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1097/qai.0000000000000624", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/4493865", "content_length_bytes": null}
|
| 120 |
+
{"openalex_id": "https://openalex.org/W2763462689", "title": "Neuroscience-informed psychoeducation for addiction medicine: A neurocognitive perspective", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/bs.pbr.2017.08.013", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5771228", "content_length_bytes": null}
|
| 121 |
+
{"openalex_id": "https://openalex.org/W2889304095", "title": "The relationship between childhood trauma, early-life stress, and alcohol and drug use, abuse, and addiction: An integrative review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1007/s12144-018-9973-9", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 122 |
+
{"openalex_id": "https://openalex.org/W2416769789", "title": "A systematic review of the cardiotoxicity of methadone.", "corpus": "iran_affiliated", "doi": "https://doi.org/10.17179/excli2015-553", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/4747000", "content_length_bytes": null}
|
| 123 |
+
{"openalex_id": "https://openalex.org/W2331752343", "title": "Facebook Addiction among Malaysian Students", "corpus": "iran_affiliated", "doi": "https://doi.org/10.7763/ijiet.2016.v6.733", "is_oa": true, "oa_status": "diamond", "pdf_url": "http://www.ijiet.org/vol6/733-JM014.pdf", "landing_page_url": "https://doi.org/10.7763/ijiet.2016.v6.733", "content_length_bytes": 948668}
|
| 124 |
+
{"openalex_id": "https://openalex.org/W3212451234", "title": "Mental disorder and opioid overdose: a systematic review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1007/s00127-021-02199-2", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://link.springer.com/content/pdf/10.1007/s00127-021-02199-2.pdf", "landing_page_url": "https://doi.org/10.1007/s00127-021-02199-2", "content_length_bytes": null}
|
| 125 |
+
{"openalex_id": "https://openalex.org/W3197415884", "title": "Full Opioid Agonists and Tramadol: Pharmacological and Clinical Considerations", "corpus": "iran_affiliated", "doi": "https://doi.org/10.5812/aapm.119156", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://brief.land/aapm/cdn/dl/eb2c6980-23ba-11ec-99d0-ef0e0505967e", "landing_page_url": "https://doi.org/10.5812/aapm.119156", "content_length_bytes": null}
|
| 126 |
+
{"openalex_id": "https://openalex.org/W3015191949", "title": "COVID-19 and Substance Use Disorders as Brain Diseases: Recommendations to a Comprehensive Healthcare Response. An International Society of Addiction Medicine (ISAM) Practice and Policy Interest Group Position Paper", "corpus": "iran_affiliated", "doi": "https://doi.org/10.32598/bcn.11.covid19.1", "is_oa": true, "oa_status": "diamond", "pdf_url": "http://bcn.iums.ac.ir/files/site1/user_files_c424bc/raminradfar-A-10-2476-1-4074c33.pdf", "landing_page_url": "https://doi.org/10.32598/bcn.11.covid19.1", "content_length_bytes": null}
|
| 127 |
+
{"openalex_id": "https://openalex.org/W2997888691", "title": "A Roadmap for Integrating Neuroscience Into Addiction Treatment: A Consensus of the Neuroscience Interest Group of the International Society of Addiction Medicine", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3389/fpsyt.2019.00877", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fpsyt.2019.00877/pdf", "landing_page_url": "https://doi.org/10.3389/fpsyt.2019.00877", "content_length_bytes": 1556514}
|
| 128 |
+
{"openalex_id": "https://openalex.org/W2152542000", "title": "The Role of Family Expressed Emotion and Perceived Social Support in Predicting Addiction Relapse", "corpus": "iran_affiliated", "doi": "https://doi.org/10.5812/ijhrba.21250", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://ijhrba.kowsarpub.com/cdn/dl/760c3210-509d-11e7-ae47-773555467f81", "landing_page_url": "https://doi.org/10.5812/ijhrba.21250", "content_length_bytes": null}
|
| 129 |
+
{"openalex_id": "https://openalex.org/W4309215872", "title": "Neuroimaging in schizophrenia: A review article", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3389/fnins.2022.1042814", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fnins.2022.1042814/pdf", "landing_page_url": "https://doi.org/10.3389/fnins.2022.1042814", "content_length_bytes": 5343145}
|
| 130 |
+
{"openalex_id": "https://openalex.org/W2789372449", "title": "Examining Perceived Stress, Childhood Trauma and Interpersonal Trauma in Individuals With Drug Addiction", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1177/0033294118764918", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 131 |
+
{"openalex_id": "https://openalex.org/W3157558103", "title": "Reorganization of Substance Use Treatment and Harm Reduction Services During the COVID-19 Pandemic: A Global Survey", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3389/fpsyt.2021.639393", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fpsyt.2021.639393/pdf", "landing_page_url": "https://doi.org/10.3389/fpsyt.2021.639393", "content_length_bytes": 3839496}
|
| 132 |
+
{"openalex_id": "https://openalex.org/W2985162757", "title": "The evolution of addiction treatment and harm reduction programs in Iran: a chaotic response or a synergistic diversity?", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1111/add.14905", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 133 |
+
{"openalex_id": "https://openalex.org/W3200425183", "title": "Validity of self-reported substance use: research setting versus primary health care setting", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s13011-021-00398-3", "is_oa": true, "oa_status": "gold", "pdf_url": "https://substanceabusepolicy.biomedcentral.com/track/pdf/10.1186/s13011-021-00398-3", "landing_page_url": "https://doi.org/10.1186/s13011-021-00398-3", "content_length_bytes": 552833}
|
| 134 |
+
{"openalex_id": "https://openalex.org/W3190378801", "title": "A Global Survey on Changes in the Supply, Price, and Use of Illicit Drugs and Alcohol, and Related Complications During the 2020 COVID-19 Pandemic", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3389/fpsyt.2021.646206", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/journals/psychiatry/articles/10.3389/fpsyt.2021.646206/pdf", "landing_page_url": "https://doi.org/10.3389/fpsyt.2021.646206", "content_length_bytes": 4460890}
|
| 135 |
+
{"openalex_id": "https://openalex.org/W2808692014", "title": "Perceived barriers to methadone maintenance treatment among Iranian opioid users", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12939-018-0787-z", "is_oa": true, "oa_status": "gold", "pdf_url": "https://equityhealthj.biomedcentral.com/track/pdf/10.1186/s12939-018-0787-z.pdf", "landing_page_url": "https://doi.org/10.1186/s12939-018-0787-z", "content_length_bytes": null}
|
| 136 |
+
{"openalex_id": "https://openalex.org/W3209478223", "title": "Current state of cannabis use, policies, and research across sixteen countries: cross-country comparisons and international perspectives", "corpus": "iran_affiliated", "doi": "https://doi.org/10.47626/2237-6089-2021-0263", "is_oa": true, "oa_status": "diamond", "pdf_url": null, "landing_page_url": "https://doi.org/10.47626/2237-6089-2021-0263", "content_length_bytes": null}
|
| 137 |
+
{"openalex_id": "https://openalex.org/W4311203432", "title": "Cognitive training and remediation interventions for substance use disorders: a Delphi consensus study", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1111/add.16109", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://onlinelibrary.wiley.com/doi/pdfdirect/10.1111/add.16109", "landing_page_url": "https://doi.org/10.1111/add.16109", "content_length_bytes": null}
|
| 138 |
+
{"openalex_id": "https://openalex.org/W2555132802", "title": "Effectiveness of social work intervention with a systematic approach to improve general health in opioid addicts in addiction treatment centers", "corpus": "iran_affiliated", "doi": "https://doi.org/10.2147/prbm.s110705", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.dovepress.com/getfile.php?fileID=33639", "landing_page_url": "https://doi.org/10.2147/prbm.s110705", "content_length_bytes": null}
|
| 139 |
+
{"openalex_id": "https://openalex.org/W4283591565", "title": "Differentiating Cannabis Products: Drugs, Food, and Supplements", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3389/fphar.2022.906038", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fphar.2022.906038/pdf", "landing_page_url": "https://doi.org/10.3389/fphar.2022.906038", "content_length_bytes": 1140055}
|
| 140 |
+
{"openalex_id": "https://openalex.org/W2075864517", "title": "A Review Study on the Effect of Iranian Herbal Medicines on Opioid Withdrawal Syndrome", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1177/2156587215577896", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2156587215577896", "landing_page_url": "https://doi.org/10.1177/2156587215577896", "content_length_bytes": null}
|
| 141 |
+
{"openalex_id": "https://openalex.org/W3016358938", "title": "Addiction Recovery: A Systematized Review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.18502/ijps.v15i2.2691", "is_oa": true, "oa_status": "gold", "pdf_url": null, "landing_page_url": "https://doi.org/10.18502/ijps.v15i2.2691", "content_length_bytes": null}
|
| 142 |
+
{"openalex_id": "https://openalex.org/W2593071785", "title": "Positive psychology interventions for internet addiction treatment", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.chb.2017.02.065", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 143 |
+
{"openalex_id": "https://openalex.org/W2116737807", "title": "Survival Analysis of Drug Abuse Relapse in Addiction Treatment Centers", "corpus": "iran_affiliated", "doi": "https://doi.org/10.5812/ijhrba.23402", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://ijhrba.kowsarpub.com/cdn/dl/7397e740-509d-11e7-8314-97f1ee0edffd", "landing_page_url": "https://doi.org/10.5812/ijhrba.23402", "content_length_bytes": null}
|
| 144 |
+
{"openalex_id": "https://openalex.org/W2285402438", "title": "Clinical features, course and treatment of methamphetamine-induced psychosis in psychiatric inpatients", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12888-016-0745-5", "is_oa": true, "oa_status": "gold", "pdf_url": "https://bmcpsychiatry.biomedcentral.com/counter/pdf/10.1186/s12888-016-0745-5", "landing_page_url": "https://doi.org/10.1186/s12888-016-0745-5", "content_length_bytes": 448158}
|
| 145 |
+
{"openalex_id": "https://openalex.org/W2901726599", "title": "The potential role of the orexin reward system in future treatments for opioid drug abuse", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.brainres.2018.11.023", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 146 |
+
{"openalex_id": "https://openalex.org/W2286803559", "title": "Emotion Dysregulation Mediates Between Childhood Emotional Abuse and Motives for Substance Use", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.apnu.2016.02.007", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 147 |
+
{"openalex_id": "https://openalex.org/W2321561360", "title": "Acupuncture therapy for drug addiction", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s13020-016-0088-7", "is_oa": true, "oa_status": "gold", "pdf_url": "https://cmjournal.biomedcentral.com/track/pdf/10.1186/s13020-016-0088-7", "landing_page_url": "https://doi.org/10.1186/s13020-016-0088-7", "content_length_bytes": 1264121}
|
| 148 |
+
{"openalex_id": "https://openalex.org/W3015063760", "title": "The Effect of Transcranial Direct Current Stimulation on Relapse, Anxiety, and Depression in Patients With Opioid Dependence Under Methadone Maintenance Treatment: A Pilot Study", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3389/fphar.2020.00401", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/articles/10.3389/fphar.2020.00401/pdf", "landing_page_url": "https://doi.org/10.3389/fphar.2020.00401", "content_length_bytes": 717938}
|
| 149 |
+
{"openalex_id": "https://openalex.org/W3178885269", "title": "Factors affecting substance use relapse among Iranian addicts", "corpus": "iran_affiliated", "doi": "https://doi.org/10.4103/jehp.jehp_984_20", "is_oa": true, "oa_status": "gold", "pdf_url": null, "landing_page_url": "https://doi.org/10.4103/jehp.jehp_984_20", "content_length_bytes": null}
|
| 150 |
+
{"openalex_id": "https://openalex.org/W1891865579", "title": "Effectiveness of Mindfulness-Based Group Therapy Compared to the Usual Opioid Dependence Treatment.", "corpus": "iran_affiliated", "doi": null, "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 151 |
+
{"openalex_id": "https://openalex.org/W2796615944", "title": "The State of US Health, 1990-2016", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1001/jama.2018.0158", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://jamanetwork.com/journals/jama/articlepdf/2678018/jama_mokdad_2018_oi_180029.pdf", "landing_page_url": "https://doi.org/10.1001/jama.2018.0158", "content_length_bytes": null}
|
| 152 |
+
{"openalex_id": "https://openalex.org/W4210299062", "title": "Bioactive Peptides: Synthesis, Sources, Applications, and Proposed Mechanisms of Action", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3390/ijms23031445", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.mdpi.com/1422-0067/23/3/1445/pdf?version=1643344544", "landing_page_url": "https://doi.org/10.3390/ijms23031445", "content_length_bytes": null}
|
| 153 |
+
{"openalex_id": "https://openalex.org/W2752001084", "title": "Public Health and Public Order Outcomes Associated with Supervised Drug Consumption Facilities: a Systematic Review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1007/s11904-017-0363-y", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 154 |
+
{"openalex_id": "https://openalex.org/W3121803215", "title": "Anti-inflammatory potential of Quercetin in COVID-19 treatment", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12950-021-00268-6", "is_oa": true, "oa_status": "gold", "pdf_url": "https://journal-inflammation.biomedcentral.com/counter/pdf/10.1186/s12950-021-00268-6", "landing_page_url": "https://doi.org/10.1186/s12950-021-00268-6", "content_length_bytes": 757191}
|
| 155 |
+
{"openalex_id": "https://openalex.org/W2461660560", "title": "Prevention of transmission of HIV, hepatitis B virus, hepatitis C virus, and tuberculosis in prisoners", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/s0140-6736(16)30769-3", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 156 |
+
{"openalex_id": "https://openalex.org/W2495307074", "title": "The Role of Visceral Hypersensitivity in Irritable Bowel Syndrome: Pharmacological Targets and Novel Treatments", "corpus": "iran_affiliated", "doi": "https://doi.org/10.5056/jnm16001", "is_oa": true, "oa_status": "diamond", "pdf_url": "http://www.jnmjournal.org/journal/download_pdf.php?doi=10.5056/jnm16001", "landing_page_url": "https://doi.org/10.5056/jnm16001", "content_length_bytes": null}
|
| 157 |
+
{"openalex_id": "https://openalex.org/W2999434466", "title": "Repeated stimulation of the dorsolateral-prefrontal cortex improves executive dysfunctions and craving in drug addiction: A randomized, double-blind, parallel-group study", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.brs.2019.12.028", "is_oa": true, "oa_status": "gold", "pdf_url": "http://www.brainstimjrnl.com/article/S1935861X19304991/pdf", "landing_page_url": "https://doi.org/10.1016/j.brs.2019.12.028", "content_length_bytes": null}
|
| 158 |
+
{"openalex_id": "https://openalex.org/W2277958255", "title": "Opioid Drugs in Patients With Liver Disease: A Systematic Review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.5812/hepatmon.32636", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://brieflands.com/articles/hepatmon-55414.pdf", "landing_page_url": "https://doi.org/10.5812/hepatmon.32636", "content_length_bytes": 168645}
|
| 159 |
+
{"openalex_id": "https://openalex.org/W4385836886", "title": "Closing the loop between brain and electrical stimulation: towards precision neuromodulation treatments", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1038/s41398-023-02565-5", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.nature.com/articles/s41398-023-02565-5.pdf", "landing_page_url": "https://doi.org/10.1038/s41398-023-02565-5", "content_length_bytes": 2996917}
|
| 160 |
+
{"openalex_id": "https://openalex.org/W2990116293", "title": "Nomophobia and Health Hazards: Smartphone Use and Addiction Among University Students", "corpus": "iran_affiliated", "doi": "https://doi.org/10.4103/ijpvm.ijpvm_184_19", "is_oa": true, "oa_status": "gold", "pdf_url": null, "landing_page_url": "https://doi.org/10.4103/ijpvm.ijpvm_184_19", "content_length_bytes": null}
|
| 161 |
+
{"openalex_id": "https://openalex.org/W2793972985", "title": "The role of nutrients in the pathogenesis and treatment of migraine headaches: Review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.biopha.2018.03.059", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 162 |
+
{"openalex_id": "https://openalex.org/W3136800466", "title": "A review on tramadol toxicity: mechanism of action, clinical presentation, and treatment", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1007/s11419-020-00569-0", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://link.springer.com/content/pdf/10.1007/s11419-020-00569-0.pdf", "landing_page_url": "https://doi.org/10.1007/s11419-020-00569-0", "content_length_bytes": 879492}
|
| 163 |
+
{"openalex_id": "https://openalex.org/W3083027226", "title": "It Is Our Turn to Get Cannabis High: Put Cannabinoids in Food and Health Baskets", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3390/molecules25184036", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.mdpi.com/1420-3049/25/18/4036/pdf", "landing_page_url": "https://doi.org/10.3390/molecules25184036", "content_length_bytes": null}
|
| 164 |
+
{"openalex_id": "https://openalex.org/W4281787517", "title": "Extracellular vesicles of cannabis with high CBD content induce anticancer signaling in human hepatocellular carcinoma", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.biopha.2022.113209", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.sciencedirect.com/science/article/pii/S0753332222005984/pdf", "landing_page_url": "https://doi.org/10.1016/j.biopha.2022.113209", "content_length_bytes": null}
|
| 165 |
+
{"openalex_id": "https://openalex.org/W2767857090", "title": "Assessment of Genetic Diversity and Population Structure in Iranian Cannabis Germplasm", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1038/s41598-017-15816-5", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.nature.com/articles/s41598-017-15816-5.pdf", "landing_page_url": "https://doi.org/10.1038/s41598-017-15816-5", "content_length_bytes": 1807596}
|
| 166 |
+
{"openalex_id": "https://openalex.org/W2615519130", "title": "A Narrative Review of Acute Adult Poisoning in Iran.", "corpus": "iran_affiliated", "doi": null, "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5523040", "content_length_bytes": null}
|
| 167 |
+
{"openalex_id": "https://openalex.org/W2797671008", "title": "Islam and cannabis: Legalisation and religious debate in Iran", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.drugpo.2018.03.009", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.sciencedirect.com/science/article/pii/S0955395918300793/pdf", "landing_page_url": "https://doi.org/10.1016/j.drugpo.2018.03.009", "content_length_bytes": null}
|
| 168 |
+
{"openalex_id": "https://openalex.org/W4380991962", "title": "Challenges in addiction-affected families: a systematic review of qualitative studies", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12888-023-04927-1", "is_oa": true, "oa_status": "gold", "pdf_url": "https://bmcpsychiatry.biomedcentral.com/counter/pdf/10.1186/s12888-023-04927-1", "landing_page_url": "https://doi.org/10.1186/s12888-023-04927-1", "content_length_bytes": 2175437}
|
| 169 |
+
{"openalex_id": "https://openalex.org/W4289745178", "title": "RETRACTED ARTICLE: Quality of life and its correlated factors among patients with substance use disorders: a systematic review and meta-analysis", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s13690-022-00940-0", "is_oa": true, "oa_status": "gold", "pdf_url": "https://archpublichealth.biomedcentral.com/counter/pdf/10.1186/s13690-022-00940-0", "landing_page_url": "https://doi.org/10.1186/s13690-022-00940-0", "content_length_bytes": 2343757}
|
| 170 |
+
{"openalex_id": "https://openalex.org/W4294921688", "title": "Nanobiosensors for detection of opioids: A review of latest advancements", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.ejpb.2022.08.017", "is_oa": true, "oa_status": "hybrid", "pdf_url": "https://www.sciencedirect.com/science/article/pii/S0939641122001825/pdf", "landing_page_url": "https://doi.org/10.1016/j.ejpb.2022.08.017", "content_length_bytes": null}
|
| 171 |
+
{"openalex_id": "https://openalex.org/W3154562936", "title": "Smoking, alcohol and opioids effect on coronary microcirculation: an update overview", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12872-021-01990-y", "is_oa": true, "oa_status": "gold", "pdf_url": "https://bmccardiovascdisord.biomedcentral.com/track/pdf/10.1186/s12872-021-01990-y", "landing_page_url": "https://doi.org/10.1186/s12872-021-01990-y", "content_length_bytes": 1263266}
|
| 172 |
+
{"openalex_id": "https://openalex.org/W4391445622", "title": "Stigma toward substance use disorders: a multinational perspective and call for action", "corpus": "iran_affiliated", "doi": "https://doi.org/10.3389/fpsyt.2024.1295818", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.frontiersin.org/journals/psychiatry/articles/10.3389/fpsyt.2024.1295818/pdf", "landing_page_url": "https://doi.org/10.3389/fpsyt.2024.1295818", "content_length_bytes": 550414}
|
| 173 |
+
{"openalex_id": "https://openalex.org/W4383710830", "title": "Suicidality risk after using cannabis and cannabinoids: An umbrella review", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1080/19585969.2023.2231466", "is_oa": true, "oa_status": "diamond", "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/19585969.2023.2231466?needAccess=true&role=button", "landing_page_url": "https://doi.org/10.1080/19585969.2023.2231466", "content_length_bytes": null}
|
| 174 |
+
{"openalex_id": "https://openalex.org/W4292466668", "title": "Effects of sleep quality on the association between problematic internet use and quality of life in people with substance use disorder", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1192/bjo.2022.557", "is_oa": true, "oa_status": "gold", "pdf_url": "https://www.cambridge.org/core/services/aop-cambridge-core/content/view/2E9652D7C6B8EC63A262917B08934699/S2056472422005579a.pdf/div-class-title-effects-of-sleep-quality-on-the-association-between-problematic-internet-use-and-quality-of-life-in-people-with-substance-use-disorder-div.pdf", "landing_page_url": "https://doi.org/10.1192/bjo.2022.557", "content_length_bytes": null}
|
| 175 |
+
{"openalex_id": "https://openalex.org/W4407196018", "title": "Cannabis Use Disorder Emergency Department Visits and Hospitalizations and 5-Year Mortality", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1001/jamanetworkopen.2024.57852", "is_oa": true, "oa_status": "gold", "pdf_url": "https://jamanetwork.com/journals/jamanetworkopen/articlepdf/2829914/myran_2025_oi_241619_1741789723.16626.pdf", "landing_page_url": "https://doi.org/10.1001/jamanetworkopen.2024.57852", "content_length_bytes": null}
|
| 176 |
+
{"openalex_id": "https://openalex.org/W2411323064", "title": "Perspectives on neurocognitive rehabilitation as an adjunct treatment for addictive disorders", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/bs.pbr.2015.07.022", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 177 |
+
{"openalex_id": "https://openalex.org/W2787687656", "title": "Using Metabolomics to Investigate Biomarkers of Drug Addiction", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.molmed.2017.12.005", "is_oa": true, "oa_status": "bronze", "pdf_url": "http://www.cell.com/article/S1471491417302289/pdf", "landing_page_url": "https://doi.org/10.1016/j.molmed.2017.12.005", "content_length_bytes": null}
|
| 178 |
+
{"openalex_id": "https://openalex.org/W2981435075", "title": "Orexin-1 Receptor Signaling in Ventral Pallidum Regulates Motivation for the Opioid Remifentanil", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1523/jneurosci.0255-19.2019", "is_oa": true, "oa_status": "bronze", "pdf_url": "https://www.jneurosci.org/content/jneuro/39/49/9831.full.pdf", "landing_page_url": "https://doi.org/10.1523/jneurosci.0255-19.2019", "content_length_bytes": null}
|
| 179 |
+
{"openalex_id": "https://openalex.org/W2769941763", "title": "Cognitive rehabilitation for individuals with opioid use disorder: A randomized controlled trial", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1080/09602011.2017.1391103", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 180 |
+
{"openalex_id": "https://openalex.org/W2799355503", "title": "Opioid Use Disorder Induces Oxidative Stress and Inflammation The Attenuating Effect of Methadone Maintenance Treatment", "corpus": "iran_affiliated", "doi": "https://doi.org/10.5281/zenodo.17080915", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://doaj.org/article/ff27ac1b0082474898c99945b7082869", "content_length_bytes": null}
|
| 181 |
+
{"openalex_id": "https://openalex.org/W3022536673", "title": "Mathematical models of HIV/AIDS and drug addiction in prisons", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1140/epjp/s13360-020-00400-0", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 182 |
+
{"openalex_id": "https://openalex.org/W2972570320", "title": "Persistent effects of the orexin-1 receptor antagonist SB-334867 on motivation for the fast acting opioid remifentanil", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.brainres.2019.146461", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7069781", "content_length_bytes": null}
|
| 183 |
+
{"openalex_id": "https://openalex.org/W3164167749", "title": "Crystal methamphetamine use in British Columbia, Canada: A cross-sectional study of people who access harm reduction services", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1371/journal.pone.0252090", "is_oa": true, "oa_status": "gold", "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0252090&type=printable", "landing_page_url": "https://doi.org/10.1371/journal.pone.0252090", "content_length_bytes": 587412}
|
| 184 |
+
{"openalex_id": "https://openalex.org/W2498896755", "title": "Effectiveness of Mindfulness-Based Relapse Prevention for Co-occurring Substance Use and Depression Disorders", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1007/s12671-016-0576-y", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 185 |
+
{"openalex_id": "https://openalex.org/W2257494416", "title": "The effect of different concentrations of TDZ and BA on in vitro regeneration of Iranian cannabis (Cannabis sativa) using cotyledon and epicotyl explants", "corpus": "iran_affiliated", "doi": "https://doi.org/10.22058/jpmb.2015.15371", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 186 |
+
{"openalex_id": "https://openalex.org/W2903865762", "title": "Single high-dose buprenorphine for opioid craving during withdrawal", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s13063-018-3055-z", "is_oa": true, "oa_status": "gold", "pdf_url": "https://trialsjournal.biomedcentral.com/counter/pdf/10.1186/s13063-018-3055-z", "landing_page_url": "https://doi.org/10.1186/s13063-018-3055-z", "content_length_bytes": 795104}
|
| 187 |
+
{"openalex_id": "https://openalex.org/W3028959192", "title": "Crosstalk between Sleep Disturbance and Opioid Use Disorder: A Narrative Review.", "corpus": "iran_affiliated", "doi": "https://doi.org/10.22122/ahj.v12i2.249", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7395935", "content_length_bytes": null}
|
| 188 |
+
{"openalex_id": "https://openalex.org/W2201776622", "title": "Predictors of Continued Use of Extended-Released Naltrexone (XR-NTX) for Opioid-Dependence: An Analysis of Heroin and Non-Heroin Opioid Users in Los Angeles County", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.jsat.2015.12.004", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 189 |
+
{"openalex_id": "https://openalex.org/W2760952519", "title": "Gender differences in substance use patterns and disorders among an Iranian patient sample receiving methadone maintenance treatment", "corpus": "iran_affiliated", "doi": "https://doi.org/10.19082/5354", "is_oa": true, "oa_status": "gold", "pdf_url": "http://www.ephysician.ir/2017/5354.pdf", "landing_page_url": "https://doi.org/10.19082/5354", "content_length_bytes": 189904}
|
| 190 |
+
{"openalex_id": "https://openalex.org/W3165196861", "title": "Deep brain stimulation of the nucleus accumbens/ventral capsule for severe and intractable opioid and benzodiazepine use disorder.", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1037/pha0000453", "is_oa": true, "oa_status": "hybrid", "pdf_url": null, "landing_page_url": "https://doi.org/10.1037/pha0000453", "content_length_bytes": null}
|
| 191 |
+
{"openalex_id": "https://openalex.org/W3015638401", "title": "The impact of motivational interviewing on relapse to substance use among women in Iran: a randomized clinical trial", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12888-020-02561-9", "is_oa": true, "oa_status": "gold", "pdf_url": "https://bmcpsychiatry.biomedcentral.com/track/pdf/10.1186/s12888-020-02561-9", "landing_page_url": "https://doi.org/10.1186/s12888-020-02561-9", "content_length_bytes": 672815}
|
| 192 |
+
{"openalex_id": "https://openalex.org/W2949416517", "title": "Understanding the relapse process: exploring Iranian women’s substance use experiences", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s13011-019-0216-3", "is_oa": true, "oa_status": "gold", "pdf_url": "https://substanceabusepolicy.biomedcentral.com/track/pdf/10.1186/s13011-019-0216-3", "landing_page_url": "https://doi.org/10.1186/s13011-019-0216-3", "content_length_bytes": 666502}
|
| 193 |
+
{"openalex_id": "https://openalex.org/W4220755145", "title": "Setting the policy agenda for the treatment of substance use disorders in Iran", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1186/s12954-022-00612-w", "is_oa": true, "oa_status": "gold", "pdf_url": "https://harmreductionjournal.biomedcentral.com/track/pdf/10.1186/s12954-022-00612-w", "landing_page_url": "https://doi.org/10.1186/s12954-022-00612-w", "content_length_bytes": 1024854}
|
| 194 |
+
{"openalex_id": "https://openalex.org/W3162981813", "title": "The Role of Impulsivity and Sensitivity to Reward in Dropout of Addiction Treatment in Heroin Addicts.", "corpus": "iran_affiliated", "doi": "https://doi.org/10.22122/ahj.v13i1.290", "is_oa": true, "oa_status": "green", "pdf_url": null, "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/8080170", "content_length_bytes": null}
|
| 195 |
+
{"openalex_id": "https://openalex.org/W2743169768", "title": "Association of OPRK1 gene polymorphisms with opioid dependence in addicted men undergoing methadone treatment in an Iranian population", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1080/10550887.2017.1361724", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 196 |
+
{"openalex_id": "https://openalex.org/W2969946430", "title": "Adolescent nicotine challenge promotes the future vulnerability to opioid addiction: Involvement of lateral paragigantocellularis neurons", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.lfs.2019.116784", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 197 |
+
{"openalex_id": "https://openalex.org/W2996338856", "title": "Effectiveness of Emotion Regulation Group Therapy on Craving, Emotion Problems, and Marital Satisfaction in Patients with Substance Use Disorders: A Randomized Clinical Trial", "corpus": "iran_affiliated", "doi": "https://doi.org/10.18502/ijps.v14i4.1978", "is_oa": true, "oa_status": "gold", "pdf_url": null, "landing_page_url": "https://doi.org/10.18502/ijps.v14i4.1978", "content_length_bytes": null}
|
| 198 |
+
{"openalex_id": "https://openalex.org/W4409605265", "title": "A systematic review on the role of EEG and fMRI-Neurofeedback training in the treatment of substance use disorders and behavioral addiction", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.psychres.2025.116474", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
| 199 |
+
{"openalex_id": "https://openalex.org/W3175183069", "title": "Comparison of self-reported substance use with biological testing among treatment-seeking patients with opioid use disorder", "corpus": "iran_affiliated", "doi": "https://doi.org/10.1016/j.jsat.2021.108555", "is_oa": false, "oa_status": "closed", "pdf_url": null, "landing_page_url": null, "content_length_bytes": null}
|
data/articles/open_access_pdf_report.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"records": 199,
|
| 3 |
+
"open_access_records": 167,
|
| 4 |
+
"direct_pdf_urls": 128,
|
| 5 |
+
"sizes_known": 48,
|
| 6 |
+
"known_total_bytes": 73418942,
|
| 7 |
+
"known_total_mb": 70.02,
|
| 8 |
+
"estimated_total_mb_if_avg": 186.71,
|
| 9 |
+
"notice": "Only legal OA URLs; no paywall bypass. Size is an HTTP estimate."
|
| 10 |
+
}
|
scripts/discover_open_access_pdfs.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Discover legal Open Access PDF URLs and estimate sizes; does not bypass paywalls."""
|
| 2 |
+
import concurrent.futures, json, urllib.parse, urllib.request
|
| 3 |
+
from pathlib import Path
|
| 4 |
+
FILES=['data/articles/international_100.jsonl','data/articles/iran_affiliated_100.jsonl']
|
| 5 |
+
def api(ids):
|
| 6 |
+
f='openalex_id:'+('|'.join(x.rsplit('/',1)[-1] for x in ids));u='https://api.openalex.org/works?filter='+urllib.parse.quote(f)+'&per-page=50&mailto=research@example.invalid'
|
| 7 |
+
return json.load(urllib.request.urlopen(u,timeout=60))['results']
|
| 8 |
+
def size(url):
|
| 9 |
+
if not url:return None
|
| 10 |
+
try:
|
| 11 |
+
req=urllib.request.Request(url,method='HEAD',headers={'User-Agent':'Mozilla/5.0 research metadata checker'})
|
| 12 |
+
with urllib.request.urlopen(req,timeout=12) as r:
|
| 13 |
+
n=r.headers.get('Content-Length');return int(n) if n and n.isdigit() else None
|
| 14 |
+
except:return None
|
| 15 |
+
def main():
|
| 16 |
+
rows=[]
|
| 17 |
+
for f in FILES:rows += [json.loads(x) for x in open(f,encoding='utf-8') if x.strip()]
|
| 18 |
+
byid={x['openalex_id'].rsplit('/',1)[-1]:x for x in rows}; works=[]
|
| 19 |
+
ids=list(byid)
|
| 20 |
+
for i in range(0,len(ids),50):works+=api(ids[i:i+50])
|
| 21 |
+
manifest=[]
|
| 22 |
+
for w in works:
|
| 23 |
+
oid=w['id'].rsplit('/',1)[-1]; base=byid.get(oid,{}); loc=w.get('best_oa_location') or {}; pdf=loc.get('pdf_url')
|
| 24 |
+
manifest.append({'openalex_id':w['id'],'title':w.get('title'),'corpus':base.get('corpus'),'doi':w.get('doi'),'is_oa':(w.get('open_access') or {}).get('is_oa',False),'oa_status':(w.get('open_access') or {}).get('oa_status'),'pdf_url':pdf,'landing_page_url':loc.get('landing_page_url')})
|
| 25 |
+
with concurrent.futures.ThreadPoolExecutor(max_workers=12) as ex:
|
| 26 |
+
sizes=list(ex.map(lambda x:size(x['pdf_url']),manifest))
|
| 27 |
+
for x,n in zip(manifest,sizes):x['content_length_bytes']=n
|
| 28 |
+
out=Path('data/articles/open_access_pdf_manifest.jsonl');out.write_text('\n'.join(json.dumps(x,ensure_ascii=False) for x in manifest)+'\n',encoding='utf-8')
|
| 29 |
+
pdf=[x for x in manifest if x['pdf_url']]; known=[x['content_length_bytes'] for x in pdf if x['content_length_bytes']]
|
| 30 |
+
report={'records':len(manifest),'open_access_records':sum(x['is_oa'] for x in manifest),'direct_pdf_urls':len(pdf),'sizes_known':len(known),'known_total_bytes':sum(known),'known_total_mb':round(sum(known)/1024/1024,2),'estimated_total_mb_if_avg':round((sum(known)/len(known)*len(pdf))/1024/1024,2) if known else None,'notice':'Only legal OA URLs; no paywall bypass. Size is an HTTP estimate.'}
|
| 31 |
+
Path('data/articles/open_access_pdf_report.json').write_text(json.dumps(report,ensure_ascii=False,indent=2),encoding='utf-8');print(report)
|
| 32 |
+
if __name__=='__main__':main()
|