معرفی شرکت ها


boto3-helpers-1.3.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Helper utilities for boto3
ویژگی مقدار
سیستم عامل -
نام فایل boto3-helpers-1.3.0
نام boto3-helpers
نسخه کتابخانه 1.3.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Bo Bayles
ایمیل نویسنده bo.bayles@wurl.com
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/boto3-helpers/
مجوز Apache 2.0
boto3-helpers ============= ``boto3_helpers`` is a Python library that aims to provide a smoother interface for some of the functions in the AWS `boto3 <https://github.com/boto/boto3>`_ package. You know how to install it: .. code-block:: sh pip install boto3-helpers Have you ever seen anybody make this mistake? .. code-block:: python from boto3 import resource as boto3_resource from boto3.dynamodb.conditions import Key # Don't do this; you'll miss out if there is more than one page ddb_table = boto3.resource('dynamodb').Table('example-table') resp = ddb_table.query( KeyConditionExpression=Key('username').eq('johndoe') ) for item in resp.get('Items', []): print(item) What they should have done is this: .. code-block:: python from boto3 import resource as boto3_resource from boto3.dynamodb.conditions import Key # Loop through all the pages ddb_table = boto3.resource('dynamodb').Table('example-table') kwargs = {'KeyConditionExpression': Key('username').eq('johndoe')} while True: resp = ddb_table.query(**kwargs) for item in resp.get('Items', []): print(item) if 'LastEvaluatedKey' not in resp: break kwargs['ExclusiveStartKey'] = resp['LastEvaluatedKey'] With ``boto3_helpers``, you can do the right thing more easily: .. code-block:: python from boto3 import resource as boto3_resource from boto3.dynamodb.conditions import Key from boto3_helpers.dynamodb import query_table ddb_table = boto3.resource('dynamodb').Table('example-table') for item in query_table( ddb_table, KeyConditionExpression=Key('username').eq('johndoe') ): print(item) This package provides helper functions for several similar actions in AWS, such as: * Paging through S3 listings * Updating items in DynamoDB * Assuming roles with STS * Sending and deleting messages with SQS * Pulling metric data from CloudWatch See the `latest docs <https://boto3-helpers.readthedocs.io>`_ for more.


نیازمندی

مقدار نام
- boto3
- botocore


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl boto3-helpers-1.3.0:

    pip install boto3-helpers-1.3.0.whl


نصب پکیج tar.gz boto3-helpers-1.3.0:

    pip install boto3-helpers-1.3.0.tar.gz