mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2025-04-12 23:29:37 +08:00
✨ Web UI
日志添加数量选择,优化插件权限管理
This commit is contained in:
parent
8ab63be8a1
commit
ffb902e3e9
@ -1,4 +1,3 @@
|
|||||||
import asyncio
|
|
||||||
import datetime
|
import datetime
|
||||||
from typing import Dict, List
|
from typing import Dict, List
|
||||||
|
|
||||||
@ -47,10 +46,15 @@ class PluginManager:
|
|||||||
user_list = await get_bot().get_friend_list()
|
user_list = await get_bot().get_friend_list()
|
||||||
for plugin in plugin_list:
|
for plugin in plugin_list:
|
||||||
if plugin.name not in HIDDEN_PLUGINS:
|
if plugin.name not in HIDDEN_PLUGINS:
|
||||||
await asyncio.gather(*[PluginPermission.update_or_create(name=plugin.name, session_id=group['group_id'],
|
models = ([PluginPermission(name=plugin.name, session_id=group['group_id'], session_type='group') for
|
||||||
session_type='group') for group in group_list])
|
group in group_list] if group_list else []) + \
|
||||||
await asyncio.gather(*[PluginPermission.update_or_create(name=plugin.name, session_id=user['user_id'],
|
([PluginPermission(name=plugin.name, session_id=user['user_id'], session_type='user') for
|
||||||
session_type='user') for user in user_list])
|
user in user_list] if user_list else [])
|
||||||
|
if models:
|
||||||
|
await PluginPermission.bulk_create(
|
||||||
|
models,
|
||||||
|
ignore_conflicts=True
|
||||||
|
)
|
||||||
if plugin.name not in HIDDEN_PLUGINS:
|
if plugin.name not in HIDDEN_PLUGINS:
|
||||||
if plugin.name not in cls.plugins:
|
if plugin.name not in cls.plugins:
|
||||||
if metadata := plugin.metadata:
|
if metadata := plugin.metadata:
|
||||||
@ -141,6 +145,7 @@ async def _(event: MessageEvent, matcher: Matcher):
|
|||||||
perm = await PluginPermission.get_or_none(name=matcher.plugin_name, session_id=session_id,
|
perm = await PluginPermission.get_or_none(name=matcher.plugin_name, session_id=session_id,
|
||||||
session_type=session_type)
|
session_type=session_type)
|
||||||
if not perm:
|
if not perm:
|
||||||
|
await PluginPermission.create(name=matcher.plugin_name, session_id=session_id, session_type=session_type)
|
||||||
return
|
return
|
||||||
if not perm.status:
|
if not perm.status:
|
||||||
raise IgnoredException('插件使用权限已禁用')
|
raise IgnoredException('插件使用权限已禁用')
|
||||||
|
@ -129,6 +129,8 @@ async def draw_chara_detail(uid: str, info: Character):
|
|||||||
for e, v in info.prop.dmg_bonus.items():
|
for e, v in info.prop.dmg_bonus.items():
|
||||||
if v >= max_element[1]:
|
if v >= max_element[1]:
|
||||||
max_element = e, v
|
max_element = e, v
|
||||||
|
if max_element[1] == 0:
|
||||||
|
max_element = info.element, 0
|
||||||
await img.text(f'{max_element[0]}伤害加成' if max_element[0] == '物理' else f'{max_element[0]}元素伤害加成',
|
await img.text(f'{max_element[0]}伤害加成' if max_element[0] == '物理' else f'{max_element[0]}元素伤害加成',
|
||||||
59,
|
59,
|
||||||
674,
|
674,
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import asyncio
|
from nonebot import on_regex, on_command, on_notice
|
||||||
|
from nonebot import plugin as nb_plugin
|
||||||
from nonebot import on_regex, on_command
|
|
||||||
from nonebot.adapters.onebot.v11 import Message, GroupMessageEvent, PrivateMessageEvent, MessageEvent
|
from nonebot.adapters.onebot.v11 import Message, GroupMessageEvent, PrivateMessageEvent, MessageEvent
|
||||||
|
from nonebot.adapters.onebot.v11 import NoticeEvent, FriendAddNoticeEvent, GroupIncreaseNoticeEvent
|
||||||
from nonebot.params import RegexDict, CommandArg
|
from nonebot.params import RegexDict, CommandArg
|
||||||
from nonebot.permission import SUPERUSER
|
from nonebot.permission import SUPERUSER
|
||||||
from nonebot.plugin import PluginMetadata
|
from nonebot.plugin import PluginMetadata
|
||||||
@ -9,7 +9,7 @@ from nonebot.rule import Rule
|
|||||||
from nonebot.typing import T_State
|
from nonebot.typing import T_State
|
||||||
|
|
||||||
from LittlePaimon import SUPERUSERS
|
from LittlePaimon import SUPERUSERS
|
||||||
from LittlePaimon.config import ConfigManager, PluginManager
|
from LittlePaimon.config import ConfigManager, PluginManager, HIDDEN_PLUGINS
|
||||||
from LittlePaimon.database import PluginPermission
|
from LittlePaimon.database import PluginPermission
|
||||||
from LittlePaimon.utils import logger
|
from LittlePaimon.utils import logger
|
||||||
from LittlePaimon.utils.message import CommandObjectID
|
from LittlePaimon.utils.message import CommandObjectID
|
||||||
@ -26,30 +26,39 @@ __plugin_meta__ = PluginMetadata(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def notice_rule(event: NoticeEvent):
|
||||||
|
return isinstance(event, (FriendAddNoticeEvent, GroupIncreaseNoticeEvent))
|
||||||
|
|
||||||
|
|
||||||
def fullmatch(msg: Message = CommandArg()) -> bool:
|
def fullmatch(msg: Message = CommandArg()) -> bool:
|
||||||
return not bool(msg)
|
return not bool(msg)
|
||||||
|
|
||||||
|
|
||||||
manage_cmd = on_regex(
|
manage_cmd = on_regex(
|
||||||
r'^pm (?P<func>ban|unban) (?P<plugin>([\w ]*)|all|全部) ?(-g (?P<group>[\d ]*) ?)?(-u (?P<user>[\d ]*) ?)?(?P<reserve>-r)?',
|
r'^pm (?P<func>ban|unban) (?P<plugin>([\w ]*)|all|全部) ?(-g (?P<group>[\d ]*) ?)?(-u (?P<user>[\d ]*) ?)?(?P<reserve>-r)?',
|
||||||
priority=1, state={
|
priority=1, block=True, state={
|
||||||
'pm_name': 'pm-ban|unban',
|
'pm_name': 'pm-ban|unban',
|
||||||
'pm_description': '禁用|取消禁用插件的群|用户使用权限',
|
'pm_description': '禁用|取消禁用插件的群|用户使用权限',
|
||||||
'pm_usage': 'pm ban|unban <插件名>',
|
'pm_usage': 'pm ban|unban <插件名>',
|
||||||
'pm_priority': 1
|
'pm_priority': 1
|
||||||
})
|
})
|
||||||
help_cmd = on_command('help', aliases={'帮助', '菜单', 'pm help'}, priority=1, rule=Rule(fullmatch), state={
|
help_cmd = on_command('help', aliases={'帮助', '菜单', 'pm help'}, priority=1, rule=Rule(fullmatch), block=True, state={
|
||||||
'pm_name': 'pm-help',
|
'pm_name': 'pm-help',
|
||||||
'pm_description': '查看本帮助',
|
'pm_description': '查看本帮助',
|
||||||
'pm_usage': 'help',
|
'pm_usage': 'help',
|
||||||
'pm_priority': 3
|
'pm_priority': 3
|
||||||
})
|
})
|
||||||
set_config_cmd = on_command('pm set', priority=1, permission=SUPERUSER, state={
|
set_config_cmd = on_command('pm set', priority=1, permission=SUPERUSER, block=True, state={
|
||||||
'pm_name': 'pm-set',
|
'pm_name': 'pm-set',
|
||||||
'pm_description': '设置bot的配置项',
|
'pm_description': '设置bot的配置项',
|
||||||
'pm_usage': 'pm set<配置名> <值>',
|
'pm_usage': 'pm set<配置名> <值>',
|
||||||
'pm_priority': 2
|
'pm_priority': 2
|
||||||
})
|
})
|
||||||
|
notices = on_notice(priority=1, rule=Rule(notice_rule), block=True, state={
|
||||||
|
'pm_name': 'pm-new-group-user',
|
||||||
|
'pm_description': '为新加入的群|用户添加插件使用权限',
|
||||||
|
'pm_show': False
|
||||||
|
})
|
||||||
|
|
||||||
cache_help = {}
|
cache_help = {}
|
||||||
|
|
||||||
@ -111,9 +120,9 @@ async def _(state: T_State):
|
|||||||
if 'all' in state['plugin']:
|
if 'all' in state['plugin']:
|
||||||
await PluginPermission.filter(session_id=group_id, session_type='group').update(status=state['bool'])
|
await PluginPermission.filter(session_id=group_id, session_type='group').update(status=state['bool'])
|
||||||
else:
|
else:
|
||||||
await asyncio.gather(*[
|
await PluginPermission.filter(name__in=state['plugin'], session_id=group_id,
|
||||||
PluginPermission.filter(name=plugin, session_id=group_id, session_type='group').update(
|
session_type='group').update(
|
||||||
status=state['bool']) for plugin in state['plugin']])
|
status=state['bool'])
|
||||||
logger.info('插件管理器',
|
logger.info('插件管理器',
|
||||||
f'已{"<g>启用</g>" if state["bool"] else "<r>禁用</r>"}群<m>{" ".join(map(str, state["group"]))}</m>的插件<m>{" ".join(state["plugin"])}</m>使用权限')
|
f'已{"<g>启用</g>" if state["bool"] else "<r>禁用</r>"}群<m>{" ".join(map(str, state["group"]))}</m>的插件<m>{" ".join(state["plugin"])}</m>使用权限')
|
||||||
await manage_cmd.finish(
|
await manage_cmd.finish(
|
||||||
@ -123,9 +132,8 @@ async def _(state: T_State):
|
|||||||
if 'all' in state['plugin']:
|
if 'all' in state['plugin']:
|
||||||
await PluginPermission.filter(session_id=user_id, session_type='user').update(status=state['bool'])
|
await PluginPermission.filter(session_id=user_id, session_type='user').update(status=state['bool'])
|
||||||
else:
|
else:
|
||||||
await asyncio.gather(*[
|
await PluginPermission.filter(name__in=state['plugin'], session_id=user_id, session_type='user').update(
|
||||||
PluginPermission.filter(name=plugin, session_id=user_id, session_type='user').update(
|
status=state['bool'])
|
||||||
status=state['bool']) for plugin in state['plugin']])
|
|
||||||
logger.info('插件管理器',
|
logger.info('插件管理器',
|
||||||
f'已{"<g>启用</g>" if state["bool"] else "<r>禁用</r>"}用户<m>{" ".join(map(str, state["user"]))}</m>的插件<m>{" ".join(state["plugin"])}</m>使用权限')
|
f'已{"<g>启用</g>" if state["bool"] else "<r>禁用</r>"}用户<m>{" ".join(map(str, state["user"]))}</m>的插件<m>{" ".join(state["plugin"])}</m>使用权限')
|
||||||
await manage_cmd.finish(
|
await manage_cmd.finish(
|
||||||
@ -135,11 +143,10 @@ async def _(state: T_State):
|
|||||||
if 'all' in state['plugin']:
|
if 'all' in state['plugin']:
|
||||||
plugin_list = await PluginPermission.filter(session_id=group_id, session_type='group').all()
|
plugin_list = await PluginPermission.filter(session_id=group_id, session_type='group').all()
|
||||||
else:
|
else:
|
||||||
plugin_list = list(await asyncio.gather(
|
plugin_list = await PluginPermission.filter(name__in=state['plugin'], session_id=group_id,
|
||||||
*[PluginPermission.get_or_none(name=p, session_id=group_id, session_type='group') for p in
|
session_type='group').all()
|
||||||
state['plugin']]))
|
if plugin_list:
|
||||||
for plugin in plugin_list:
|
for plugin in plugin_list:
|
||||||
if plugin is not None:
|
|
||||||
plugin.ban = list(set(plugin.ban) - set(state['user'])) if state['bool'] else list(
|
plugin.ban = list(set(plugin.ban) - set(state['user'])) if state['bool'] else list(
|
||||||
set(plugin.ban) | set(state['user']))
|
set(plugin.ban) | set(state['user']))
|
||||||
await plugin.save()
|
await plugin.save()
|
||||||
@ -170,3 +177,24 @@ async def _(event: MessageEvent, msg: Message = CommandArg()):
|
|||||||
else:
|
else:
|
||||||
result = ConfigManager.set_config(msg[0], msg[1])
|
result = ConfigManager.set_config(msg[0], msg[1])
|
||||||
await set_config_cmd.finish(result)
|
await set_config_cmd.finish(result)
|
||||||
|
|
||||||
|
|
||||||
|
@notices.handle()
|
||||||
|
async def _(event: NoticeEvent):
|
||||||
|
plugin_list = nb_plugin.get_loaded_plugins()
|
||||||
|
if isinstance(event, FriendAddNoticeEvent):
|
||||||
|
models = [
|
||||||
|
PluginPermission(name=plugin, session_id=event.user_id, session_type='user') for plugin in plugin_list if plugin not in HIDDEN_PLUGINS
|
||||||
|
]
|
||||||
|
elif isinstance(event, GroupIncreaseNoticeEvent) and event.user_id == event.self_id:
|
||||||
|
models = [
|
||||||
|
PluginPermission(name=plugin, session_id=event.group_id, session_type='group') for plugin in plugin_list if
|
||||||
|
plugin not in HIDDEN_PLUGINS
|
||||||
|
]
|
||||||
|
else:
|
||||||
|
return
|
||||||
|
if models:
|
||||||
|
await PluginPermission.bulk_create(
|
||||||
|
models,
|
||||||
|
ignore_conflicts=True
|
||||||
|
)
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import asyncio
|
import asyncio
|
||||||
|
from typing import Union
|
||||||
|
|
||||||
from fastapi import APIRouter
|
from fastapi import APIRouter
|
||||||
from fastapi.responses import JSONResponse, StreamingResponse
|
from fastapi.responses import JSONResponse, StreamingResponse
|
||||||
@ -31,8 +32,8 @@ route = APIRouter()
|
|||||||
|
|
||||||
|
|
||||||
@route.get('/log', response_class=StreamingResponse)
|
@route.get('/log', response_class=StreamingResponse)
|
||||||
async def get_log(level: str = 'info'):
|
async def get_log(level: str = 'info', num: Union[int, str] = 100):
|
||||||
show_logs = info_logs if level == 'info' else debug_logs
|
show_logs = info_logs[-(num or 1):] if level == 'info' else debug_logs[-(num or 1):]
|
||||||
|
|
||||||
async def streaming_logs():
|
async def streaming_logs():
|
||||||
for log in show_logs:
|
for log in show_logs:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from LittlePaimon.utils import __version__
|
from LittlePaimon.utils import __version__
|
||||||
from amis import Page, PageSchema, Html, Property, Service, Flex, ActionType, LevelEnum, Divider, ButtonGroupSelect, Log, Alert, Form, Dialog
|
from amis import Page, PageSchema, Html, Property, Service, Flex, ActionType, LevelEnum, Divider, ButtonGroupSelect, Log, Alert, Form, Dialog, Select, Group
|
||||||
|
|
||||||
logo = Html(html=f'''
|
logo = Html(html=f'''
|
||||||
<p align="center">
|
<p align="center">
|
||||||
@ -17,20 +17,48 @@ logo = Html(html=f'''
|
|||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
''')
|
''')
|
||||||
select_log = ButtonGroupSelect(
|
select_log_num = Select(
|
||||||
|
label='日志数量',
|
||||||
|
name='log_num',
|
||||||
|
value=100,
|
||||||
|
options=[
|
||||||
|
{
|
||||||
|
'label': 100,
|
||||||
|
'value': 100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': 200,
|
||||||
|
'value': 200
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': 300,
|
||||||
|
'value': 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': 400,
|
||||||
|
'value': 400
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': 500,
|
||||||
|
'value': 500
|
||||||
|
}
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
select_log_level = ButtonGroupSelect(
|
||||||
label='日志等级',
|
label='日志等级',
|
||||||
name='log_level',
|
name='log_level',
|
||||||
btnLevel=LevelEnum.light,
|
btnLevel=LevelEnum.light,
|
||||||
btnActiveLevel=LevelEnum.info,
|
btnActiveLevel=LevelEnum.info,
|
||||||
value='/LittlePaimon/api/log?level=info',
|
value='info',
|
||||||
options=[
|
options=[
|
||||||
{
|
{
|
||||||
'label': 'INFO',
|
'label': 'INFO',
|
||||||
'value': '/LittlePaimon/api/log?level=info'
|
'value': 'info'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'label': 'DEBUG',
|
'label': 'DEBUG',
|
||||||
'value': '/LittlePaimon/api/log?level=debug'
|
'value': 'debug'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
@ -39,7 +67,7 @@ log_page = Log(
|
|||||||
autoScroll=True,
|
autoScroll=True,
|
||||||
placeholder='暂无日志数据...',
|
placeholder='暂无日志数据...',
|
||||||
operation=['stop', 'showLineNumber', 'filter'],
|
operation=['stop', 'showLineNumber', 'filter'],
|
||||||
source='${log_level | raw}'
|
source='/LittlePaimon/api/log?level=${log_level | raw}&num=${log_num | raw}'
|
||||||
)
|
)
|
||||||
|
|
||||||
operation_button = Flex(justify='center', items=[
|
operation_button = Flex(justify='center', items=[
|
||||||
@ -65,9 +93,9 @@ operation_button = Flex(justify='center', items=[
|
|||||||
actions=[],
|
actions=[],
|
||||||
body=[
|
body=[
|
||||||
Alert(level=LevelEnum.info,
|
Alert(level=LevelEnum.info,
|
||||||
body='查看最近最多500条日志,不会自动刷新,需要手动点击两次"暂停键"来进行刷新。'),
|
body='查看最近最多500条日志,不会自动刷新,需要手动点击两次"暂停键"来进行刷新,DEBUG日志需要Nonebot日志模式为DEBUG才能查看。'),
|
||||||
Form(
|
Form(
|
||||||
body=[select_log, log_page]
|
body=[Group(body=[select_log_num, select_log_level]), log_page]
|
||||||
)])
|
)])
|
||||||
)
|
)
|
||||||
])
|
])
|
||||||
|
@ -11,12 +11,6 @@ github_logo = Tpl(className='w-full',
|
|||||||
tpl='<div class="flex justify-between"><div></div><div><a href="https://github.com/CMHopeSunshine/LittlePaimon" target="_blank" title="Copyright"><i class="fa fa-github fa-2x"></i></a></div></div>')
|
tpl='<div class="flex justify-between"><div></div><div><a href="https://github.com/CMHopeSunshine/LittlePaimon" target="_blank" title="Copyright"><i class="fa fa-github fa-2x"></i></a></div></div>')
|
||||||
header = Flex(className='w-full', justify='flex-end', alignItems='flex-end', items=[github_logo])
|
header = Flex(className='w-full', justify='flex-end', alignItems='flex-end', items=[github_logo])
|
||||||
|
|
||||||
log_page = Log(
|
|
||||||
autoScroll=True,
|
|
||||||
placeholder='日志加载中...',
|
|
||||||
operation=['stop', 'filter'],
|
|
||||||
source='/LittlePaimon/api/log'
|
|
||||||
)
|
|
||||||
|
|
||||||
admin_app = App(brandName='LittlePaimon',
|
admin_app = App(brandName='LittlePaimon',
|
||||||
logo='http://static.cherishmoon.fun/LittlePaimon/readme/logo.png',
|
logo='http://static.cherishmoon.fun/LittlePaimon/readme/logo.png',
|
||||||
|
196
poetry.lock
generated
196
poetry.lock
generated
@ -16,7 +16,7 @@ reference = "tsinghua"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "amis-python"
|
name = "amis-python"
|
||||||
version = "1.0.5"
|
version = "1.0.6"
|
||||||
description = "基于百度amis前端框架的python pydantic模型封装。"
|
description = "基于百度amis前端框架的python pydantic模型封装。"
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
@ -55,11 +55,11 @@ reference = "tsinghua"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "apscheduler"
|
name = "apscheduler"
|
||||||
version = "3.9.1"
|
version = "3.9.1.post1"
|
||||||
description = "In-process task scheduler with Cron-like capabilities"
|
description = "In-process task scheduler with Cron-like capabilities"
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
|
python-versions = "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
pytz = "*"
|
pytz = "*"
|
||||||
@ -645,7 +645,7 @@ reference = "tsinghua"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "matplotlib"
|
name = "matplotlib"
|
||||||
version = "3.6.1"
|
version = "3.6.2"
|
||||||
description = "Python plotting package"
|
description = "Python plotting package"
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
@ -865,7 +865,7 @@ reference = "tsinghua"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "prompt-toolkit"
|
name = "prompt-toolkit"
|
||||||
version = "3.0.31"
|
version = "3.0.32"
|
||||||
description = "Library for building powerful interactive command lines in Python"
|
description = "Library for building powerful interactive command lines in Python"
|
||||||
category = "dev"
|
category = "dev"
|
||||||
optional = false
|
optional = false
|
||||||
@ -881,7 +881,7 @@ reference = "tsinghua"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "psutil"
|
name = "psutil"
|
||||||
version = "5.9.3"
|
version = "5.9.4"
|
||||||
description = "Cross-platform lib for process and system monitoring in Python."
|
description = "Cross-platform lib for process and system monitoring in Python."
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
@ -1603,14 +1603,14 @@ reference = "tsinghua"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "watchfiles"
|
name = "watchfiles"
|
||||||
version = "0.18.0"
|
version = "0.18.1"
|
||||||
description = "Simple, modern and high performance file watching and code reload in python."
|
description = "Simple, modern and high performance file watching and code reload in python."
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.7"
|
python-versions = ">=3.7"
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
anyio = ">=3.0.0,<4"
|
anyio = ">=3.0.0"
|
||||||
|
|
||||||
[package.source]
|
[package.source]
|
||||||
type = "legacy"
|
type = "legacy"
|
||||||
@ -1687,16 +1687,16 @@ aiosqlite = [
|
|||||||
{file = "aiosqlite-0.17.0.tar.gz", hash = "sha256:f0e6acc24bc4864149267ac82fb46dfb3be4455f99fe21df82609cc6e6baee51"},
|
{file = "aiosqlite-0.17.0.tar.gz", hash = "sha256:f0e6acc24bc4864149267ac82fb46dfb3be4455f99fe21df82609cc6e6baee51"},
|
||||||
]
|
]
|
||||||
amis-python = [
|
amis-python = [
|
||||||
{file = "amis-python-1.0.5.tar.gz", hash = "sha256:cafb02dc39735d102fde96a6cd22168803be7f420da5b7fe198af98d2d3d385e"},
|
{file = "amis-python-1.0.6.tar.gz", hash = "sha256:75c4c5961d1053f555cae5bd4b802b9a1293204aa6d07b9a7e93a1fd66bebf3e"},
|
||||||
{file = "amis_python-1.0.5-py3-none-any.whl", hash = "sha256:2313f4644733f89e5e0976d7fd968f4f240ba63cd8fd3e7c499d562e6d6085ee"},
|
{file = "amis_python-1.0.6-py3-none-any.whl", hash = "sha256:eea0b3982badc1c62ec0d25fb0d107a01ba8ddc69710fabd63febec305bd5e1d"},
|
||||||
]
|
]
|
||||||
anyio = [
|
anyio = [
|
||||||
{file = "anyio-3.6.2-py3-none-any.whl", hash = "sha256:fbbe32bd270d2a2ef3ed1c5d45041250284e31fc0a4df4a5a6071842051a51e3"},
|
{file = "anyio-3.6.2-py3-none-any.whl", hash = "sha256:fbbe32bd270d2a2ef3ed1c5d45041250284e31fc0a4df4a5a6071842051a51e3"},
|
||||||
{file = "anyio-3.6.2.tar.gz", hash = "sha256:25ea0d673ae30af41a0c442f81cf3b38c7e79fdc7b60335a4c14e05eb0947421"},
|
{file = "anyio-3.6.2.tar.gz", hash = "sha256:25ea0d673ae30af41a0c442f81cf3b38c7e79fdc7b60335a4c14e05eb0947421"},
|
||||||
]
|
]
|
||||||
apscheduler = [
|
apscheduler = [
|
||||||
{file = "APScheduler-3.9.1-py2.py3-none-any.whl", hash = "sha256:ddc25a0ddd899de44d7f451f4375fb971887e65af51e41e5dcf681f59b8b2c9a"},
|
{file = "APScheduler-3.9.1.post1-py2.py3-none-any.whl", hash = "sha256:c8c618241dbb2785ed5a687504b14cb1851d6f7b5a4edf3a51e39cc6a069967a"},
|
||||||
{file = "APScheduler-3.9.1.tar.gz", hash = "sha256:65e6574b6395498d371d045f2a8a7e4f7d50c6ad21ef7313d15b1c7cf20df1e3"},
|
{file = "APScheduler-3.9.1.post1.tar.gz", hash = "sha256:b2bea0309569da53a7261bfa0ce19c67ddbfe151bda776a6a907579fdbd3eb2a"},
|
||||||
]
|
]
|
||||||
arrow = [
|
arrow = [
|
||||||
{file = "arrow-1.2.3-py3-none-any.whl", hash = "sha256:5a49ab92e3b7b71d96cd6bfcc4df14efefc9dfa96ea19045815914a6ab6b1fe2"},
|
{file = "arrow-1.2.3-py3-none-any.whl", hash = "sha256:5a49ab92e3b7b71d96cd6bfcc4df14efefc9dfa96ea19045815914a6ab6b1fe2"},
|
||||||
@ -2175,47 +2175,47 @@ markupsafe = [
|
|||||||
{file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
|
{file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
|
||||||
]
|
]
|
||||||
matplotlib = [
|
matplotlib = [
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:7730e60e751cfcfe7fcb223cf03c0b979e9a064c239783ad37929d340a364cef"},
|
{file = "matplotlib-3.6.2-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:8d0068e40837c1d0df6e3abf1cdc9a34a6d2611d90e29610fa1d2455aeb4e2e5"},
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:9dd40505ccc526acaf9a5db1b3029e237c64b58f1249983b28a291c2d6a1d0fa"},
|
{file = "matplotlib-3.6.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:252957e208c23db72ca9918cb33e160c7833faebf295aaedb43f5b083832a267"},
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:85948b303534b69fd771126764cf883fde2af9b003eb5778cb60f3b46f93d3f6"},
|
{file = "matplotlib-3.6.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d50e8c1e571ee39b5dfbc295c11ad65988879f68009dd281a6e1edbc2ff6c18c"},
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71eced071825005011cdc64efbae2e2c76b8209c18aa487dedf69796fe4b1e40"},
|
{file = "matplotlib-3.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d840adcad7354be6f2ec28d0706528b0026e4c3934cc6566b84eac18633eab1b"},
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:220314c2d6b9ca11570d7cd4b841c9f3137546f188336003b9fb8def4dcb804d"},
|
{file = "matplotlib-3.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78ec3c3412cf277e6252764ee4acbdbec6920cc87ad65862272aaa0e24381eee"},
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2cc5d726d4d42865f909c5208a7841109d76584950dd0587b01a77cc279d4ab7"},
|
{file = "matplotlib-3.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9347cc6822f38db2b1d1ce992f375289670e595a2d1c15961aacbe0977407dfc"},
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-win32.whl", hash = "sha256:183bf3ac6a6023ee590aa4b677f391ceed65ec0d6b930901a8483c267bd12995"},
|
{file = "matplotlib-3.6.2-cp310-cp310-win32.whl", hash = "sha256:e0bbee6c2a5bf2a0017a9b5e397babb88f230e6f07c3cdff4a4c4bc75ed7c617"},
|
||||||
{file = "matplotlib-3.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:a68b91ac7e6bb26100a540a033f54c95fe06d9c0aa51312c2a52d07d1bde78f4"},
|
{file = "matplotlib-3.6.2-cp310-cp310-win_amd64.whl", hash = "sha256:8a0ae37576ed444fe853709bdceb2be4c7df6f7acae17b8378765bd28e61b3ae"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:4648f0d79a87bf50ee740058305c91091ee5e1fbb71a7d2f5fe6707bfe328d1c"},
|
{file = "matplotlib-3.6.2-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:5ecfc6559132116dedfc482d0ad9df8a89dc5909eebffd22f3deb684132d002f"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:9403764017d20ff570f7ce973a8b9637f08a6109118f4e0ce6c7493d8849a0d3"},
|
{file = "matplotlib-3.6.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:9f335e5625feb90e323d7e3868ec337f7b9ad88b5d633f876e3b778813021dab"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e4c8b5a243dd29d50289d694e931bd6cb6ae0b5bd654d12c647543d63862540c"},
|
{file = "matplotlib-3.6.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b2604c6450f9dd2c42e223b1f5dca9643a23cfecc9fde4a94bb38e0d2693b136"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1effccef0cea2d4da9feeed22079adf6786f92c800a7d0d2ef2104318a1c66c"},
|
{file = "matplotlib-3.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5afe0a7ea0e3a7a257907060bee6724a6002b7eec55d0db16fd32409795f3e1"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dc25473319afabe49150267e54648ac559c33b0fc2a80c8caecfbbc2948a820"},
|
{file = "matplotlib-3.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca0e7a658fbafcddcaefaa07ba8dae9384be2343468a8e011061791588d839fa"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47cb088bbce82ae9fc2edf3c25e56a5c6142ce2553fea2b781679f960a70c207"},
|
{file = "matplotlib-3.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32d29c8c26362169c80c5718ce367e8c64f4dd068a424e7110df1dd2ed7bd428"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-win32.whl", hash = "sha256:4d3b0e0a4611bd22065bbf47e9b2f689ac9e575bcb850a9f0ae2bbed75cab956"},
|
{file = "matplotlib-3.6.2-cp311-cp311-win32.whl", hash = "sha256:5024b8ed83d7f8809982d095d8ab0b179bebc07616a9713f86d30cf4944acb73"},
|
||||||
{file = "matplotlib-3.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:e3c116e779fbbf421a9e4d3060db259a9bb486d98f4e3c5a0877c599bd173582"},
|
{file = "matplotlib-3.6.2-cp311-cp311-win_amd64.whl", hash = "sha256:52c2bdd7cd0bf9d5ccdf9c1816568fd4ccd51a4d82419cc5480f548981b47dd0"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-macosx_10_12_universal2.whl", hash = "sha256:565f514dec81a41cbed10eb6011501879695087fc2787fb89423a466508abbbd"},
|
{file = "matplotlib-3.6.2-cp38-cp38-macosx_10_12_universal2.whl", hash = "sha256:8a8dbe2cb7f33ff54b16bb5c500673502a35f18ac1ed48625e997d40c922f9cc"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:05e86446562063d6186ff6d700118c0dbd5dccc403a6187351ee526c48878f10"},
|
{file = "matplotlib-3.6.2-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:380d48c15ec41102a2b70858ab1dedfa33eb77b2c0982cb65a200ae67a48e9cb"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8245e85fd793f58edf29b8a9e3be47e8ecf76ea1a1e8240545f2746181ca5787"},
|
{file = "matplotlib-3.6.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0844523dfaaff566e39dbfa74e6f6dc42e92f7a365ce80929c5030b84caa563a"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1e2c75d5d1ff6b7ef9870360bfa23bea076b8dc0945a60d19453d7619ed9ea8f"},
|
{file = "matplotlib-3.6.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:7f716b6af94dc1b6b97c46401774472f0867e44595990fe80a8ba390f7a0a028"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c9756a8e69f6e1f76d47eb42132175b6814da1fbeae0545304c6d0fc2aae252a"},
|
{file = "matplotlib-3.6.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74153008bd24366cf099d1f1e83808d179d618c4e32edb0d489d526523a94d9f"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f5788168da2661b42f7468063b725cc73fdbeeb80f2704cb2d8c415e9a57c50"},
|
{file = "matplotlib-3.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f41e57ad63d336fe50d3a67bb8eaa26c09f6dda6a59f76777a99b8ccd8e26aec"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-win32.whl", hash = "sha256:0bab7564aafd5902128d54b68dca04f5755413fb6b502100bb0235a545882c48"},
|
{file = "matplotlib-3.6.2-cp38-cp38-win32.whl", hash = "sha256:d0e9ac04065a814d4cf2c6791a2ad563f739ae3ae830d716d54245c2b96fead6"},
|
||||||
{file = "matplotlib-3.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3c53486278a0629fd892783271dc994b962fba8dfe207445d039e14f1928ea46"},
|
{file = "matplotlib-3.6.2-cp38-cp38-win_amd64.whl", hash = "sha256:8a9d899953c722b9afd7e88dbefd8fb276c686c3116a43c577cfabf636180558"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:27337bcb38d5db7430c14f350924542d75416ec1546d5d9d9f39b362b71db3fb"},
|
{file = "matplotlib-3.6.2-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:f04f97797df35e442ed09f529ad1235d1f1c0f30878e2fe09a2676b71a8801e0"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:fad858519bd6d52dbfeebdbe04d00dd8e932ed436f1c535e61bcc970a96c11e4"},
|
{file = "matplotlib-3.6.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3964934731fd7a289a91d315919cf757f293969a4244941ab10513d2351b4e83"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4a3d903588b519b38ed085d0ae762a1dcd4b70164617292175cfd91b90d6c415"},
|
{file = "matplotlib-3.6.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:168093410b99f647ba61361b208f7b0d64dde1172b5b1796d765cd243cadb501"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87bdbd37d0a41e025879863fe9b17bab15c0421313bc33e77e5e1aa54215c9c5"},
|
{file = "matplotlib-3.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e16dcaecffd55b955aa5e2b8a804379789c15987e8ebd2f32f01398a81e975b"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e632f66218811d4cf8b7a2a649e25ec15406c3c498f72d19e2bcf8377f38445d"},
|
{file = "matplotlib-3.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83dc89c5fd728fdb03b76f122f43b4dcee8c61f1489e232d9ad0f58020523e1c"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ddd58324dc9a77e2e56d7b7aea7dbd0575b6f7cd1333c3ca9d388ac70978344"},
|
{file = "matplotlib-3.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:795ad83940732b45d39b82571f87af0081c120feff2b12e748d96bb191169e33"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-win32.whl", hash = "sha256:12ab21d0cad122f5b23688d453a0280676e7c42f634f0dbd093d15d42d142b1f"},
|
{file = "matplotlib-3.6.2-cp39-cp39-win32.whl", hash = "sha256:19d61ee6414c44a04addbe33005ab1f87539d9f395e25afcbe9a3c50ce77c65c"},
|
||||||
{file = "matplotlib-3.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:563896ba269324872ace436a57775dcc8322678a9496b28a8c25cdafa5ec2b92"},
|
{file = "matplotlib-3.6.2-cp39-cp39-win_amd64.whl", hash = "sha256:5ba73aa3aca35d2981e0b31230d58abb7b5d7ca104e543ae49709208d8ce706a"},
|
||||||
{file = "matplotlib-3.6.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:52935b7d4ccbf0dbc9cf454dbb10ca99c11cbe8da9467596b96e5e21fd4dfc5c"},
|
{file = "matplotlib-3.6.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1836f366272b1557a613f8265db220eb8dd883202bbbabe01bad5a4eadfd0c95"},
|
||||||
{file = "matplotlib-3.6.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87027ff7b2edeb14476900261ef04d4beae949e1dfa0a3eb3ad6a6efbf9d0e1d"},
|
{file = "matplotlib-3.6.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0eda9d1b43f265da91fb9ae10d6922b5a986e2234470a524e6b18f14095b20d2"},
|
||||||
{file = "matplotlib-3.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4de03085afb3b80fab341afaf8e60dfe06ce439b6dfed55d657cf34a7bc3c40"},
|
{file = "matplotlib-3.6.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec9be0f4826cdb3a3a517509dcc5f87f370251b76362051ab59e42b6b765f8c4"},
|
||||||
{file = "matplotlib-3.6.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b53387d4e59432ff221540a4ffb5ee9669c69417805e4faf0148a00d701c61f9"},
|
{file = "matplotlib-3.6.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3cef89888a466228fc4e4b2954e740ce8e9afde7c4315fdd18caa1b8de58ca17"},
|
||||||
{file = "matplotlib-3.6.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:02561141c434154f7bae8e5449909d152367cb40aa57bfb2a27f2748b9c5f95f"},
|
{file = "matplotlib-3.6.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:54fa9fe27f5466b86126ff38123261188bed568c1019e4716af01f97a12fe812"},
|
||||||
{file = "matplotlib-3.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0161ebf87518ecfe0980c942d5f0d5df0e080c1746ebaab2027a969967014b7"},
|
{file = "matplotlib-3.6.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e68be81cd8c22b029924b6d0ee814c337c0e706b8d88495a617319e5dd5441c3"},
|
||||||
{file = "matplotlib-3.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2469f57e4c5cc0e85eddc7b30995ea9c404a78c0b1856da75d1a5887156ca350"},
|
{file = "matplotlib-3.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0ca2c60d3966dfd6608f5f8c49b8a0fcf76de6654f2eda55fc6ef038d5a6f27"},
|
||||||
{file = "matplotlib-3.6.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5f97141e05baf160c3ec125f06ceb2a44c9bb62f42fcb8ee1c05313c73e99432"},
|
{file = "matplotlib-3.6.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4426c74761790bff46e3d906c14c7aab727543293eed5a924300a952e1a3a3c1"},
|
||||||
{file = "matplotlib-3.6.1.tar.gz", hash = "sha256:e2d1b7225666f7e1bcc94c0bc9c587a82e3e8691da4757e357e5c2515222ee37"},
|
{file = "matplotlib-3.6.2.tar.gz", hash = "sha256:b03fd10a1709d0101c054883b550f7c4c5e974f751e2680318759af005964990"},
|
||||||
]
|
]
|
||||||
msgpack = [
|
msgpack = [
|
||||||
{file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4ab251d229d10498e9a2f3b1e68ef64cb393394ec477e3370c457f9430ce9250"},
|
{file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4ab251d229d10498e9a2f3b1e68ef64cb393394ec477e3370c457f9430ce9250"},
|
||||||
@ -2457,46 +2457,24 @@ poyo = [
|
|||||||
{file = "poyo-0.5.0.tar.gz", hash = "sha256:e26956aa780c45f011ca9886f044590e2d8fd8b61db7b1c1cf4e0869f48ed4dd"},
|
{file = "poyo-0.5.0.tar.gz", hash = "sha256:e26956aa780c45f011ca9886f044590e2d8fd8b61db7b1c1cf4e0869f48ed4dd"},
|
||||||
]
|
]
|
||||||
prompt-toolkit = [
|
prompt-toolkit = [
|
||||||
{file = "prompt_toolkit-3.0.31-py3-none-any.whl", hash = "sha256:9696f386133df0fc8ca5af4895afe5d78f5fcfe5258111c2a79a1c3e41ffa96d"},
|
{file = "prompt_toolkit-3.0.32-py3-none-any.whl", hash = "sha256:24becda58d49ceac4dc26232eb179ef2b21f133fecda7eed6018d341766ed76e"},
|
||||||
{file = "prompt_toolkit-3.0.31.tar.gz", hash = "sha256:9ada952c9d1787f52ff6d5f3484d0b4df8952787c087edf6a1f7c2cb1ea88148"},
|
{file = "prompt_toolkit-3.0.32.tar.gz", hash = "sha256:e7f2129cba4ff3b3656bbdda0e74ee00d2f874a8bcdb9dd16f5fec7b3e173cae"},
|
||||||
]
|
]
|
||||||
psutil = [
|
psutil = [
|
||||||
{file = "psutil-5.9.3-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b4a247cd3feaae39bb6085fcebf35b3b8ecd9b022db796d89c8f05067ca28e71"},
|
{file = "psutil-5.9.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c1ca331af862803a42677c120aff8a814a804e09832f166f226bfd22b56feee8"},
|
||||||
{file = "psutil-5.9.3-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:5fa88e3d5d0b480602553d362c4b33a63e0c40bfea7312a7bf78799e01e0810b"},
|
{file = "psutil-5.9.4-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:68908971daf802203f3d37e78d3f8831b6d1014864d7a85937941bb35f09aefe"},
|
||||||
{file = "psutil-5.9.3-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:767ef4fa33acda16703725c0473a91e1832d296c37c63896c7153ba81698f1ab"},
|
{file = "psutil-5.9.4-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:3ff89f9b835100a825b14c2808a106b6fdcc4b15483141482a12c725e7f78549"},
|
||||||
{file = "psutil-5.9.3-cp27-cp27m-win32.whl", hash = "sha256:9a4af6ed1094f867834f5f07acd1250605a0874169a5fcadbcec864aec2496a6"},
|
{file = "psutil-5.9.4-cp27-cp27m-win32.whl", hash = "sha256:852dd5d9f8a47169fe62fd4a971aa07859476c2ba22c2254d4a1baa4e10b95ad"},
|
||||||
{file = "psutil-5.9.3-cp27-cp27m-win_amd64.whl", hash = "sha256:fa5e32c7d9b60b2528108ade2929b115167fe98d59f89555574715054f50fa31"},
|
{file = "psutil-5.9.4-cp27-cp27m-win_amd64.whl", hash = "sha256:9120cd39dca5c5e1c54b59a41d205023d436799b1c8c4d3ff71af18535728e94"},
|
||||||
{file = "psutil-5.9.3-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:fe79b4ad4836e3da6c4650cb85a663b3a51aef22e1a829c384e18fae87e5e727"},
|
{file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6b92c532979bafc2df23ddc785ed116fced1f492ad90a6830cf24f4d1ea27d24"},
|
||||||
{file = "psutil-5.9.3-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:db8e62016add2235cc87fb7ea000ede9e4ca0aa1f221b40cef049d02d5d2593d"},
|
{file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:efeae04f9516907be44904cc7ce08defb6b665128992a56957abc9b61dca94b7"},
|
||||||
{file = "psutil-5.9.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:941a6c2c591da455d760121b44097781bc970be40e0e43081b9139da485ad5b7"},
|
{file = "psutil-5.9.4-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:54d5b184728298f2ca8567bf83c422b706200bcbbfafdc06718264f9393cfeb7"},
|
||||||
{file = "psutil-5.9.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:71b1206e7909792d16933a0d2c1c7f04ae196186c51ba8567abae1d041f06dcb"},
|
{file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16653106f3b59386ffe10e0bad3bb6299e169d5327d3f187614b1cb8f24cf2e1"},
|
||||||
{file = "psutil-5.9.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f57d63a2b5beaf797b87024d018772439f9d3103a395627b77d17a8d72009543"},
|
{file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54c0d3d8e0078b7666984e11b12b88af2db11d11249a8ac8920dd5ef68a66e08"},
|
||||||
{file = "psutil-5.9.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7507f6c7b0262d3e7b0eeda15045bf5881f4ada70473b87bc7b7c93b992a7d7"},
|
{file = "psutil-5.9.4-cp36-abi3-win32.whl", hash = "sha256:149555f59a69b33f056ba1c4eb22bb7bf24332ce631c44a319cec09f876aaeff"},
|
||||||
{file = "psutil-5.9.3-cp310-cp310-win32.whl", hash = "sha256:1b540599481c73408f6b392cdffef5b01e8ff7a2ac8caae0a91b8222e88e8f1e"},
|
{file = "psutil-5.9.4-cp36-abi3-win_amd64.whl", hash = "sha256:fd8522436a6ada7b4aad6638662966de0d61d241cb821239b2ae7013d41a43d4"},
|
||||||
{file = "psutil-5.9.3-cp310-cp310-win_amd64.whl", hash = "sha256:547ebb02031fdada635452250ff39942db8310b5c4a8102dfe9384ee5791e650"},
|
{file = "psutil-5.9.4-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:6001c809253a29599bc0dfd5179d9f8a5779f9dffea1da0f13c53ee568115e1e"},
|
||||||
{file = "psutil-5.9.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d8c3cc6bb76492133474e130a12351a325336c01c96a24aae731abf5a47fe088"},
|
{file = "psutil-5.9.4.tar.gz", hash = "sha256:3d7f9739eb435d4b1338944abe23f49584bde5395f27487d2ee25ad9a8774a62"},
|
||||||
{file = "psutil-5.9.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07d880053c6461c9b89cd5d4808f3b8336665fa3acdefd6777662c5ed73a851a"},
|
|
||||||
{file = "psutil-5.9.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e8b50241dd3c2ed498507f87a6602825073c07f3b7e9560c58411c14fe1e1c9"},
|
|
||||||
{file = "psutil-5.9.3-cp36-cp36m-win32.whl", hash = "sha256:828c9dc9478b34ab96be75c81942d8df0c2bb49edbb481f597314d92b6441d89"},
|
|
||||||
{file = "psutil-5.9.3-cp36-cp36m-win_amd64.whl", hash = "sha256:ed15edb14f52925869250b1375f0ff58ca5c4fa8adefe4883cfb0737d32f5c02"},
|
|
||||||
{file = "psutil-5.9.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d266cd05bd4a95ca1c2b9b5aac50d249cf7c94a542f47e0b22928ddf8b80d1ef"},
|
|
||||||
{file = "psutil-5.9.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e4939ff75149b67aef77980409f156f0082fa36accc475d45c705bb00c6c16a"},
|
|
||||||
{file = "psutil-5.9.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68fa227c32240c52982cb931801c5707a7f96dd8927f9102d6c7771ea1ff5698"},
|
|
||||||
{file = "psutil-5.9.3-cp37-cp37m-win32.whl", hash = "sha256:beb57d8a1ca0ae0eb3d08ccaceb77e1a6d93606f0e1754f0d60a6ebd5c288837"},
|
|
||||||
{file = "psutil-5.9.3-cp37-cp37m-win_amd64.whl", hash = "sha256:12500d761ac091f2426567f19f95fd3f15a197d96befb44a5c1e3cbe6db5752c"},
|
|
||||||
{file = "psutil-5.9.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba38cf9984d5462b506e239cf4bc24e84ead4b1d71a3be35e66dad0d13ded7c1"},
|
|
||||||
{file = "psutil-5.9.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:46907fa62acaac364fff0b8a9da7b360265d217e4fdeaca0a2397a6883dffba2"},
|
|
||||||
{file = "psutil-5.9.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a04a1836894c8279e5e0a0127c0db8e198ca133d28be8a2a72b4db16f6cf99c1"},
|
|
||||||
{file = "psutil-5.9.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a4e07611997acf178ad13b842377e3d8e9d0a5bac43ece9bfc22a96735d9a4f"},
|
|
||||||
{file = "psutil-5.9.3-cp38-cp38-win32.whl", hash = "sha256:6ced1ad823ecfa7d3ce26fe8aa4996e2e53fb49b7fed8ad81c80958501ec0619"},
|
|
||||||
{file = "psutil-5.9.3-cp38-cp38-win_amd64.whl", hash = "sha256:35feafe232d1aaf35d51bd42790cbccb882456f9f18cdc411532902370d660df"},
|
|
||||||
{file = "psutil-5.9.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:538fcf6ae856b5e12d13d7da25ad67f02113c96f5989e6ad44422cb5994ca7fc"},
|
|
||||||
{file = "psutil-5.9.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a3d81165b8474087bb90ec4f333a638ccfd1d69d34a9b4a1a7eaac06648f9fbe"},
|
|
||||||
{file = "psutil-5.9.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a7826e68b0cf4ce2c1ee385d64eab7d70e3133171376cac53d7c1790357ec8f"},
|
|
||||||
{file = "psutil-5.9.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ec296f565191f89c48f33d9544d8d82b0d2af7dd7d2d4e6319f27a818f8d1cc"},
|
|
||||||
{file = "psutil-5.9.3-cp39-cp39-win32.whl", hash = "sha256:9ec95df684583b5596c82bb380c53a603bb051cf019d5c849c47e117c5064395"},
|
|
||||||
{file = "psutil-5.9.3-cp39-cp39-win_amd64.whl", hash = "sha256:4bd4854f0c83aa84a5a40d3b5d0eb1f3c128f4146371e03baed4589fe4f3c931"},
|
|
||||||
{file = "psutil-5.9.3.tar.gz", hash = "sha256:7ccfcdfea4fc4b0a02ca2c31de7fcd186beb9cff8207800e14ab66f79c773af6"},
|
|
||||||
]
|
]
|
||||||
pyasn1 = [
|
pyasn1 = [
|
||||||
{file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"},
|
{file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"},
|
||||||
@ -2928,24 +2906,24 @@ uvloop = [
|
|||||||
{file = "uvloop-0.17.0.tar.gz", hash = "sha256:0ddf6baf9cf11a1a22c71487f39f15b2cf78eb5bde7e5b45fbb99e8a9d91b9e1"},
|
{file = "uvloop-0.17.0.tar.gz", hash = "sha256:0ddf6baf9cf11a1a22c71487f39f15b2cf78eb5bde7e5b45fbb99e8a9d91b9e1"},
|
||||||
]
|
]
|
||||||
watchfiles = [
|
watchfiles = [
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-macosx_10_7_x86_64.whl", hash = "sha256:76a4c4a8e25a2c9a4f7fa3d373bbaf5558c17b97b4cf8411d33de368fe6b68a9"},
|
{file = "watchfiles-0.18.1-cp37-abi3-macosx_10_7_x86_64.whl", hash = "sha256:9891d3c94272108bcecf5597a592e61105279def1313521e637f2d5acbe08bc9"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:d5d799614d4c56d29c5ba56f4f619f967210dc10a0d6965b62d326b9e2f72c9e"},
|
{file = "watchfiles-0.18.1-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:7102342d60207fa635e24c02a51c6628bf0472e5fef067f78a612386840407fc"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:39b932b044fef6c43e813e0bef908e0edf185bf7b5d8d53246651cb7ac9efe79"},
|
{file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:00ea0081eca5e8e695cffbc3a726bb90da77f4e3f78ce29b86f0d95db4e70ef7"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1686bc4ac40ffde7256b6543b0f9a2cc8b531ae45243786f1d3f1dda2fe39e24"},
|
{file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8e6db99e49cd7125d8a4c9d33c0735eea7b75a942c6ad68b75be3e91c242fb"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:320bcde0adaa972403ed3b70f784409437325a1a4df2de54ba0672203d8847e5"},
|
{file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc7c726855f04f22ac79131b51bf0c9f728cb2117419ed830a43828b2c4a5fcb"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ba6d8c2f957cae3e888bc250bc60ed09fe869b3f55f09d020ed3fecbefb6a4c"},
|
{file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbaff354d12235002e62d9d3fa8bcf326a8490c1179aa5c17195a300a9e5952f"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fd4215badad1e3d1ad5fb79f21432dd5157e2e7b0765d27a19dc2a28580c6979"},
|
{file = "watchfiles-0.18.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:888db233e06907c555eccd10da99b9cd5ed45deca47e41766954292dc9f7b198"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cfdbfc4b6797c28dd1a8524581fed00ca333971b4111af8cd42fb7a92dcdc227"},
|
{file = "watchfiles-0.18.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:dde79930d1b28f15994ad6613aa2865fc7a403d2bb14585a8714a53233b15717"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-win32.whl", hash = "sha256:8eddc2d19bf6f49aee224072ec0f4f3258125a49f11b5dcff1448e68718a745e"},
|
{file = "watchfiles-0.18.1-cp37-abi3-win32.whl", hash = "sha256:e2b2bdd26bf8d6ed90763e6020b475f7634f919dbd1730ea1b6f8cb88e21de5d"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-win_amd64.whl", hash = "sha256:be87c9b1fe2b02105a9ac6d9df7500a110652bbd97cf46b13964eeaef9a6c89c"},
|
{file = "watchfiles-0.18.1-cp37-abi3-win_amd64.whl", hash = "sha256:c541e0f2c3e95e83e4f84561c893284ba984e9d0025352057396d96dceb09f44"},
|
||||||
{file = "watchfiles-0.18.0-cp37-abi3-win_arm64.whl", hash = "sha256:184799818c4fa7dbc6a1e4ca20bcbc6b85e4e0db07ce4554ea2f29b75ccd0cdc"},
|
{file = "watchfiles-0.18.1-cp37-abi3-win_arm64.whl", hash = "sha256:9a26272ef3e930330fc0c2c148cc29706cc2c40d25760c7ccea8d768a8feef8b"},
|
||||||
{file = "watchfiles-0.18.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:7f39fcdac5d5b9815a0c2ab9005d39854296b11fa15386a9a69c09cbbc5dde2c"},
|
{file = "watchfiles-0.18.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:9fb12a5e2b42e0b53769455ff93546e6bc9ab14007fbd436978d827a95ca5bd1"},
|
||||||
{file = "watchfiles-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78b1e7c29b92dfc8fc32f15949019232b493767d236c2bff31848df13fdb9e8a"},
|
{file = "watchfiles-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:548d6b42303d40264118178053c78820533b683b20dfbb254a8706ca48467357"},
|
||||||
{file = "watchfiles-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27d64a6ed5e0aebef97c70fa3899a6958d4f7f049effc659e7dc3e81f3170a7b"},
|
{file = "watchfiles-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e0d8fdfebc50ac7569358f5c75f2b98bb473befccf9498cf23b3e39993bb45a"},
|
||||||
{file = "watchfiles-0.18.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:4bbc8bfa0f3871b1867af42837a5635a9c1cbb2b68d039754b4750642c34aaee"},
|
{file = "watchfiles-0.18.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0f9a22fff1745e2bb930b1e971c4c5b67ea3b38ae17a6adb9019371f80961219"},
|
||||||
{file = "watchfiles-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d3a12e4de5446fb6e286b720d0cb3a080811caf0ef43e556c2db5fe10ef0342"},
|
{file = "watchfiles-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b02e7fa03cd4059dd61ff0600080a5a9e7a893a85cb8e5178943533656eec65e"},
|
||||||
{file = "watchfiles-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e611a90482ac14ef3ec234c1604ed921d1b0c68970eba82f1cf0d59a3e4eb76"},
|
{file = "watchfiles-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a868ce2c7565137f852bd4c863a164dc81306cae7378dbdbe4e2aca51ddb8857"},
|
||||||
{file = "watchfiles-0.18.0.tar.gz", hash = "sha256:bbe10d134eef1666451382015e48f092c941a6d4562a98ffa1a288f79a897c46"},
|
{file = "watchfiles-0.18.1.tar.gz", hash = "sha256:4ec0134a5e31797eb3c6c624dbe9354f2a8ee9c720e0b46fc5b7bab472b7c6d4"},
|
||||||
]
|
]
|
||||||
wcwidth = [
|
wcwidth = [
|
||||||
{file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"},
|
{file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"},
|
||||||
|
@ -1,39 +1,46 @@
|
|||||||
--index-url https://pypi.tuna.tsinghua.edu.cn/simple
|
--index-url https://pypi.tuna.tsinghua.edu.cn/simple
|
||||||
|
|
||||||
aiosqlite==0.17.0; python_version >= "3.7" and python_version < "4.0"
|
aiosqlite==0.17.0; python_version >= "3.7" and python_version < "4.0"
|
||||||
amis-python==1.0.5; python_version >= "3.7" and python_version < "4.0"
|
amis-python==1.0.6; python_version >= "3.7" and python_version < "4.0"
|
||||||
anyio==3.6.2; python_full_version >= "3.6.2" and python_version >= "3.8" and python_version < "4.0"
|
anyio==3.6.2; python_full_version >= "3.6.2" and python_version >= "3.8" and python_version < "4.0"
|
||||||
apscheduler==3.9.1; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.8"
|
apscheduler==3.9.1.post1; python_version >= "3.8" and python_version < "4.0" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.8"
|
||||||
backports.zoneinfo==0.2.1; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "3.9" and (python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8") or python_full_version >= "3.5.0" and python_version < "3.9" and python_version >= "3.8" and (python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8")
|
arrow==1.2.3; python_full_version >= "3.7.3" and python_full_version < "4.0.0" and python_version >= "3.6"
|
||||||
|
backports.zoneinfo==0.2.1; python_version >= "3.8" and python_version < "3.9" and python_full_version < "3.0.0" and (python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8") or python_full_version >= "3.5.0" and python_version < "3.9" and python_version >= "3.8" and (python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8")
|
||||||
beautifulsoup4==4.11.1; python_full_version >= "3.6.0"
|
beautifulsoup4==4.11.1; python_full_version >= "3.6.0"
|
||||||
certifi==2022.9.24; python_version >= "3.7"
|
binaryornot==0.4.4; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
click==8.1.3; python_version >= "3.8" and python_version < "4.0"
|
certifi==2022.9.24; python_full_version >= "3.7.3" and python_full_version < "4.0.0" and python_version >= "3.7" and python_version < "4"
|
||||||
colorama==0.4.6; python_version >= "3.8" and python_full_version < "3.0.0" and platform_system == "Windows" and python_version < "4.0" and sys_platform == "win32" or python_full_version >= "3.7.0" and platform_system == "Windows" and python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32"
|
chardet==5.0.0; python_full_version >= "3.7.3" and python_full_version < "4.0.0" and python_version >= "3.6"
|
||||||
|
charset-normalizer==2.1.1; python_version >= "3.7" and python_version < "4" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
|
click==8.1.3; python_full_version >= "3.7.3" and python_full_version < "4.0.0" and python_version >= "3.8" and python_version < "4.0"
|
||||||
|
colorama==0.4.6; python_full_version >= "3.7.3" and platform_system == "Windows" and python_full_version < "4.0.0" and (python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" and sys_platform == "win32" or python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32" and python_full_version >= "3.7.0") and python_version >= "3.8" and python_version < "4.0"
|
||||||
contourpy==1.0.6; python_version >= "3.8"
|
contourpy==1.0.6; python_version >= "3.8"
|
||||||
|
cookiecutter==1.7.3; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
cycler==0.11.0; python_version >= "3.8"
|
cycler==0.11.0; python_version >= "3.8"
|
||||||
ecdsa==0.18.0; python_version >= "2.6" and python_full_version < "3.0.0" or python_full_version >= "3.3.0"
|
ecdsa==0.18.0; python_version >= "2.6" and python_full_version < "3.0.0" or python_full_version >= "3.3.0"
|
||||||
expandvars==0.9.0; python_version >= "3.4"
|
expandvars==0.9.0; python_version >= "3.4"
|
||||||
fastapi==0.79.1; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.6.1"
|
fastapi==0.79.1; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
fonttools==4.38.0; python_version >= "3.8"
|
fonttools==4.38.0; python_version >= "3.8"
|
||||||
gitdb==4.0.9; python_version >= "3.7"
|
gitdb==4.0.9; python_version >= "3.7"
|
||||||
gitpython==3.1.29; python_version >= "3.7"
|
gitpython==3.1.29; python_version >= "3.7"
|
||||||
greenlet==1.1.3; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7"
|
greenlet==1.1.3; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7"
|
||||||
h11==0.12.0; python_version >= "3.8" and python_version < "4.0"
|
h11==0.12.0; python_version >= "3.8" and python_version < "4.0"
|
||||||
httpcore==0.15.0; python_version >= "3.7"
|
httpcore==0.15.0; python_full_version >= "3.7.3" and python_full_version < "4.0.0" and python_version >= "3.7"
|
||||||
httptools==0.5.0; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.5.0"
|
httptools==0.5.0; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.5.0"
|
||||||
httpx==0.23.0; python_version >= "3.7"
|
httpx==0.23.0; python_version >= "3.7"
|
||||||
idna==3.4
|
idna==3.4
|
||||||
iso8601==1.1.0; python_full_version >= "3.6.2" and python_version < "4.0" and python_version >= "3.7"
|
iso8601==1.1.0; python_full_version >= "3.6.2" and python_version < "4.0" and python_version >= "3.7"
|
||||||
jieba==0.42.1
|
jieba==0.42.1
|
||||||
jinja2==3.1.2; python_version >= "3.7" and python_version < "4.0"
|
jinja2-time==0.2.0; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
|
jinja2==3.1.2; python_version >= "3.7" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
joblib==1.2.0; python_version >= "3.8"
|
joblib==1.2.0; python_version >= "3.8"
|
||||||
kiwisolver==1.4.4; python_version >= "3.8"
|
kiwisolver==1.4.4; python_version >= "3.8"
|
||||||
loguru==0.6.0; python_version >= "3.8" and python_version < "4.0"
|
loguru==0.6.0; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
lxml==4.9.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
|
lxml==4.9.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
|
||||||
markupsafe==2.1.1; python_version >= "3.7" and python_version < "4.0"
|
markupsafe==2.1.1; python_version >= "3.7" and python_version < "4.0"
|
||||||
matplotlib==3.6.1; python_version >= "3.8"
|
matplotlib==3.6.2; python_version >= "3.8"
|
||||||
msgpack==1.0.4; python_version >= "3.8" and python_version < "4.0"
|
msgpack==1.0.4; python_version >= "3.8" and python_version < "4.0"
|
||||||
multidict==6.0.2; python_version >= "3.8" and python_version < "4.0"
|
multidict==6.0.2; python_version >= "3.8" and python_version < "4.0"
|
||||||
|
nb-cli==0.6.7; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
nonebot-adapter-onebot==2.1.5; python_version >= "3.8" and python_version < "4.0"
|
nonebot-adapter-onebot==2.1.5; python_version >= "3.8" and python_version < "4.0"
|
||||||
nonebot-plugin-apscheduler==0.2.0; python_version >= "3.8" and python_version < "4.0"
|
nonebot-plugin-apscheduler==0.2.0; python_version >= "3.8" and python_version < "4.0"
|
||||||
nonebot2==2.0.0rc1; python_version >= "3.8" and python_version < "4.0"
|
nonebot2==2.0.0rc1; python_version >= "3.8" and python_version < "4.0"
|
||||||
@ -41,21 +48,26 @@ numpy==1.23.4; python_version >= "3.8"
|
|||||||
packaging==21.3; python_version >= "3.8"
|
packaging==21.3; python_version >= "3.8"
|
||||||
pillow==9.3.0; python_version >= "3.7"
|
pillow==9.3.0; python_version >= "3.7"
|
||||||
playwright==1.27.1; python_version >= "3.7"
|
playwright==1.27.1; python_version >= "3.7"
|
||||||
psutil==5.9.3; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
poyo==0.5.0; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
|
prompt-toolkit==3.0.32; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
|
psutil==5.9.4; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
||||||
pyasn1==0.4.8; python_version >= "3.6" and python_version < "4"
|
pyasn1==0.4.8; python_version >= "3.6" and python_version < "4"
|
||||||
pydantic==1.9.2; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.6.1"
|
pydantic==1.9.2; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
pyee==8.1.0; python_version >= "3.7"
|
pyee==8.1.0; python_version >= "3.7"
|
||||||
pygtrie==2.5.0; python_version >= "3.8" and python_version < "4.0"
|
pyfiglet==0.8.post1; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
|
pygtrie==2.5.0; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
pyparsing==3.0.9; python_full_version >= "3.6.8" and python_version >= "3.8"
|
pyparsing==3.0.9; python_full_version >= "3.6.8" and python_version >= "3.8"
|
||||||
pypika-tortoise==0.1.6; python_version >= "3.7" and python_version < "4.0"
|
pypika-tortoise==0.1.6; python_version >= "3.7" and python_version < "4.0"
|
||||||
pypinyin==0.47.1; (python_version >= "2.6" and python_full_version < "3.0.0") or (python_full_version >= "3.3.0" and python_version < "4")
|
pypinyin==0.47.1; (python_version >= "2.6" and python_full_version < "3.0.0") or (python_full_version >= "3.3.0" and python_version < "4")
|
||||||
python-dateutil==2.8.2; python_version >= "3.8" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" and python_version >= "3.8"
|
python-dateutil==2.8.2; python_full_version >= "3.7.3" and python_version >= "3.8" and python_full_version < "4.0.0"
|
||||||
python-dotenv==0.21.0
|
python-dotenv==0.21.0
|
||||||
python-jose==3.3.0
|
python-jose==3.3.0
|
||||||
|
python-slugify==6.1.2; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
pytz-deprecation-shim==0.1.0.post0; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8"
|
pytz-deprecation-shim==0.1.0.post0; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8"
|
||||||
pytz==2022.6; python_version >= "3.7" and python_version < "4.0" and (python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.8")
|
pytz==2022.6; python_version >= "3.7" and python_version < "4.0" and (python_version >= "3.8" and python_version < "4.0" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.8")
|
||||||
pyyaml==6.0; python_version >= "3.8" and python_version < "4.0"
|
pyyaml==6.0; python_version >= "3.8" and python_version < "4.0"
|
||||||
rfc3986==1.5.0; python_version >= "3.7"
|
requests==2.28.1; python_version >= "3.7" and python_version < "4" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
|
rfc3986==1.5.0; python_full_version >= "3.7.3" and python_full_version < "4.0.0" and python_version >= "3.7"
|
||||||
rsa==4.9; python_version >= "3.6" and python_version < "4"
|
rsa==4.9; python_version >= "3.6" and python_version < "4"
|
||||||
ruamel.yaml.clib==0.2.7; platform_python_implementation == "CPython" and python_version < "3.11" and python_version >= "3.5"
|
ruamel.yaml.clib==0.2.7; platform_python_implementation == "CPython" and python_version < "3.11" and python_version >= "3.5"
|
||||||
ruamel.yaml==0.17.21; python_version >= "3"
|
ruamel.yaml==0.17.21; python_version >= "3"
|
||||||
@ -63,23 +75,26 @@ scikit-learn==1.1.3; python_version >= "3.8"
|
|||||||
scipy==1.9.3; python_version >= "3.8"
|
scipy==1.9.3; python_version >= "3.8"
|
||||||
setuptools-scm==7.0.5; python_version >= "3.8"
|
setuptools-scm==7.0.5; python_version >= "3.8"
|
||||||
shapely==1.8.5.post1; python_version >= "3.6"
|
shapely==1.8.5.post1; python_version >= "3.6"
|
||||||
six==1.16.0; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.5.0" and python_version >= "3.8" and python_version < "4"
|
six==1.16.0; python_full_version >= "3.7.3" and python_version >= "3.8" and python_version < "4" and python_full_version < "4.0.0"
|
||||||
smmap==5.0.0; python_version >= "3.7"
|
smmap==5.0.0; python_version >= "3.7"
|
||||||
sniffio==1.3.0; python_full_version >= "3.6.2" and python_version >= "3.8" and python_version < "4.0"
|
sniffio==1.3.0; python_full_version >= "3.7.3" and python_full_version < "4.0.0" and python_version >= "3.8" and python_version < "4.0"
|
||||||
soupsieve==2.3.2.post1; python_version >= "3.6" and python_full_version >= "3.6.0"
|
soupsieve==2.3.2.post1; python_version >= "3.6" and python_full_version >= "3.6.0"
|
||||||
starlette==0.19.1; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.6.1"
|
starlette==0.19.1; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.6.1"
|
||||||
|
text-unidecode==1.3; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
threadpoolctl==3.1.0; python_version >= "3.8"
|
threadpoolctl==3.1.0; python_version >= "3.8"
|
||||||
tomli==2.0.1; python_version >= "3.8"
|
tomli==2.0.1; python_version >= "3.8"
|
||||||
tomlkit==0.10.2; python_version >= "3.8" and python_version < "4.0"
|
tomlkit==0.10.2; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
tortoise-orm==0.19.2; python_version >= "3.7" and python_version < "4.0"
|
tortoise-orm==0.19.2; python_version >= "3.7" and python_version < "4.0"
|
||||||
tqdm==4.64.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
tqdm==4.64.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
||||||
typing-extensions==4.4.0; python_version >= "3.8" and python_version <= "3.8" and python_full_version >= "3.6.1"
|
typing-extensions==4.4.0; python_version >= "3.8" and python_version <= "3.8" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
tzdata==2022.6; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" and platform_system == "Windows" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8" and platform_system == "Windows"
|
tzdata==2022.6; python_version >= "3.8" and python_version < "4.0" and python_full_version < "3.0.0" and platform_system == "Windows" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.8" and platform_system == "Windows"
|
||||||
tzlocal==4.2; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.8"
|
tzlocal==4.2; python_version >= "3.8" and python_version < "4.0" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.8"
|
||||||
ujson==5.5.0; python_version >= "3.7"
|
ujson==5.5.0; python_version >= "3.7"
|
||||||
uvicorn==0.18.3; python_version >= "3.8" and python_version < "4.0"
|
urllib3==1.26.12; python_full_version >= "3.7.3" and python_version < "4" and python_version >= "3.7" and python_full_version < "4.0.0"
|
||||||
|
uvicorn==0.18.3; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
uvloop==0.17.0; sys_platform != "win32" and sys_platform != "cygwin" and platform_python_implementation != "PyPy" and python_version >= "3.8" and python_version < "4.0"
|
uvloop==0.17.0; sys_platform != "win32" and sys_platform != "cygwin" and platform_python_implementation != "PyPy" and python_version >= "3.8" and python_version < "4.0"
|
||||||
watchfiles==0.18.0; python_version >= "3.8" and python_version < "4.0"
|
watchfiles==0.18.1; python_version >= "3.8" and python_version < "4.0"
|
||||||
|
wcwidth==0.2.5; python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
websockets==10.4; python_version >= "3.8" and python_version < "4.0"
|
websockets==10.4; python_version >= "3.8" and python_version < "4.0"
|
||||||
win32-setctime==1.1.0; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32"
|
win32-setctime==1.1.0; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32"
|
||||||
yarl==1.8.1; python_version >= "3.8" and python_version < "4.0"
|
yarl==1.8.1; python_version >= "3.8" and python_version < "4.0" and python_full_version >= "3.7.3" and python_full_version < "4.0.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user