Kaynağa Gözat

Switch from requests to httpx

master
David Larlet 4 yıl önce
ebeveyn
işleme
9547c1d65f
Veri tabanında bu imza için bilinen anahtar bulunamadı
2 değiştirilmiş dosya ile 3 ekleme ve 4 silme
  1. 2
    2
      cache.py
  2. 1
    2
      requirements.txt

+ 2
- 2
cache.py Dosyayı Görüntüle

@@ -10,9 +10,9 @@ from http.server import SimpleHTTPRequestHandler
from pathlib import Path
from time import perf_counter

import httpx
import lxml
import markdown
import requests
from jinja2 import Environment as Env
from jinja2 import FileSystemLoader
from minicli import cli, run, wrap
@@ -72,7 +72,7 @@ def extract_page(url):
embeddable in the template and rendered as is.
"""
# Retrieves the resource and turns it into a Readability doc.
response = requests.get(url)
response = httpx.get(url)
document = Document(response.text)

# The short title is more concise and readable.

+ 1
- 2
requirements.txt Dosyayı Görüntüle

@@ -1,6 +1,5 @@
Jinja2==2.10.3
Markdown==3.1.1
MarkupSafe==1.1.1
httpx==0.7.8
minicli==0.4.4
readability-lxml==0.7.1
requests==2.22.0

Loading…
İptal
Kaydet