Primo commit della libsplit
This commit is contained in:
0
bananaSPLIT/libbabanasplit/__init__.py
Normal file
0
bananaSPLIT/libbabanasplit/__init__.py
Normal file
30
bananaSPLIT/libbabanasplit/libconfload.py
Normal file
30
bananaSPLIT/libbabanasplit/libconfload.py
Normal file
@@ -0,0 +1,30 @@
|
||||
'''
|
||||
Created on 2 nov 2019
|
||||
|
||||
@author: Emanuele Trabattoni
|
||||
'''
|
||||
|
||||
class bananaCONF(object):
|
||||
'''
|
||||
Carica e Salva file di configurazione per bananaSPLITTER
|
||||
'''
|
||||
|
||||
def __init__(self, workdir=None):
|
||||
pass
|
||||
|
||||
def open(self):
|
||||
pass
|
||||
|
||||
def reload(self):
|
||||
pass
|
||||
|
||||
def save(self):
|
||||
pass
|
||||
|
||||
def get(self):
|
||||
pass
|
||||
|
||||
def set(self):
|
||||
pass
|
||||
|
||||
|
||||
32
bananaSPLIT/libbabanasplit/libfancylogger.py
Normal file
32
bananaSPLIT/libbabanasplit/libfancylogger.py
Normal file
@@ -0,0 +1,32 @@
|
||||
'''
|
||||
Created on 2 nov 2019
|
||||
|
||||
@author: Emanuele Trabattoni
|
||||
'''
|
||||
import logging
|
||||
|
||||
class fancyLogger(object):
|
||||
'''
|
||||
Colorizza il logger di python, per un' esperienza alla willy wonka
|
||||
'''
|
||||
|
||||
def __init__(self, params):
|
||||
pass
|
||||
|
||||
def debug(self):
|
||||
pass
|
||||
|
||||
def info(self):
|
||||
pass
|
||||
|
||||
def warn(self):
|
||||
pass
|
||||
|
||||
def error(self):
|
||||
pass
|
||||
|
||||
def critical(self):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
31
bananaSPLIT/libbabanasplit/libsplit.py
Normal file
31
bananaSPLIT/libbabanasplit/libsplit.py
Normal file
@@ -0,0 +1,31 @@
|
||||
'''
|
||||
Created on 2 nov 2019
|
||||
|
||||
@author: Emanuele Trabattoni
|
||||
'''
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user