Metadata-Version: 2.1
Name: pyawslog
Version: 0.1.0
Summary: A demo_car package
Home-page: https://github.com/catchmaurya/pyawslog
Author: Maurya Allimuthu
Author-email: catchmaurya@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# python aws custom log
A Python package to log message into aws cloud.

## Introduction
A Python package to log message into aws cloud.

## Installation
pip3 install pyawslog
## Usage
```
logger = log(region_name='region name', 
          aws_access_key_id='access key',
       aws_secret_access_key='secret key',
        endpoint_url='https://logs.<region_str>.amazonaws.com')

LOG_GROUP='custom group name'
LOG_STREAM='custom stream name'

logger.create_log_group(LOG_GROUP)
logger.create_log_stream(LOG_GROUP, 'aws')
logger.log_message(LOG_GROUP, LOG_STREAM, 'Hello world, log message!')
```
## Contributing
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D
## History
TODO: Write history
## Credits
TODO: Write credits
## License
TODO: Write license
]]></content>
  <tabTrigger>readme</tabTrigger>
</snippet>
## Contact
Please submit an issue if you encounter a bug and please email any questions or requests to catchmaurya@gmail.com

