Dieser Artikel stellt die Funktionen und Installationsmethoden einiger gängiger Pakete in Python vor. Ich hoffe, dass er Freunden, die Python lernen, hilfreich sein wird!
Die grundlegenden Verwendungszwecke und Installationsmethoden einiger Pakete in Python
pika können zum Herstellen einer Verbindung verwendet werden Rabbitmq
pip install pika -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
requests ist eine HTTP-Bibliothek
Request unterstützt HTTP-Verbindungspersistenz und Verbindungspooling, unterstützt die Verwendung von Cookies zur Aufrechterhaltung von Sitzungen, unterstützt das Hochladen von Dateien und unterstützt Kodierung automatischer Antwortinhalte, unterstützt internationalisierte URLs und automatische Kodierung von POST-Daten.
pip install requests -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
SQLAlchemy ist ein ORM-Framework
pip install SQLAlchemy -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
Pymongo ist eine Bibliothek, die eine Verbindung zu Mongodb herstellt
pip install pymongo -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
MySQL-python ist eine Bibliothek, die eine Verbindung zu MySQL
apt-get install python-mysqldb
gearmanDistributed Task System
pip install gearman -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
lxml ist eine Parsing-Bibliothek für Python, die HTML- und XML-Parsing unterstützt
pip install lxml -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
elasticsearch-Bibliothek, es-Client-Bibliothek
pip install elasticsearch -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
pycurl ist eine Curl-Bibliothek
pip install pycurl -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
apt-get install libcurl4-openssl-dev
Python-Trainingsvideos, alle auf der Python-Lernwebsite, willkommen zum Online-Lernen!
Das obige ist der detaillierte Inhalt vonDie grundlegenden Verwendungszwecke und Installationsmethoden einiger Pakete in Python. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!