Loose Coupling

Loose Coupling Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 710
  • Released: Mar 2, 2007

Loose Coupling Description

The "broadcaster" and "broker" modules enable loose coupling between objects in a running application.

Loose Coupling Bookmark

Hyperlink code:
Hyperlink for Forum code:

Loose Coupling Script Download Notice

Top 4 Download periodically updates information of Loose Coupling script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Loose Coupling torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Stateful Objects use Mix ins to define behaviour

If you want to implement stateful objects, which have a different set of behaviours according ... object. This is a clean way of providing objects with standard interfaces. ...
Python

Debug runtime objects using gc get objects

... get_objects(). It gives back a list of all objects that are under control of the Garbeage Collector. ... example dumps a list of all higher level objects. At first it gets the list of all objects, than tests if they are higher level and ... if it is not in the list of objects that are more or less always there. ...
Python

Grouping objects into disjoint sets

... class provides a lightweight way to group arbitrary objects together into disjoint sets when a full-blown graph data structure would be overkill. Objects can be joined using .join(), tested for connectedness ... disjoint sets can be retreived using get(). The objects being joined must be hashable. ...
Python

Create objects from variable class names

Sometimes you would want to create objects from various classes based on some condition (without using eval()). For example when parsing X(HT)ML files you want to handle some tags using specific classes. This script is an example in this sense. ...
Python

Just in time instantiation

... a class for Just In Time instantiation of objects. Init is called only when the first attribute is either get or set. Then automatic delegation is used to front for the object. ...
Python