From: Michael <mi...@st...> - 2001-03-05 09:21:47
|
oop...@ne... wrote: > > can anyone tell me how do i obtain the dn of entry > from the search result The search result is a tuple of the form (dn,entry) The entry is a dictionary of value list with the name of the attribute type as dictionary key: {attrtype:[value]} Hence you have a search result in variable result. Doing a print repr(result) does help a lot to find out how the data is structured. Ciao, Michael. |