Skip to main content

ssdp server and client of upnp

Project description

ssdp_upnp

Introduction

The acticle Exploring UPnP with Python gives a realy good insight of UPNP. SSDP is one of it's implementation.

The packege includes two individual Classes, one is ssdp server, one is ssdp client. They inherits from Class threading.Thread class, thus the two class instance runs on a single thread of own. They will not block main thread. After the ssdp client find a peer with same product name, it can communicate with main thread by queue.

The logic of server is just listen a broadcast address with port 1900. If it received a "M-SEARCH" message, it will responce it's service infomation. The client just send a broadcast message with "M-SEARCH", and get server's service infomation.

The package can be used in blockchain solution where peers to find each other in LAN environment.

example

import sys
from ssdp_upnp.ssdp import Server, Client
from ssdp_upnp.ssdp import gen_logger
from queue import Queue

logger = gen_logger('sample')

if __name__ == '__main__':
    try:
        if sys.argv[1] == 'server':
            upnpServer  = Server(8048, 'blockchain', 'main')
            upnpServer.start()
        elif sys.argv[1] == 'client':
            queue = Queue()
            upnpClient = Client('blockchain', 'main', queue)
            upnpClient.start()
            logger.info(queue.get())
        else:
            logger.warning('need params server or clinet')
    except Exception as e:
        logger.error(e)

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

ssdp_upnp-0.0.2.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

ssdp_upnp-0.0.2-py3-none-any.whl (5.0 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