How can I convert the PBL (PowerBuilder library) file (having extension .pbl to the CSV file in Python?
Any python library we can work with this extension?
How can I convert the PBL (PowerBuilder library) file (having extension .pbl to the CSV file in Python?
Any python library we can work with this extension?
with open('filename.pbl', 'r') as pblfile:
with open('result.csv', 'w') as csvfile:
// read from pblfile and write it in csvfile
# As Simple As That