1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
Metadata-Version: 2.4
Name: stardicter
Version: 2.0.1
Summary: Conversion tools from various formats to StarDict.
Author-email: Michal Čihař <michal@cihar.com>
License-Expression: GPL-3.0-or-later
Project-URL: Download, https://pypi.python.org/pypi/stardicter
Project-URL: Homepage, https://cihar.com/software/slovnik/
Keywords: stardict,dictionary
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: COPYING
Dynamic: license-file
Stardicter
==========
Conversion tools from various formats to StarDict_.
Currently it can convert following dictionaries:
* `GNU/FDL Anglicko-Český slovník <https://www.svobodneslovniky.cz/>`_
* `GNU/FDL Německo-Český slovník <https://gnu.nemeckoceskyslovnik.cz/>`_
* `Slovník cizích slov <https://slovnik-cizich-slov.abz.cz/>`_
* `dicts.info dictionaries <https://www.dicts.info/>`_
You can find more information at project website:
https://cihar.com/software/slovnik/
Git repository is available at GitHub:
https://github.com/nijel/stardicter
Requirements
============
Scripts require dictzip to compress dictionaries. You can get it from
https://sourceforge.net/projects/dict/
Installation
============
You can either clone the git repositry and run the scripts from it or install
using pip::
pip install stardicter
Usage
=====
The main script is ``sdgen.py``, it downloads and generates StarDict
dictionaries. Check it's help for more information.
Additionally there are some helper script which directly generate tarballs with
dictionary.
Generating dictionary from dicts.info
=====================================
The https://dicts.info/ server provides downloadable dictionaries for many
languages. Unfortunately the license does not allow redistribution, so you need
to generate them yourself. With stardicter it is easy:
./dicts_info_tarball.sh italian czech
This generates tarball with italian-czech dictionary. You can choose any
language provided by the service.
License
=======
Copyright (c) 2006 - 2025 Michal Čihař
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <https://www.gnu.org/licenses/>.
.. _StarDict: https://stardict-4.sourceforge.net/
|