Guest User

Untitled

a guest
Dec 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def obtener_bd():
  2. host = "localhost"
  3. puerto = "27017"
  4. usuario = "parzibyte"
  5. palabra_secreta = "hunter2"
  6. base_de_datos = "tienda"
  7. cliente = MongoClient("mongodb://{}:{}@{}:{}".format(usuario, palabra_secreta, host, puerto))
  8. return cliente[base_de_datos]
Add Comment
Please, Sign In to add comment