如何在 pyrebase python 中提供自定义密钥?

how to give a custom key in pyrebase python?

我如何提供自定义密钥而不是那些 -Lw6e****

I dont want those Lw6e***** names

这是我的代码,我不知道..

db.child("users").push({"key":"value"})

如果您想提供自己的节点名称,请使用 set() 而不是 push() 。您将首先构建对该节点的引用,然后使用要应用于该节点的数据调用 set()。