Skip to main content

Asyncio-based Telnet library

Project description

Python Telnet Utility: asyncio-powered

The `**asyncio-telnet**` library designed for convenient interaction with Telnet devices in both synchronous and asynchronous modes, making the process straightforward and flexible in various usage scenarios.

  • Support for Asynchrony and Synchrony: Harness the power of asyncio for efficient and non-blocking communication with Telnet servers. With this library, you have the option to choose between asynchronous and synchronous modes, depending on the requirements of your project.
  • Ease of Use: The library provides a user-friendly interface for both synchronous and asynchronous cases, making it adaptable to different project needs.
  • Telnet Protocol Handling: Transparently handles the intricacies of the Telnet protocol, allowing you to focus on the logic of your application.
  • Flexible Integration: Easily integrate Telnet functionality into your Python applications with a simple API.

Installation

You can install the library using pip. Make sure you have Python 3.6 or later installed.

pip install asyncio-telnet

Usage

Here is a simple example of using in an asynchronous context:

import asyncio
from asyncio_telnet import Telnet

async def main():
    tn = Telnet()
    await tn.open('example.com')
    response = await tn.read_until_eof()
    return response

if __name__ == '__main__':
    result = asyncio.run(main())
    print(result)

For synchronous usage, you can use the library in a similar way by simply specifying sync_mode=True:

from asyncio_telnet import Telnet

def main():
    # by specifying sync_mode=True, a wrapper for calling asynchronous methods synchronously is activated internally.
    tn = Telnet(sync_mode=True)
    # now it is possible to directly invoke asynchronous methods through the wrapper
    tn.open('example.com')
    response = tn.read_until_eof()
    return response

if __name__ == '__main__':
    result = main()
    print(result)

Feel free to check the documentation for more detailed information and examples.

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

asyncio-telnet-0.1.12.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

asyncio_telnet-0.1.12-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file asyncio-telnet-0.1.12.tar.gz.

File metadata

  • Download URL: asyncio-telnet-0.1.12.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for asyncio-telnet-0.1.12.tar.gz
Algorithm Hash digest
SHA256 8a26707a8da7e5a03c895a0696e7385fbb0cd34e413e4596c0e5870867beaaa8
MD5 a9a4ca39dd06b85d9c529fa48078489f
BLAKE2b-256 c36fc2a98ceefc0c2176f19404b1bef80f8dc608a96ca5ca8206eb7453fd6ace

See more details on using hashes here.

File details

Details for the file asyncio_telnet-0.1.12-py3-none-any.whl.

File metadata

File hashes

Hashes for asyncio_telnet-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 baf31b129a330d705dc2a85a9f00058873e10d7b357545e0bfc30a5397c16404
MD5 ec2218b9800e61b78e0b3f1f54278c98
BLAKE2b-256 dc0f65da6ecbdc52a3ebdd00200b1d8f6b4e6d4526a8d2e0ef917e97707ceb9c

See more details on using hashes here.

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