From the website:
The olsr.org OLSR daemon is an implementation of the Optimized Link
State Routing protocol. OLSR is a routing protocol for mobile ad-hoc
networks. The protocol is pro-active, table driven and utilizes a
technique called multipoint relaying for message flooding.
OpenBSC is a minimalistic implementation of the GSM Network, with
particular emphasis on the functionality typically provided by the BSC,
MSC, HLR, VLR and SMSC.
OpenGGSN is an implementation of the Gateway GPRS Support Node element
in the GPRS core network.
OpenGGSN was developed in 2002 to 2004 by Mondru AB and was abandoned
for some years before adopted by the Osmocom project.
ns-3 is a discrete-event network simulator for Internet systems,
targeted primarily for research and educational use. ns-3 is free
software, licensed under the GNU GPLv2 license, and is publicly
available for research, development, and use.
Subclassable and hostless URIs
Provides a method for storing bookmarks for URIs
in ZConf.
A configuration system allowing for either file or LDAP backed storage.
zccreate Creates a new ZConf config or set.
zcget Reads a value from a ZConf config.
zccdump Dumps a ZConf config to ZML.
zcls Lists configured ZConf congigs and sets.
zcrm Remove a ZConf config or set.
zcset Sets a value in a ZConf config.
zcvdel Remove a variable from a ZConf config.
zcvls Lists the keys of a ZConf config.
zcchooser-edit Edits the chooser for a config.
zcchooser-get Gets the chooser for a config.
zcchooser-run Return the set that will be used for a config.
zcchooser-set Set the chooser using data in the specified file.
This small program receives UDP datagrams on a given port, and resends
those datagrams to a specified set of receivers. In addition, a
sampling divisor N may be specified individually for each receiver,
which will then only receive one in N of the received packets.
The Python Dugong module provides an API for communicating with HTTP 1.1
servers. It is an alternative to the standard library's http.client (formerly
httplib) module. In contrast to http.client, Dugong:
* allows you to send multiple requests right after each other without having to
read the responses first.
* supports waiting for 100-continue before sending the request body.
* raises an exception instead of silently delivering partial data if the
connection is closed before all data has been received.
* raises one specific exception (ConnectionClosed) if the connection has been
closed (while http.client connection may raise any of BrokenPipeError,
BadStatusLine, ConnectionAbortedError, ConnectionResetError, IncompleteRead
or simply return '' on read)
* supports non-blocking, asynchronous operation and is compatible with the
asyncio module.
* can in most cases distinguish between an unavailable DNS server and an
unresolvable hostname.
* is not compatible with old HTTP 0.9 or 1.0 servers.
All request and response headers are represented as str, but must be encodable
in latin1. Request and response body must be bytes-like objects or binary
streams.
gspreadsheet is a wrapper around a wrapper to get Google spreadsheets to look
like csv.DictReader. If you're used to working with CSVs or a human, you'll
find that working with Google's Python API for spreadsheets is so frustrating.
With gspreadsheet, you can adapt your existing csv code to work with Google
Spreadsheets with just two line changes. As an added bonus, if you alter the
dict, those changes get saved back to the original spreadsheet.