File: __init__.py

package info (click to toggle)
python-ssdpy 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 272 kB
  • sloc: python: 844; makefile: 29
file content (10 lines) | stat: -rw-r--r-- 262 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals

from .version import VERSION
from .server import SSDPServer
from .client import SSDPClient

__version__ = VERSION

__all__ = ["SSDPServer", "SSDPClient"]