mirror of
				https://github.com/nonebot/nonebot2.git
				synced 2025-10-31 15:06:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			800 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			800 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ---
 | |
| sidebar_position: 6
 | |
| description: 简单插件示例
 | |
| ---
 | |
| 
 | |
| import CodeBlock from "@theme/CodeBlock";
 | |
| import Messenger from "@site/src/components/Messenger";
 | |
| 
 | |
| # 插件示例
 | |
| 
 | |
| ## 命令式问答示例
 | |
| 
 | |
| import WeatherSource from "!!raw-loader!@site/../tests/examples/weather.py";
 | |
| import WeatherTest from "!!raw-loader!@site/../tests/test_examples/test_weather.py";
 | |
| 
 | |
| <CodeBlock className="language-python">{WeatherSource}</CodeBlock>
 | |
| 
 | |
| <Messenger
 | |
|   msgs={[
 | |
|     { position: "right", msg: "/天气" },
 | |
|     { position: "left", msg: "你想查询哪个城市的天气呢?" },
 | |
|     { position: "right", msg: "上海" },
 | |
|     { position: "left", msg: "上海的天气是..." },
 | |
|   ]}
 | |
| />
 | |
| 
 | |
| <details>
 | |
|   <summary>测试示例</summary>
 | |
| 
 | |
| <CodeBlock className="language-python">{WeatherTest}</CodeBlock>
 | |
| 
 | |
| </details>
 |