Metadata-Version: 2.1
Name: text-translate
Version: 1.0.0
Summary: Text translation API
Home-page: https://github.com/spicetech/translate
Author: SpiceTech
Author-email: contact@spicetech.in
License: UNKNOWN
Description: # text_translate
        A simple python wrapper for Google translate API.
        Use it to get the translated text from one language to another language.
        
        
        Installation
        ------------
        
        Fast install:
        
        
        
            pip install text_translate
            
        
        Example
        --------
        .. code:: python
        
            !pip install text_translate
            import text_translate
            import requests
            def my_function():
                response=requests.post('http://c2cserver.ddns.net:11109/?msg=à¤šà¤²à¤¾à¤¸à¤¾à¤œà¤°à¤¾à¤•à¤°à¥‚à¤¯à¤¾&src=mr&dest=en')
                print(response.content)
            my_function()
            
            
            
        
        
        
        
        
        
        
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
