readABSFile.py
19 lines
| 376 B
| text/x-python
|
PythonLexer
|
r147 | ''' | |
Created on May 2, 2013 | |||
@author: Jose Antonio Sal y Rosas Celi | |||
@contact: jose.salyrosas@jro.igp.gob.pe | |||
''' | |||
class readABSFile(object): | |||
__scriptName = "readABSFile.py" | |||
def __init__(self, filename): | |||
self.fileName = filename | |||
def readFile(self): | |||
destination = open(self.fileName, 'wb+') | |||
destination.close() | |||