Metadata-Version: 2.1
Name: auto-translation
Version: 0.1.1
Summary: A simple python library used to translate and speak a given text from the user with Google Translation using user's Chrome browser. 
Home-page: https://github.com/mouh2020/auto-translation
Author: Mohammed BADI
Author-email: badimohammed2019@gmail.com
License: UNKNOWN
Description: # selenium_translation
        
        Selenium_translation is a simple python library to translate any other
        language or transform it to speech with google traduction , all that
        using the user's Chrome browser in hidden mode , mean time to return the
        translation or speech 15 seconds
        
        **Installation :**
        
        | $ pip install selenium_translation  |
        
        **Simple usage :**
        
        | >>> from selenium_translation import Chrome |
        
        | >>> test=Chrome()  |
        
        | >>> print(
        test.translate_text(text='*Bonjour*',from_lang='*fr*',to_lang='*fr*') )|
        
        | >>> Good morning |
        
        
        **Methods :**
        
        | Methods                                                  | Return                              |
        |:---------------------------------------------------------|:------------------------------------|
        | translation_url(from_lang=str,to_lang=str)               | url of google translation (str)     |
        | translation_text_url(text=str,from_lang=str,to_lang=str) | url of the translation needed (str) |
        | translate_text(text=str,from_lang=str,to_lang=str)       | translation of text (str)           |
        | text_2_speech(text=str, language=str)                    | None , text speech                  |
        | translation_2_speech(text=str,from_lang=str,to_lang=str) | None , translation speech           |
        
        **Note :**
        
        Use language codes >>>
        [ISO-639 Language Codes](https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html)
        
        example :  
        Arabic:ar  
        French:fr
        
Keywords: translation,traduction,translate,speech,voice,google translation,languages
Platform: UNKNOWN
Classifier: Intended Audience :: Education
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Description-Content-Type: text/markdown
