我正在尝试使用 python 连接到 crate 数据库
from crate import client
url = '434.342.435.2:4400' # Faked these numbers for purposes of this post
conn = client.connect(url)
似乎我需要将cert_file
andkey_file
参数传递client.connect
给我的.pem
and.key
文件。查看文档,我找不到任何资源来创建或下载这些文件。
有什么建议吗?即使是评论指出我对初学者来说是一个很好的资源,也将不胜感激。