Przeglądaj źródła

Update links.py

Fixed SSL Error
pull/3365/head
Murtaza rizvi 1 rok temu
rodzic
commit
3b02394341
1 zmienionych plików z 4 dodań i 0 usunięć
  1. +4
    -0
      scripts/validate/links.py

+ 4
- 0
scripts/validate/links.py Wyświetl plik

@@ -3,11 +3,15 @@
import re
import sys
import random
import ssl
from typing import List, Tuple

import requests
from requests.models import Response

ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE

def find_links_in_text(text: str) -> List[str]:
"""Find links in a text and return a list of URLs."""


Ładowanie…
Anuluj
Zapisz