Metadata-Version: 2.1
Name: Python3-MultiLang
Version: 1.1
Summary: ML is a Library for Multi Language support in Python.
Home-page: https://github.com/DDavid701/python_multilang
Author: DDavid701
Author-email: ddavid701@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# MultiLang (v1.0)

ML is a library for making multi language applications!

```example script.py```
```python
import multilang

language = multilang.get_language()

multilang.set_folder('langs/')

multilang.set_fallback_language('en_EN')

message = multilang.text(language=language, id=1)
print(message)
```

```example en_EN```

```text
1;Welcome!
2;How are you doing?
3;Where do you live?
```

```<ID>;<MESSAGE>```
