forked from wijnen/python-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol
24 lines (23 loc) · 1.07 KB
/
control
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Source: python-network
Section: python
Priority: optional
Maintainer: Bas Wijnen <wijnen@debian.org>
Build-Depends-Indep: debhelper (>= 9), python3-all, dh-python, doxygen, doxypy, libjs-jquery, graphviz
Standards-Version: 3.9.6
Package: python3-network
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-fhs, openssl
Recommends: python3-gi
Description: python module for easy networking
Implementing networking in C is a pain. Unfortunately, much of that pain is
copied to Python. This module instead tries to follow the "batteries included"
approach, like the rest of Python. With this module, networking is a piece of
cake. It can use tcp sockets and unix domain sockets, and supports avahi.
.
This module provides four classes: Socket and Server for string-based
connections, and RPCSocket and RPCServer for connections which call methods on
remote objects. All of this is symmetrical: once the connection is
established, the client and server use the same interface.
.
For providing RPC functionality in a language independent way, see
python-wshttpd.