Metadata-Version: 2.1
Name: dexonlineBK
Version: 0.0.9
Summary: Dexonline.ro API for Python
Home-page: https://github.com/BlackKakapo/dexonline-API
Author: Alexandru Petrachi (BlackKakapo)
License: UNKNOWN
Description: # Dexonline.ro API
        
        A simple API that queries dexonline.ro, it returns the definitions of the words.
        #
        What is dexonline - [info](https://wiki.dexonline.ro/wiki/Informații)
        #
        
        How to install, using pip install?
        
        >pip install -i https://test.pypi.org/simple/ dexonlineBK
        
        #
        
        ### Functionality
        The first thing we need to do is import the library
        ```python
        from dexonlineBK import dexonlineBK as DO
        ```
        The first, and most important, function is getWordDefinition()
        This function returns the list of lists
        ```python
        definitions = DO.getWordDefinition("neexplicabil")
        
        for defs in definitions:
        	print(defs[0])
        	print(defs[1] + "\n")
        ```
        Output:
        ```
        NEEXPLICÁBIL
        adj. v. inexplicabil.
        
        NEEXPLICABIL
        adj. inexplicabil, neînțeles. (Un fapt ~.)
        
        Neexplicabil
        ≠ explicabil
        ```
        For more printing comfort I have the toString() function
        ```python
        DO.toString(definitions)
        ```
        Output:
        ```
        WORD: NEEXPLICÁBIL
        DEFINITION: adj. v. inexplicabil.
        
        WORD: NEEXPLICABIL
        DEFINITION: adj. inexplicabil, neînțeles. (Un fapt ~.)
        
        WORD: Neexplicabil
        DEFINITION: ≠ explicabil
        ```
        getWordOfTheDay() function, returns the list with the word and its definition
        toString() also works with this function
        ```python
        DO.toString(DO.getWordOfTheDay())
        ```
        Output:
        ```python
        WORD: ARÉIC, -Ă,
        DEFINITION: areici, -ce, adj. (Geol.; despre regiuni, soluri) Lipsit de apă, uscat, arid. [Pr.: -re-ic] – Din fr. aréique.
        ```
        getWordOfTheMonth() function, returns the list with the word and its definition
        toString() also works with this function
        ```python
        DO.toString(DO.getWordOfTheMonth())
        ```
        Output:
        ```python
        WORD: ntur
        DEFINITION: i [At: ALR II, 5752/791 / E: fo] (Reg) Onomatopee care imită trilurile turturicii.
        ```
        reallyExist() function, returns boolean.
        dexonline.ro have list of words in romanina.
        And here you check if this word exists in Romanian.
        ```python
        print(DO.reallyExist('mama'))
        ```
        Output:
        ```python
        True
        ```
        #
        #
        >The API is still being tested
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
