-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from letuananh/main
jamdict 0.1a10 is ready on PyPI
- Loading branch information
Showing
7 changed files
with
66 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
''' | ||
""" | ||
Jamdict demo application | ||
Latest version can be found at https://github.com/neocl/jamdict | ||
|
@@ -17,14 +17,7 @@ | |
References: | ||
JMDict website: | ||
http://www.csse.monash.edu.au/~jwb/edict.html | ||
Python documentation: | ||
https://docs.python.org/ | ||
PEP 257 - Python Docstring Conventions: | ||
https://www.python.org/dev/peps/pep-0257/ | ||
@author: Le Tuan Anh <[email protected]> | ||
@license: MIT | ||
''' | ||
""" | ||
|
||
# Copyright (c) 2016, Le Tuan Anh <[email protected]> | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
''' | ||
""" | ||
jamdol - JAMDict OnLine (REST server) | ||
Latest version can be found at https://github.com/neocl/jamdict | ||
References: | ||
Python documentation: | ||
https://docs.python.org/ | ||
PEP 257 - Python Docstring Conventions: | ||
https://www.python.org/dev/peps/pep-0257/ | ||
@author: Le Tuan Anh <[email protected]> | ||
''' | ||
""" | ||
|
||
# Copyright (c) 2017, Le Tuan Anh <[email protected]> | ||
# | ||
|
@@ -34,16 +26,6 @@ | |
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
|
||
__author__ = "Le Tuan Anh <[email protected]>" | ||
__copyright__ = "Copyright 2017, jamdict" | ||
__credits__ = [] | ||
__license__ = "MIT" | ||
__version__ = "0.1" | ||
__maintainer__ = "Le Tuan Anh" | ||
__email__ = "<[email protected]>" | ||
__status__ = "Prototype" | ||
|
||
######################################################################## | ||
|
||
import json | ||
import logging | ||
|
@@ -55,6 +37,7 @@ | |
from chirptext.cli import setup_logging | ||
|
||
from jamdict import Jamdict | ||
from jamdict import __version__ | ||
|
||
# --------------------------------------------------------------------- | ||
# CONFIGURATION | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters