(self, obj, **kwargs)
| 44 | self._db.ceps.update({'cep': obj['cep']}, update, upsert=True) |
| 45 | |
| 46 | def insert_or_update_uf(self, obj, **kwargs): |
| 47 | update = {'$set': obj} |
| 48 | self._db.ufs.update({'sigla': obj['sigla']}, update, upsert=True) |
| 49 | |
| 50 | def insert_or_update_cidade(self, obj, **kwargs): |
| 51 | update = {'$set': obj} |