Giter VIP home page Giter VIP logo

weathernotificationsystem's Introduction

WeatherNotificationSystem

WeatherNotificationSystem is a Python application that sends text and/or email notifications based on warnings and alerts published by the National Weather Service's public API (https://www.weather.gov/alerts). WeatherNotificationSystem is designed to be run as an AWS Lambda function which can be triggered on a schedule by EventBridge.

WeatherNotificationSystem uses the following AWS services:

  • Lambda Lambda runs the python application using Lambda's python 3.8 environment
  • EventBridge EventBridge acts as a cron job to trigger the lambda on a set schedule
  • DynamoDB DynamoDB stores events that were already sent out to prevent duplicate messages
  • SNS SNS is the notification service that sends out texts and emails
  • CloudFormation CloudFormation to represent the above infrastructure as code and to automate the provisioning of AWS services

Installation

If running locally, use the package manager pip to install dependencies (boto3 and requests libraries).

pip3 install -r requirements.txt

If running on AWS Lambda, create a Layer using the requests.zip file (boto3 is included with Lambda by default, so only external dependency is the Requests library).

aws lambda publish-layer-version \
    --layer-name requests \
    --description "Requests library" \
    --content S3Bucket=lambda-layers-us-east-2-12345,S3Key=requests.zip \
    --compatible-runtimes python3.8

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

GPL-3.0

weathernotificationsystem's People

Contributors

justinhagstrom avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.