How to convert PBL file to CSV Using python

Viewed 19

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?

1 Answers
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
Related