With the following code:
import csv
class AccessPoint(object):
def __init__(self, name, ipv4, model, location):
self.name = name
self.ipv4 = ipv4
self.model = model
self.location = location
print('{0} born'.format(self.name))
def __del__(self):
On Thursday, July 25, 2019 at 9:57:38 PM UTC-5, Chris Angelico wrote:
> On Fri, Jul 26, 2019 at 12:46 PM DT wrote:
> > def main():
> > ap_list = []
> > ap_dict = {}
> >
> > for row in csv_reader:
> > ap_dict['ap_name&
Hi everyone,
Are there any links or sites on how to read outlook mail boxes or address book?
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I am using ctypes in python 3 on a WXP machine
Loading a dll and using its exported functions works fine.
Now I want to use a function in the dll that is not exported.
In C this can be done by just casting the address in the dll of that
function to an apropriate function pointer and call it