Re: [Python-ideas] need python automation code convert MDB files into csv files.

2019-02-05 Thread Rhodri James
On 05/02/2019 13:02, MRAB wrote: On 2019-02-05 11:42, Rhodri James wrote: On 05/02/2019 00:10, vinoth A N wrote: [snip] extension = 'mdb' result = [i for i in glob.glob('*.{}'.format(extension))] Not a bug, but you are making unnecessary work for yourself here. 'extension' is only ever the s

Re: [Python-ideas] need python automation code convert MDB files into csv files.

2019-02-05 Thread MRAB
On 2019-02-05 11:42, Rhodri James wrote: On 05/02/2019 00:10, vinoth A N wrote: [snip] extension = 'mdb' result = [i for i in glob.glob('*.{}'.format(extension))] Not a bug, but you are making unnecessary work for yourself here. 'extension' is only ever the string "mdb", so why go to all the

Re: [Python-ideas] need python automation code convert MDB files into csv files.

2019-02-05 Thread Rhodri James
On 05/02/2019 00:10, vinoth A N wrote: Hello Friends, Hello there! This is actually a mailing list/newsgroup for discussing ideas for extending and developing the Python language, not for dealing with people's programming problems. I've made some comments here, but in the future could you

[Python-ideas] need python automation code convert MDB files into csv files.

2019-02-04 Thread vinoth A N
Hello Friends, I am in process of writing python automation code through which I can read the MDB file which contains several tables which need to convert them in multiple CSV file or xlsx file. ## package required import pandas as pd import numpy as np import os import glob from functools imp