معرفی شرکت ها


cepan-0.2.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Retrieves data from aws cost explore as a pandas dataframe.
ویژگی مقدار
سیستم عامل -
نام فایل cepan-0.2.0
نام cepan
نسخه کتابخانه 0.2.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده kanga333
ایمیل نویسنده e411z7t40w@gmail.com
آدرس صفحه اصلی https://github.com/kanga333/cepan
آدرس اینترنتی https://pypi.org/project/cepan/
مجوز MIT
# cepan [![Pypi Version](https://img.shields.io/pypi/v/cepan?color=blue)](https://pypi.org/project/cepan/#history) [![python](https://img.shields.io/pypi/pyversions/cepan.svg)](https://pypi.org/project/cepan/) [![test](https://github.com/kanga333/cepan/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/kanga333/cepan/actions/workflows/test.yml) [![lint](https://github.com/kanga333/cepan/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/kanga333/cepan/actions/workflows/lint.yml) [![Code style: black](https://img.shields.io/badge/mypy-checked-blue.svg)](http://mypy-lang.org/) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) Retrieves data from aws cost explore as a pandas dataframe. Main features - Support for input with type hints - Retrieving results as pandas.Dataframe ## Installation ``` pip install cepan ``` ## Usage ```python from datetime import datetime import cepan as ce df = ce.get_cost_and_usage( time_period=ce.TimePeriod( start=datetime(2020, 1, 1), end=datetime(2020, 1, 2), ), granularity="DAILY", filter=ce.And( [ ce.Dimensions( "SERVICE", ["Amazon Simple Storage Service", "AmazonCloudWatch"], ), ce.Tags("Stack", ["Production"]), ] ), metrics=["BLENDED_COST"], group_by=ce.GroupBy( dimensions=["SERVICE", "USAGE_TYPE"], ), ) print(df) ``` All paginated results will be returned as a Dataframe. ``` Time SERVICE BlendedCost 0 2020-01-01 Amazon Simple Storage Service 100.000000 1 2020-01-01 AmazonCloudWatch 10.000000 ``` ### List of currently supported APIs - get_dimension_values - get_tags - get_cost_and_usage ### Alias of aws service name Normally, the Cost Explorer API requires complex and long names to filter by service name. For example, if you only need the value of an EC2 instance, you would need to specify `Amazon Elastic Compute Cloud - Compute`. ```python df = ce.get_cost_and_usage( time_period=ce.TimePeriod( start=datetime(2020, 1, 1), end=datetime(2020, 1, 2), ), granularity="DAILY", filter=ce.Dimensions( "SERVICE", ["Amazon Elastic Compute Cloud - Compute"], ), group_by=ce.GroupBy( dimensions=["SERVICE", "USAGE_TYPE"], ), ) ``` cepan supports aliases with short service names. If you only need the value of the EC2 instance, you can specify it with `EC2`. ```python df = ce.get_cost_and_usage( time_period=ce.TimePeriod( start=datetime(2020, 1, 1), end=datetime(2020, 1, 2), ), granularity="DAILY", filter=ce.Dimensions( "SERVICE", ["EC2"], ), group_by=ce.GroupBy( dimensions=["SERVICE", "USAGE_TYPE"], ), ) ``` Correspondence table of aliases is shown in [service_alias.tsv](service_alias.tsv). You can also run the `show_service_alias` method to get the table. ```python print(ce.show_service_alias()) ``` ## License MIT License


نیازمندی

مقدار نام
>=1.2.3,<2.0.0 pandas
>=1.17.19,<2.0.0 boto3


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

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl cepan-0.2.0:

    pip install cepan-0.2.0.whl


نصب پکیج tar.gz cepan-0.2.0:

    pip install cepan-0.2.0.tar.gz