[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

Re: [Python-ideas] Vectorization [was Re: Add list.join() please]

2019-02-04 Thread David Mertz
On Mon, Feb 4, 2019 at 7:14 AM Kirill Balunov wrote: > len(v) # -> 12 > > v[len] # -> > > > In this case you can apply any function, even custom_linked_list from > my_inhouse_module.py. > I think I really like this idea. Maybe as an extra spelling but still allow .apply() to do the same

Re: [Python-ideas] Vectorization [was Re: Add list.join() please]

2019-02-04 Thread Kirill Balunov
вс, 3 февр. 2019 г. в 21:23, David Mertz : > > I think the principled thing to do here is add the minimal number of > methods to Vector itself, and have everything else pass through as > vectorized calls. Most of that minimal number are "magic method": > __len__(), __contains__(), __str__(),

Re: [Python-ideas] Vectorization [was Re: Add list.join() please]

2019-02-04 Thread David Mertz
On Mon, Feb 4, 2019, 12:47 AM Christopher Barker > I've lost track if who is advocating what, but: > Well, I made a toy implementation of a Vector class. I'm not sure what that means I advocate other than the existence of a module on GitHub. FWIW, I called the repo 'stringpy' as a start, so

Re: [Python-ideas] Consistency in naming [was Re: ...ALL CAPS] (off-list)

2019-02-04 Thread Paul Moore
On Mon, 4 Feb 2019 at 05:36, Christopher Barker wrote: > > This is getting pretty off toipic, but I want to point out hat as a rule, > Python has been critisised more for having too MUCH cnage than too little > over the last few years: [...] > Finally, what the heck is wrong with datetime.now ?