We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tcp://
udp://
SSL or TLS cryptography through addition of +ssl or +tls protocol suffixes.
+ssl
+tls
https://docs.python.org/3/library/urllib.request.html https://docs.python.org/3/library/http.client.html#module-http.client
class HTTPScheme(Scheme): def open(self, uri:URI, mode:str='r', buffering=-1, encoding=None, errors=None, newline=None) -> HTTPResponse: ...
https://docs.python.org/3/library/ftplib.html
from uri import URI from PIL import Image with URI('https://httpbin.org/image/png').open('rb', True) as fh: image = Image.open(fh) ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Implement Basic Socket Streams
tcp://
pseudo-protocol; port identification required.udp://
pseudo-protocol; port identification required.Protocol Layering
SSL or TLS cryptography through addition of
+ssl
or+tls
protocol suffixes.Specific Protocol Implementations
HTTP
FTP
Trivial Example
The text was updated successfully, but these errors were encountered: