Skip to content

Commit 0ea249b

Browse files
committed
master: add copyright statement
1 parent 6c0a6e7 commit 0ea249b

File tree

7 files changed

+40
-2
lines changed

7 files changed

+40
-2
lines changed

examples/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright 2020 by Youngchae James Chee.
2+
# Github: https://github.com/litcoderr
3+
# All rights reserved.
4+
# This file is released under the "MIT License Agreement".
5+
# Please see the LICENSE file.
6+
17
"""
28
This demonstrates how you can construct a serializable configuration object
39
"""

examples/export_dict.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright 2020 by Youngchae James Chee.
2+
# Github: https://github.com/litcoderr
3+
# All rights reserved.
4+
# This file is released under the "MIT License Agreement".
5+
# Please see the LICENSE file.
6+
17
"""
28
This demo demonstrates export_dict() method
39
that can extract dictionary from any Serializable object recursively.

examples/export_json.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright 2020 by Youngchae James Chee.
2+
# Github: https://github.com/litcoderr
3+
# All rights reserved.
4+
# This file is released under the "MIT License Agreement".
5+
# Please see the LICENSE file.
6+
17
"""
28
This demo demonstrates export_json() method
39
that saves Serializable object to json file.

examples/import_json.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright 2020 by Youngchae James Chee.
2+
# Github: https://github.com/litcoderr
3+
# All rights reserved.
4+
# This file is released under the "MIT License Agreement".
5+
# Please see the LICENSE file.
6+
17
"""
28
This demo demonstrates import_json() method
39
that imports data from json file and loads recursively.

examples/parse.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright 2020 by Youngchae James Chee.
2+
# Github: https://github.com/litcoderr
3+
# All rights reserved.
4+
# This file is released under the "MIT License Agreement".
5+
# Please see the LICENSE file.
6+
17
"""
28
This demo demonstrates parse() method that implements argument parsing fucntionality based on object elements.
39
"""

importify/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
# Copyright @Litcoderr. github: https://github.com/litcoderr
1+
# Copyright 2020 by Youngchae James Chee.
2+
# Github: https://github.com/litcoderr
3+
# All rights reserved.
4+
# This file is released under the "MIT License Agreement".
5+
# Please see the LICENSE file.
26

37
from .interface import Serializable

importify/interface.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
1+
# Copyright 2020 by Youngchae James Chee.
2+
# Github: https://github.com/litcoderr
3+
# All rights reserved.
4+
# This file is released under the "MIT License Agreement".
5+
# Please see the LICENSE file.
26

37
from typing import Tuple, Dict, Any, Optional, List
48
import sys

0 commit comments

Comments
 (0)