Index: trunk/fundraiser-statistics/fundraiser-scripts/classes/FileHandler.py |
— | — | @@ -0,0 +1,43 @@ |
| 2 | +"""
|
| 3 | +
|
| 4 | + Used for interfacing into particular filetypes for the framework
|
| 5 | +
|
| 6 | + particularly config files
|
| 7 | +
|
| 8 | +"""
|
| 9 | +
|
| 10 | +__author__ = "Ryan Faulkner"
|
| 11 | +__revision__ = "$Rev$"
|
| 12 | +__date__ = "April 16th, 2011"
|
| 13 | +
|
| 14 | +
|
| 15 | +"""
|
| 16 | +
|
| 17 | + BASE CLASS :: FileHandler
|
| 18 | +
|
| 19 | + General file parsing functionality
|
| 20 | +
|
| 21 | + METHODS:
|
| 22 | +
|
| 23 | +
|
| 24 | +"""
|
| 25 | +class FileHandler(object):
|
| 26 | +
|
| 27 | + def __init__(self):
|
| 28 | + return
|
| 29 | +
|
| 30 | +
|
| 31 | +"""
|
| 32 | +
|
| 33 | + CLASS :: ConfigFileHandler
|
| 34 | +
|
| 35 | + Parse a configuration file for reporting framework
|
| 36 | +
|
| 37 | + METHODS:
|
| 38 | +
|
| 39 | +
|
| 40 | +"""
|
| 41 | +class ConfigFileHandler(object):
|
| 42 | +
|
| 43 | + def __init__(self):
|
| 44 | + return |
\ No newline at end of file |