• This project
    • Loading...
  • Sign in

서승완 / kappa

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • kappa
  • samples
  • cron
  • _src
  • simple.py
  • James Cooper's avatar
    Added 'cron' sample to demo CloudWatch events · dc268498
    dc268498
    James Cooper authored 2016-06-12 10:54:04 -0700
simple.py 188 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
import logging
import time

LOG = logging.getLogger()
LOG.setLevel(logging.DEBUG)


def handler(event, context):
    LOG.debug(event)
    return {'status': 'success', 'time': time.time()}