Giter Club home page Giter Club logo

festival-wisher-python's Introduction

Festival Wisher

The script checks the festival and sends email wishes to a group of users.

Festivals are:-

  • NewYear - [X]
  • RepublicDay - [X]
  • IndependenceDay - [X]
  • GandhiJayanti - [X]
  • Christmas - [X]

How to run this script

Direct run

python main.py

Running with GitHub Actions

  • Create an actions.yml file in the .github/workflows folder.

  • Add the following script to actions.yml:

name: run main.py

on:
schedule:
    # - cron: '*/5 * * * *' # At every 5 minute
    # - cron: '0 8 * * *' # At every 8:00 AM
    # - cron: '29 2 * * *' # At Utc 02:29 AM is indian time  of 7:59 AM
    - cron: '30 18 * * *' # At UTC 06:30 PM, which corresponds to 12:00 AM Indian Time

jobs:
build:
    runs-on: ubuntu-latest
    steps:

    - name: checkout repo content
        uses: actions/checkout@v2 # checkout the repository content to github runner

    - name: setup python
        uses: actions/setup-python@v4
        with:
        python-version: '3.9' # install the python version needed
        
    - name: install python packages
        run: |
        python -m pip install --upgrade pip
        
    - name: execute py script # run main.py
        env:
        SENDER_EMAIL: ${{ secrets.SENDER_EMAIL }}
        PASSWORD: ${{ secrets.PASSWORD }}

        run: python main.py
  • Add your SENDER_EMAIL and PASSWORD in the secrets of GitHub.

festival-wisher-python's People

Contributors

abhi7745 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.