Python 3 - 3rd-party Libraries
Last Updated: 2021-11-19
urllib
import urllib.request
html = urllib.request.urlopen(url).read()
Tornado
- http://www.tornadoweb.org/en/stable/
- Tornado provides a non-blocking HTTP client, but support for other protocols is limited or non-existent.
Twisted
Pillow
For image processing
Scikit Learn
LogisticRegression
from sklearn.linear_models import LogisticRegression
lr = LogisticRegression()
lr.fit(train, target)
results = lr.predict(test)