Local Storage Support for NoneBot2
Project description
NoneBot Plugin LocalStore
✨ NoneBot 本地数据存储插件 ✨
使用方式
加载插件后使用 require
声明插件依赖,直接使用 localstore
插件提供的函数即可。
from pathlib import Path
from nonebot import require
require("nonebot_plugin_localstore")
import nonebot_plugin_localstore as store
plugin_cache_dir: Path = store.get_cache_dir("plugin_name")
plugin_cache_file: Path = store.get_cache_file("plugin_name", "filename")
plugin_config_dir: Path = store.get_config_dir("plugin_name", "filename")
plugin_config_file: Path = store.get_config_file("plugin_name", "filename")
plugin_data_dir: Path = store.get_data_dir("plugin_name")
plugin_data_file: Path = store.get_data_file("plugin_name", "filename")
存储路径
在项目安装插件后,可以使用 nb-cli
查看具体的存储路径:
nb localstore
参考路径如下:
cache path
- macOS:
~/Library/Caches/<AppName>
- Unix:
~/.cache/<AppName>
(XDG default) - Windows:
C:\Users\<username>\AppData\Local\<AppName>\Cache
data path
- macOS:
~/Library/Application Support/<AppName>
- Unix:
~/.local/share/<AppName>
or in $XDG_DATA_HOME, if defined - Win XP (not roaming):
C:\Documents and Settings\<username>\Application Data\<AppName>
- Win 7 (not roaming):
C:\Users\<username>\AppData\Local\<AppName>
config path
- macOS: same as user_data_dir
- Unix:
~/.config/<AppName>
- Win XP (roaming):
C:\Documents and Settings\<username>\Local Settings\Application Data\<AppName>
- Win 7 (roaming):
C:\Users\<username>\AppData\Roaming\<AppName>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for nonebot_plugin_localstore-0.5.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0099d99c427b13c52b6a23588b954dc8651c0b0b556d743f36aa2dd246576611 |
|
MD5 | 394366ee9753a5949e590d4f5366e281 |
|
BLAKE2b-256 | 02b5d5d93672d6e93c976acc3b48730bbeae06d5c2c6f0f6b9e2407d52e60143 |
Close
Hashes for nonebot_plugin_localstore-0.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31ada7d363bdc9326e14f054d02f2c8cee58ec7a970e534ac2793d75b818cf95 |
|
MD5 | 812a502a13b9d642e087de23def0b786 |
|
BLAKE2b-256 | 7c21b653d8801ef1172da2a467bbb9d9813787c7343f370e175515f4bff23ba1 |