SMB Authentication Module

2005-10-07 Thread Derek Perriero
This may be a simple question to answer, but is there any module that will let you authenticate against a SMB server?  An equivalent package in perl would be the Authen::SMB.  That is the realms of what I am looking for, but in Python. -Derek Perriero-- Perriero, Derek[EMAIL PROTECTED] -- http

Best way to handle cgi sessions

2005-10-14 Thread Derek Perriero
What would be the best way to create a cgi session that contains the basic elements of a cookie and can also hold secure data, such as a username/password.  I've explored the possibilities of using SmartCookie, but that doesn't encrypt my parameters.Here's some background info on what I'm trying to

Re: Best way to handle cgi sessions

2005-10-15 Thread Derek Perriero
the data I store is kept in MySQL, so that's even better.  Regards to your efforts to the community! Cheers, Derek P.S. Sorry for the repeat, this e-mail was never sent  to the list, Thanks! On 10/15/05, Derek Perriero <[EMAIL PROTECTED]> wrote: Christoph, I really appreciate t

LDAP Authentication

2005-12-02 Thread Derek Perriero
and password field in the initialize function blank, I get a successful return. I need some guidance in the correct direction. Thanks! Derek-- Perriero, Derek[EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Remove duplicates from list

2005-06-09 Thread Derek Perriero
I've been un-triumphantly trying to get a list of mine to have no repeats in it.   First, I'm pulling attributes from Zope and forming a list.  Next, I'm  pulling those same values and comparing them against the same list and if the values equal each other and are not already in the list, they appe

Re: Remove duplicates from list

2005-06-09 Thread Derek Perriero
duplicates' is a set (available in the stdlibrary in Python 2.3 and 2.4, see the cookbook for recipies for earlier versions of Python).  Note that sets are unordered, i.e. noguarentee is made about what order the elements are accessed in whenyou iterate over them.-ChrisOn 6/9/05, Derek Perri

Re: Remove duplicates from list

2005-06-10 Thread Derek Perriero
b.Wednesday(you get the idea)print "Sunday", a_lib.Sundayprint-ChrisOn 6/9/05, Derek Perriero < [EMAIL PROTECTED]> wrote:> Sorry for not being more clear.  I'm using Zope to store the hours of each> library on the campus.  The hours of each library will b