{ "metadata": { "kernelspec": { "name": "python", "display_name": "Python (Pyodide)", "language": "python" }, "language_info": { "codemirror_mode": { "name": "python", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8" } }, "nbformat_minor": 4, "nbformat": 4, "cells": [ { "cell_type": "code", "source": "%pip install requests\nimport requests", "metadata": { "trusted": true }, "outputs": [], "execution_count": 5 }, { "cell_type": "code", "source": "requests.get(\"https://jupyter.org\").url", "metadata": { "trusted": true }, "outputs": [ { "name": "stderr", "text": "/lib/python3.11/site-packages/urllib3/connectionpool.py:1101: InsecureRequestWarning: Unverified HTTPS request is being made to host 'jupyter.org'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#tls-warnings\n warnings.warn(\n", "output_type": "stream" }, { "execution_count": 10, "output_type": "execute_result", "data": { "text/plain": "'https://jupyter.org/'" }, "metadata": {} } ], "execution_count": 10 }, { "cell_type": "code", "source": "", "metadata": { "trusted": true }, "outputs": [], "execution_count": null } ] }