background preloader

Oisindev

Facebook Twitter

Stompclient

Package Index : autoconnect 1.0.0. This module helps in automatic client-server socket connection setup for networked applications.

Package Index : autoconnect 1.0.0

Latest Version: 0.9.3 I wrote this module a while ago (5+ years) and though it would be handy for others. Its a handy auto-socket connection module. I used it originally in a internet cafe management system. The client app installed on the PC would start the receiver. I've recently had call to want to do this type of thing again so I thought I'd dust this code off and make into a proper project. Downloads (All Versions): 105 downloads in the last day 584 downloads in the last week 1574 downloads in the last month Author: Oisin Mulvihill License: LGPL Package Index Owner: oisinmulvihill DOAP record: autoconnect-1.0.0.xml.

Package Index : testharness 1.0.2. This is intended to be used as a generic functional test framework.

Package Index : testharness 1.0.2

Latest Version: 1.0.5 =================== Test Harness Readme =================== :author: Oisin Mulvihill .. contents:: Introduction ============ This is intended to be used as a generic functional test framework. This uses a simple script system, based on the python console, to load and run commands from test modules. The test modules are python classes that implement the details of how to test the project or program.

The module provides a simple set of functions that can be called from a script. Downloads (All Versions): 60 downloads in the last day 259 downloads in the last week 820 downloads in the last month Author: Oisin Mulvihill License: LGPL Package Index Owner: oisinmulvihill DOAP record: testharness-1.0.2.xml. Package Index : testharness. This is intended to be used as a generic functional test framework. =================== Test Harness Readme =================== :author: Oisin Mulvihill .. contents:: Introduction ============ This is intended to be used as a generic functional test framework.

Package Index : testharness

This uses a simple script system, based on the python console, to load and run commands from test modules. The test modules are python classes that implement the details of how to test the project or program. The module provides a simple set of functions that can be called from a script. The functions can for example, take care of the complexity of starting some service or actually setting/getting some value in a database. Downloads (All Versions): 59 downloads in the last day 269 downloads in the last week 830 downloads in the last month Author: Oisin Mulvihill License: LGPL Package Index Owner: oisinmulvihill DOAP record: testharness-1.0.5.xml. Autoconnect - Google Code. Introduction This module provides the handy ability to get a connection string from a client to server, without having to do specific configuration.

autoconnect - Google Code

The basic idea is the server broadcast on a small list of random ports. The client listens on one of these random ports. When it receives the broadcast the data contains the connection string for the server. One example usage is in an internet cafe management system I developed. My solution to this was to use UDP broadcasts. Example The "autoconnect.example" contains an example client and server that models the basic idea. The unit test case for this project also illustrate how the project is used.