Closed markyann11 closed 9 years ago
I don't believe that it is possible to make search only return people that you haven't contacted, but it should be easy to perform some action only on those you havent contacted: as follows:
for profile in user.search():
if not profile.contacted:
profile.message("Hey")
@IvanMalison awesome thanks !
I see this part of the code in search.py but I dont know how to use it so I can only message people I have not messaged before. def contacted(self): return bool(xpb.div.withclass('fancydate').apply(self._div))