python 读取json配置文件
时间: 2023-07-08 18:50:30 浏览: 157
json_database:持久和可搜索的python字典
Python的json模块可以用来读取JSON格式的配置文件。下面是一个简单的示例代码:
```python
import json
# 读取JSON配置文件
with open('config.json') as f:
config = json.load(f)
# 输出配置项
print('Host:', config['host'])
print('Port:', config['port'])
print('Username:', config['username'])
print('Password:', config['password'])
```
假设我们有一个名为config.json的JSON配置文件,其中包含以下内容:
```json
{
"host": "localhost",
"port": 3306,
"username": "admin",
"password": "password123"
}
```
运行上述代码将输出:
```
Host: localhost
Port: 3306
Username: admin
Password: password123
```
这样就可以方便地读取和使用JSON格式的配置文件了。
阅读全文