Sorting all library imports with isort

This commit is contained in:
Karim shoair
2024-11-30 14:02:06 +02:00
parent 26bfa88e50
commit 1a17b2ce46
24 changed files with 110 additions and 115 deletions
+9 -8
View File
@@ -1,17 +1,18 @@
import functools
import time
import timeit
import functools
import requests
from statistics import mean
from scrapling import Adaptor
from parsel import Selector
from lxml import etree, html
from bs4 import BeautifulSoup
from pyquery import PyQuery as pq
import requests
from autoscraper import AutoScraper
from selectolax.parser import HTMLParser
from bs4 import BeautifulSoup
from lxml import etree, html
from mechanicalsoup import StatefulBrowser
from parsel import Selector
from pyquery import PyQuery as pq
from selectolax.parser import HTMLParser
from scrapling import Adaptor
large_html = '<html><body>' + '<div class="item">' * 5000 + '</div>' * 5000 + '</body></html>'