This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients christian.heimes, python-dev, rhettinger, tom.pohl
Date 2021-11-01.18:12:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635790341.52.0.7385767855.issue45466@roundup.psfhosted.org>
In-reply-to
Content
> If curl/wget are available, great, but often slim images 
> don't offer that.

I concur with Christian.  For the most part, the standard library aims to be a collection of resources helpful for building applications like curl and wget.  The applications themselves should live on the Python Package Index (PyPI).  Also, as Christian points out, this is a non-trivial project with a large scope.


> The urllib could provide a very simple download functionality
> (like http offers a simple server):
>
>    from urllib.request import urlopen
>    data = urlopen('https://.../install-poetry.py').read()
>    # print or save data

This is a simpler request and is within our scope; however, I not sure how it differs from the existing functionality in urllib.request.urlretrieve().  Can you clarify what extra functionality is being requested?
History
Date User Action Args
2021-11-01 18:12:21rhettingersetrecipients: + rhettinger, christian.heimes, python-dev, tom.pohl
2021-11-01 18:12:21rhettingersetmessageid: <1635790341.52.0.7385767855.issue45466@roundup.psfhosted.org>
2021-11-01 18:12:21rhettingerlinkissue45466 messages
2021-11-01 18:12:21rhettingercreate