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.106.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5767681cc95cf33a370e29d5d1feff9651cb5ac7e75e44e20698ca8172a8334f |
|
MD5 | 85c44f4a1d804be29be8450e0242f112 |
|
BLAKE2b-256 | 78d218e8abefe2f58b242d760feb29045a3161393e1949b13c3f89e5b1c767f3 |
Hashes for botocore_a_la_carte-1.29.106-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e4597de1d862107ac921cf5eb87259d4538996f780c9811891420269ccfd60f |
|
MD5 | 0d02e563adadcb4519fa1a979994e4c2 |
|
BLAKE2b-256 | 0866f87d5748c26f482e0d896733ee8605637ce2d8f42512af4be619d080d19d |