botocore re-uploaded with a-la-carte data packages.
Project description
botocore-a-la-carte
botocore-a-la-carte is a re-packaging of botocore such that each service’s data JSON exists in a separate package, and are opted-into through package extras.
The package botocore-a-la-carte contains the base code/resources for botocore to operate, and has a package extra per service (referencing a package which contains just the JSON data for that service).
Installation and Usage
⚠️ The package extras must be installed in the same directory as this package (such as in a virtual environment). This package does not support being installed in separate locations pointed to by sys.path. This is a limitation of the core botocore package and the Python packaging ecosystem. ⚠️
Example:
botocore-a-la-carte with no extras allows you to use core botocore functionality (e.g. load credentials, sign requests, etc…).
$ pip install botocore-a-la-carte
...
$ python
>>> import botocore
...
If you require specific service support, specify the service name as an extra:
$ pip install botocore-a-la-carte[s3, ec2]
...
$ python
>>> import botocore.session
>>> session = botocore.session.get_session()
>>> client = session.create_client('ec2')
>>> print(client.describe_instances())
Project details
Release history Release notifications | RSS feed
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
Hashes for botocore-a-la-carte-1.31.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65e0abe7bec8e7c6fd0273e0030a0dbad5824328075429f5f704ffc287cf6ec1 |
|
MD5 | 63d3381786efcd35d9b4d8eca7391922 |
|
BLAKE2b-256 | 53e568378924dec61e435061175f5f681e400c34e9080a7c553c8dcb73183fc0 |
Hashes for botocore_a_la_carte-1.31.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce387e9af42165183c153bafdd643ea5a4a4c0dccdd0b2e0a7e9a13d5202083f |
|
MD5 | 4559171a1a3a61af33c9a9e063989cd8 |
|
BLAKE2b-256 | f77b0e1a9147e1a064578b496713f8cde0cf31785f0292b1eff367ccf63636df |