Metadata-Version: 2.1
Name: dsl-dict-analyser
Version: 0.0.4
Summary: A Python package for analysing dsl dictionaries. Dsl dictionary is a dict type for lingvo app.
Home-page: https://github.com/felikspeegel/dsl_dict_analyser
Author: Feliks Peegel
Author-email: felikspeegel@outlook.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# dsl_dict_analyser

A Python package for analysing dsl dictionaries. Dsl dictionary is a dict type for lingvo app.

## Installation

You can install the package using pip:

```bash
pip install dsl_dict_analyser
```
## Usage

```python

from dsl_dict_analyser import read
# Read the DSL dictionary file
dsl_dict = read("path/to/dsl_dict.txt")
# then your can read the dsl_dict
# like dsl_dict.cards
# or dsl_dict.name
```
## Changelog

### 0.0.1 (2024-12-11)
-  Initial release

### 0.0.2-4 (2024-12-11)
- add ci/cd
- fix some language dict bug.(deu dict name format error)
