Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서승완
/
kappa
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
Authored by
Jose Diaz-Gonzalez
2016-06-12 01:59:36 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
48cd10df0b74ba704b140257e27423b5f607b0c3
48cd10df
1 parent
3a36854d
Add utf-8 encoding to each python file
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
21 additions
and
0 deletions
kappa/__init__.py
kappa/awsclient.py
kappa/context.py
kappa/event_source.py
kappa/function.py
kappa/log.py
kappa/policy.py
kappa/restapi.py
kappa/role.py
kappa/scripts/__init__.py
kappa/scripts/cli.py
samples/python/_src/simple.py
samples/python/_tests/unit/__init__.py
samples/python/_tests/unit/test_simple.py
samples/simple/_src/simple.py
samples/sns/_src/sns.py
setup.py
tests/__init__.py
tests/unit/__init__.py
tests/unit/foobar/_src/simple.py
tests/unit/test_deploy.py
kappa/__init__.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/awsclient.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/context.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/event_source.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/function.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/log.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/policy.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/restapi.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/role.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/scripts/__init__.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
kappa/scripts/cli.py
View file @
48cd10d
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2014, 2015 Mitch Garnaat http://garnaat.org/
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
...
...
samples/python/_src/simple.py
View file @
48cd10d
# -*- coding: utf-8 -*-
import
logging
import
json
import
uuid
...
...
samples/python/_tests/unit/__init__.py
View file @
48cd10d
# -*- coding: utf-8 -*-
...
...
samples/python/_tests/unit/test_simple.py
View file @
48cd10d
# -*- coding: utf-8 -*-
import
unittest
import
simple
...
...
samples/simple/_src/simple.py
View file @
48cd10d
# -*- coding: utf-8 -*-
import
logging
LOG
=
logging
.
getLogger
()
...
...
samples/sns/_src/sns.py
View file @
48cd10d
# -*- coding: utf-8 -*-
import
logging
...
...
setup.py
View file @
48cd10d
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from
kappa
import
__version__
import
os
...
...
tests/__init__.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014 Mitch Garnaat http://garnaat.org/
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
...
...
tests/unit/__init__.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2014 Mitch Garnaat http://garnaat.org/
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
...
...
tests/unit/foobar/_src/simple.py
View file @
48cd10d
# -*- coding: utf-8 -*-
def
handler
(
event
,
context
):
...
...
tests/unit/test_deploy.py
View file @
48cd10d
# -*- coding: utf-8 -*-
# Copyright (c) 2015 Mitch Garnaat http://garnaat.org/
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
...
...
Please
register
or
login
to post a comment