Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 15, 2018 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/272d213486407dd8162c5a151410dd66 to your computer and use it in GitHub Desktop.
Save parzibyte/272d213486407dd8162c5a151410dd66 to your computer and use it in GitHub Desktop.
def eliminar(id):
base_de_datos = obtener_bd()
resultado = base_de_datos.productos.delete_one(
{
'_id': ObjectId(id)
})
return resultado.deleted_count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment