File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
- What's inside :
1
+ What's changed? :
2
2
--------------
3
3
4
- 1.4.0 (17/08/2021)
4
+ 1.5.0 (20/08/2021)
5
+ ------------------
6
+ * Fixed error while pretty-printing of supported languages.
7
+
8
+ 1.4.2 (17/08/2021)
5
9
------------------
6
10
* Added support for Translation into multiple languages.
7
11
* Can query out list of supporting translation languages.
Original file line number Diff line number Diff line change 77
77
"""
78
78
__author__ = "Shawan Mandal"
79
79
__email__ = "imshawan.dev049@gmail.com"
80
- __version__ = "1.4.2 "
80
+ __version__ = "1.5.0 "
81
81
82
82
try :
83
83
from .scrape import *
Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ def __prettyPrint(self):
55
55
"""
56
56
### Pretty prints text
57
57
"""
58
- data = self .__SUPPORTED_LANGUAGES ['sl' ]
58
+ SUPPORTED_LANGUAGES = json .loads (self .__SUPPORTED_LANGUAGES )
59
+ data = SUPPORTED_LANGUAGES ['sl' ]
59
60
prettyText = self .__prettyText
60
61
for key in data .keys ():
61
62
prettyText += key + ": \t " + data [key ] + "\n "
Original file line number Diff line number Diff line change 13
13
14
14
setuptools .setup (
15
15
name = "PyDictAPI" ,
16
- version = "1.4.2 " ,
16
+ version = "1.5.0 " ,
17
17
author = "Shawan Mandal" ,
18
18
author_email = "imshawan.dev049@gmail.com" ,
19
- description = "A simple Dictionary and Translator Module for Python" ,
19
+ description = "An advanced Dictionary and Translator Module for Python" ,
20
20
long_description = long_description ,
21
21
long_description_content_type = "text/markdown" ,
22
22
url = "https://github.com/imshawan/PyDictAPI" ,
You can’t perform that action at this time.
0 commit comments