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.43.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fd9b80cc3d25247f20c2953932ec17f53ef4ceb9c7127845fd20f6126ee6831 |
|
MD5 | 865e9395b23e4b65f755871e8116b086 |
|
BLAKE2b-256 | ffb9c1b77b3a8429901e96ec3dcefde33052c8b9558aa864ac7646b6c4e7e5f7 |
Hashes for botocore_a_la_carte-1.31.43-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b39837a1e87143ab4626545a7e8f4789363ea260a0cc02804d7ce4e5485f348 |
|
MD5 | 1c9f0b43040408d3b2373f0360221b79 |
|
BLAKE2b-256 | 45326c13a3d7f401ca16c349af2500a1a55290285cfe26077b6eda42ce037b5c |