Skip to main content

Free DeepL Pro even Quota Exceeded

Project description

DeepLexer

Working DeepL Pro even Quota Exceeded.

Use your own risks.

Usage

pip install deeplexer
import asyncio
from deeplexer import Deeplexer

async def main():
    session_file = './sessions.json'  # Required. Path to the session be stored.
    username = '<deepl username>'  # Optional if session file is valid
    password = '<deepl password>'  # Optional if session file is valid
    async with Deeplexer(session_file, 
                         username=username, 
                         password=password) as deeplex:
        query = 'Hello World!'
        translation = await deeplex.translate(query, 'EN', 'KO')
        print('Translation:', translation.text)
    print('All jobs have been finished')

if __name__ == '__main__':
    event_loop = asyncio.get_event_loop()
    event_loop.run_until_complete(main())
    event_loop.close()

License

Licensed under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deeplexer-0.0.4.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distribution

deeplexer-0.0.4-py3-none-any.whl (6.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page