Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hebosse authored Mar 1, 2023
1 parent 900f568 commit f5e20e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions organization-works/openalex_get_works_by_organization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
"def query_openalex_for_organization2works(ror_id):\n",
" cursor='*' \n",
" \n",
" while cursor != None: # Error, Problem letzte Seite\n",
" while cursor != None: \n",
" response = requests.get('https://api.openalex.org/works?filter=authorships.institutions.ror:https://ror.org/04qmmjx98'\n",
" '&cursor='+cursor\n",
" ) ####### Suchbegriffe müssen manuell eingegeben werden\n",
" ) \n",
" response.raise_for_status()\n",
" result=response.json()\n",
" cursor = result['meta']['next_cursor']\n",
Expand Down

0 comments on commit f5e20e2

Please sign in to comment.