Hello, I can not find a simple library for Python 3 (only wget is there), but it has very few functions, I would like to find something better. Tell me if you know only for Python 3
Closed due to the fact that it is necessary to reformulate the question so that it was possible to give an objectively correct answer by the participants jfs , aleksandr barakin , Alex , Denis Bubnov , Kromster 30 Nov '16 at 3:57 .
The question gives rise to endless debates and discussions based not on knowledge, but on opinions. To get an answer, rephrase your question so that it can be given an unambiguously correct answer, or delete the question altogether. If the question can be reformulated according to the rules set out in the certificate , edit it .
2 answers
Check out the grab library. Here is a quote from its Russian-language documentation :
Grab is a library for working with network documents. Main areas of use for Grab:
extraction of data from websites (site scraping) work with network APIs automation of work with websites, for example, the logger of profiles on any site
What exactly could you not do with wget? Looked here? wget description in russian
especially the examples at the end ...
- Wget (lib) in Python - Evleaps Corp.
- 2and what the system wget does not suit ?? Why is it necessarily the one in Python? And you never said that you could not specifically make a wget volume. - dio4
urllib.request, built into the python - andreymalurllib.request.urlretrieve(url, filename)to download a file? What does "little function" mean? What are you trying to do? Try asking a specific question: "how to make X under the condition Y, Z" - jfs