Metadata-Version: 2.0
Name: awstriggers
Version: 0.0.1
Summary: Simple classes for AWS trigger records and events.
Home-page: https://github.com/JevyanJ/awstriggers
Author: JevyanJ
Author-email: jjrg184@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

AWS Triggers
============

Some classes to get information from AWS triggers easily.

Some examples
-------------

Here's some of the stuff you can do:

.. code:: python

    # import all
    from awstriggers import *

    def lambda_handler(event, context):

        for record in event['Records']:

            trigger = SQSTrigger(record)

            print(trigger.body)
            print(trigger.attributes)

Installation
------------

.. code:: bash

    pip install awstriggers


