Metadata-Version: 2.1
Name: INLD
Version: 0.0.2
Summary: A package to detect Indian natural languages
Home-page: https://github.com/jagman32/INLD
Author: Jagmanjot
Author-email: jagmanjotsingh.becse17@pec.edu.in
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

#this is INLD(Indian natural language detection) package

you can use this package to detect following Indian Languages:
1. Hindi	-hn
2. English  -en
3. Bengali  -bg
4. Telugu   -tg
5. Malayalam -ml
6. Odia		 -od
7. Punjabi	 -pb
8. Punglish	 -png
9. Hinglish	 -hng
10. Marathi  -mr
11. Gujarati -gj
12. Kannada  -kd
13. Assamese -am

pickle(preferably latest version) is also needed to run this library.

more languages are being continuously added

example:-
```python
In [5]: from INLD.INLD import detect

In [6]: detect('ye ek example hai')
Out[6]: ['hng']
```


