Re: [Tutor] implementing config files

2006-06-01 Thread Carlos Daniel Ruvalcaba Valenzuela
Your could try to use XML files to store configuration files, I already coded something like that, using expat parser and loading the XML contents to objects and attributes, this is a sample code of how works my module: Lets supouse we have this file config.xml with the following contents:

[Tutor] implementing config files

2006-06-01 Thread Tracy R Reed
Hello all! I am writing some code to implement a bunch of passive checks for the nagios network monitoring system. It runs some checks on the local machine and reports the results back to the nagios server using rpc calls via Perspective Broker from the Twisted module. This code and associated