• 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
  • simple
  • _src
  • simple.py
  • Jose Diaz-Gonzalez's avatar
    Add utf-8 encoding to each python file · 48cd10df
    48cd10df
    Jose Diaz-Gonzalez authored 2016-06-12 01:59:36 -0400
simple.py 198 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
# -*- coding: utf-8 -*-
import logging

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


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