Skip to main content

This package will help to use AWS service without SDK

Project description

AWS Signature Version 4

Signature Version 4 is the process to add authentication information to AWS requests sent by HTTP. By using this libary you can use AWS services. more detail visit on AWS

Feature List
Name status
AWS IoT Core done
AWS EC2 Comming

Example

"""
IoT Core Example 
"""
import datetime
from AWSSignV4.client import Client

endpoint="https://your_aws_iot_endpoint"

client = Client(
    aws_region="<AWS region>",
    aws_service="iotdevicegateway",
    aws_access_key="<your aws access key>",
    aws_secret_key="<your aws secret key>",
    date_time=datetime.datetime.now().utcnow()
)

client.build_canonical(canonical_uri="/topics/<your IoT topic name>", canonical_querystring="qos=1")
response = client.post(url=endpoint, data={"hello": "IoT Core"})
# If everthing is fine you will get success message like bellow
# {"message":"OK","traceId":"137a8fd1-78ae-af36-bd47-ae70e1e691e7"}
# or you can also subscript your topic name on AWS IoT core test client feature. 
print(response.text)

To learn more Documentation.

Changelog

See Changelog

License

MIT

Changelog

All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog. This project adheres to Semantic Versioning.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

AWSSignV4-0.0.8.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

AWSSignV4-0.0.8-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page