Metadata-Version: 2.1
Name: aiotranslate
Version: 0.0.1
Summary: Free Google translate module that uses async/await syntax.
Home-page: https://github.com/5elenay/aiotranslate/
Author: 5elenay
Author-email: 
License: GNU General Public License v3 (GPLv3)
Description: # aiotranslate
        Free google translate module that uses async/await syntax.
        
        # Example 
        ```py
        from aiotranslate import Translator
        import asyncio
        
        async def main():
            translator = Translator() 
        
            # you can add aiohttp session if you want like -> Translator(session=aiohttp.ClientSession())
            # also you can save the translates like -> Translator(save_translates=True)
            
            translated = await translator.translate("hello", "tr", "en")
        
            # first argument: the text will be translated
            # second argument: the language will converted
            # last argument: the language that text
        
            print(translated) # -> Merhaba
            print(translator.history()) # shows all translates that saved.
        
        if __name__ == "__main__":
            loop = asyncio.get_event_loop()
            loop.run_until_complete(main())
        ```
Keywords: translate
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Unix
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
