aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 16 insertions, 3 deletions
diff --git a/README.md b/README.md
index 6d9a041..dfa1c84 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,6 @@ A bunch of **Python** scripts to transform wiktionary archive dump to MySQL data
- With a simple CLI.
- With a simple WUI, flask based.
- Regex support.
- -
How to create the database
--------------------------
@@ -32,12 +31,12 @@ This file is interesting for developers not for end users.
It's a serialization of the internal used dictionary (python dictionary).
~~~shell
-$ python dump2msgp.py -i frwiktionary-20200601-pages-articles.xml.bz2
+$ python dump2msgp.py -i frwiktionary-20200601-pages-articles.xml
~~~
Then, you can create the SQLite database file.
~~~shell
-$ python msgPack2sqlite_msgPack.py -i dicofr.msgpk -o dicofr.db
+$ python msgPack2sqlite_msgPack.py -i dicofr.msgpk
~~~
You can then use `dicofr.py` to search a word from the CLI or use the WUI with the command:
@@ -93,6 +92,20 @@ juliennois
juliens
~~~
+Or the WUI :
+
+~~~shell
+$ python web.py
+~~~
+
+Why only french ?
+-----------------
+
+Because that's the only language I'm able to tackle.
+I can't verify anything about others languages.
+
+Feel free to contribute.
+
How to contribute ?
-------------------