From 92f05a67a44c5d2a7a60280d7083cb96f3685371 Mon Sep 17 00:00:00 2001 From: Dhruvil Shah <48760936+jackfrost1411@users.noreply.github.com> Date: Sun, 18 Jun 2023 17:47:00 -0700 Subject: [PATCH] Add markdown to specify important arguments (#6246) To bypass SSL verification errors during web scraping, you can include the ssl_verify=False parameter along with the headers parameter. This combination of arguments proves useful, especially for beginners in the field of web scraping. Fixes #1829 #### Before submitting #### Who can review? Tag maintainers/contributors who might be interested: @hwchase17 @eyurtsev --> --------- Co-authored-by: Harrison Chase --- .../document_loaders/integrations/url.ipynb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/extras/modules/data_connection/document_loaders/integrations/url.ipynb b/docs/extras/modules/data_connection/document_loaders/integrations/url.ipynb index f3f25493..f0f74dbe 100644 --- a/docs/extras/modules/data_connection/document_loaders/integrations/url.ipynb +++ b/docs/extras/modules/data_connection/document_loaders/integrations/url.ipynb @@ -33,6 +33,14 @@ "]" ] }, + { + "cell_type": "markdown", + "id": "33089aba-ff74-4d00-8f40-9449c29587cc", + "metadata": {}, + "source": [ + "Pass in ssl_verify=False with headers=headers to get past ssl_verification error." + ] + }, { "cell_type": "code", "execution_count": 3,