Skip to content

Commit

Permalink
try decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
markwilkinson committed May 31, 2024
1 parent 54d663d commit 5182dce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion content/FLAIR-GG/flair.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,16 @@
"import ssl\n",
"import requests\n",
"import urllib3\n",
"import urllib3.parse\n",
"urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)\n",
"\n",
"url = \"https://bgv.cbgp.upm.es/DAV/home/LDP/bbfaa78d-8f22-4753-8fe5-a137477fd7a4\"\n",
"\n",
"\n",
"response = requests.get(url)\n",
"print(response.content)\n",
"response = urllib3.parse.unquote(response.content)\n",
"\n",
"print(response)\n",
"\n"
]
},
Expand Down

0 comments on commit 5182dce

Please sign in to comment.