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.37.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38c37693bf579e32564ad493a76a2f1f726721b4f29af43608eeb0abd1e3f14c |
|
MD5 | 990ca0b2090f600f8621ffe603549c0e |
|
BLAKE2b-256 | fdd907a51b3953afd85b3ce1157c576f56e7c45c300765e2842a87448dce357a |
Hashes for botocore_a_la_carte-1.31.37-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae352ca04b9135f5c4cd809956caabd91d2e48548eae9647380892afaca462b5 |
|
MD5 | 51e3813611e560f506b57616d2f0201a |
|
BLAKE2b-256 | c549a14e0fd082ce50cc92f9032aa0fa4c57a49ccf41e7a73952aceb23ad8a77 |