robocorp-http 0.4.1
pip install robocorp-http==0.4.1
Latest version
Released:
Robocorp HTTP library
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache-2.0)
- Author: Fabio Z.
- Requires: Python >=3.9, <4.0
Classifiers
- License
- Programming Language
Project description
robocorp-http
We are deprecating the robocorp-http
-library and recommend using
requests -library directly.
requests
is so widely used that just about any AI/LLM is able to provide you with the needed code so an extra wrapper
from us is not needed.
import requests
def download_file(url, local_filename):
response = requests.get(url)
response.raise_for_status() # this will raise an exception if the request fails
with open(local_filename, 'wb') as stream:
stream.write(response.content) # write the content of the response to a file
return local_filename
Note:
requests
-library is already included inrobocorp
-package.Check out more under our Requests 3rd-party library documentation.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache-2.0)
- Author: Fabio Z.
- Requires: Python >=3.9, <4.0
Classifiers
- License
- Programming Language
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file robocorp_http-0.4.1.tar.gz
.
File metadata
- Download URL: robocorp_http-0.4.1.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c16ca123201d08cc7684b7f2e3dc6208505d2ae0ff240b285a07d37399daaa95
|
|
MD5 |
e680d86ca5317713f6f4fed917c11544
|
|
BLAKE2b-256 |
385a2cf22ee4d01d26d248e668cdfa7203747a77347778687bceaab564a91443
|
File details
Details for the file robocorp_http-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: robocorp_http-0.4.1-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0d83aaa67da3b36a43aa1e03dc2a7a448575e17b1dbaff896eae165add0cf55d
|
|
MD5 |
9970eb8678e8b5562f76640a5a2d0dc8
|
|
BLAKE2b-256 |
6e5bc339a0e32f968e705c930d5f4683a3756ea26ad00e32501976884e9b96df
|