diff --git a/organization-works/openalex_get_works_by_organization.ipynb b/organization-works/openalex_get_works_by_organization.ipynb index 86863cf..2b09b32 100644 --- a/organization-works/openalex_get_works_by_organization.ipynb +++ b/organization-works/openalex_get_works_by_organization.ipynb @@ -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",