Re: [Tutor] implementing config files

2006-06-02 Thread Carroll, Barry
-Original Message- > Date: Thu, 1 Jun 2006 23:36:27 -0700 > From: "Carlos Daniel Ruvalcaba Valenzuela" <[EMAIL PROTECTED]> > Subject: Re: [Tutor] implementing config files > To: "Tracy R Reed" <[EMAIL PROTECTED]> > Cc: tutor@python.org > Mes

Re: [Tutor] implementing config files

2006-06-02 Thread Kent Johnson
Tracy R Reed wrote: > I need to implement a config file which will provide hostnames, the > names of checks to run on those hosts, and the options to those checks. > These things are sets which are nested inside each other which we can > think of like nested objects. I could make a dictionary co

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