Ausgabe der neuen DB Einträge
This commit is contained in:
parent
bad48e1627
commit
cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions
31
venv/lib/python3.9/site-packages/scrapy/utils/versions.py
Normal file
31
venv/lib/python3.9/site-packages/scrapy/utils/versions.py
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
import platform
|
||||
import sys
|
||||
|
||||
import cryptography
|
||||
import cssselect
|
||||
import lxml.etree
|
||||
import parsel
|
||||
import twisted
|
||||
import w3lib
|
||||
|
||||
import scrapy
|
||||
from scrapy.utils.ssl import get_openssl_version
|
||||
|
||||
|
||||
def scrapy_components_versions():
|
||||
lxml_version = ".".join(map(str, lxml.etree.LXML_VERSION))
|
||||
libxml2_version = ".".join(map(str, lxml.etree.LIBXML_VERSION))
|
||||
|
||||
return [
|
||||
("Scrapy", scrapy.__version__),
|
||||
("lxml", lxml_version),
|
||||
("libxml2", libxml2_version),
|
||||
("cssselect", cssselect.__version__),
|
||||
("parsel", parsel.__version__),
|
||||
("w3lib", w3lib.__version__),
|
||||
("Twisted", twisted.version.short()),
|
||||
("Python", sys.version.replace("\n", "- ")),
|
||||
("pyOpenSSL", get_openssl_version()),
|
||||
("cryptography", cryptography.__version__),
|
||||
("Platform", platform.platform()),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue