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.29.158.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfd7b6840e19d1b9075bdecb82ab404c56f6cae1e9a5a7c1ba2f8cd0f46b518b |
|
MD5 | 6d09842c6c9159ed39b9c43905d2f513 |
|
BLAKE2b-256 | 7e4e222854a24e24897ae261d8d731805cc18fa2f5a5c0dc4adff0f38a270cd8 |
Hashes for botocore_a_la_carte-1.29.158-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c77a2d4e21035ac8307360f2ae7a227d35b52b5a648ddca07057e10c1be50312 |
|
MD5 | c86fb11e53836210c78f6ad57847fc0e |
|
BLAKE2b-256 | 5d823e375fe66c7e5fa296a98918c4d3131cb6ffa34421fe9268904a1a341577 |