database - How to create Set from Pydblite in Python -


hello i'm using pydblite in order store url in python database. script add urls time in database want delete duplicate (or make set) keeping 1 same url @ ending of program.

i have 2 fields url , date:

    self.db = base('url_database.pdl')     self.db.create('url', 'date', mode="open") 


Comments

Popular posts from this blog

java - Static nested class instance -

Python Pandas join aggregated tables -

process - Python What is the difference between a Pool of worker processes and just running multiple Processes? -