31 lines
419 B
Python
31 lines
419 B
Python
'''
|
|
Created on 2 nov 2019
|
|
|
|
@author: Emanuele Trabattoni
|
|
'''
|
|
import libfancylogger
|
|
class bananaSPLITTER(object):
|
|
'''
|
|
Funzionalita' base per apertura e divisione di file da LexisNexis
|
|
'''
|
|
|
|
def __init__(self, params):
|
|
pass
|
|
|
|
def openFile(self):
|
|
pass
|
|
|
|
def splitFile(self):
|
|
pass
|
|
|
|
def closeFile(self):
|
|
pass
|
|
|
|
def saveSeparate(self):
|
|
pass
|
|
|
|
def saveBody(self):
|
|
pass
|
|
|
|
|
|
|