Files
PythonLearn/04_数据库/4_1_PostgreSQL与Psycopg入门/config.example.toml

11 lines
283 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 复制本文件并重命名为 config.toml再填写本地练习数据库信息。
# config.toml 已加入 .gitignore不会被 Git 跟踪。
[postgresql]
host = "数据库主机"
port = 5432
dbname = "数据库名"
user = "用户名"
password = "密码"
connect_timeout = 10