nonebot-plugin-osubot 6.22.1__py3-none-any.whl → 6.26.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nonebot_plugin_osubot/api.py +13 -7
- nonebot_plugin_osubot/config.py +10 -10
- nonebot_plugin_osubot/draw/bmap.py +20 -22
- nonebot_plugin_osubot/draw/bp.py +3 -13
- nonebot_plugin_osubot/draw/catch_preview.py +2 -16
- nonebot_plugin_osubot/draw/echarts.py +8 -1
- nonebot_plugin_osubot/draw/info.py +59 -207
- nonebot_plugin_osubot/draw/info_templates/index.html +507 -0
- nonebot_plugin_osubot/draw/info_templates/output.css +2 -0
- nonebot_plugin_osubot/draw/map.py +9 -11
- nonebot_plugin_osubot/draw/osu_preview.py +50 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/css/style.css +258 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/README.md +109 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js +3 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js.map +1 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js +3 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js.map +1 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/beatmap.js +211 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/hitobject.js +29 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/point.js +55 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/scroll.js +45 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/timingpoint.js +35 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/LegacyRandom.js +81 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/PalpableCatchHitObject.js +53 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/bananashower.js +33 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/catch.js +211 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/fruit.js +21 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/juicestream.js +176 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/hitnote.js +21 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/holdnote.js +37 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/mania.js +164 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/preview.js +61 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/bezier2.js +33 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/catmullcurve.js +34 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/centripetalcatmullrom.js +30 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/circumstancedcircle.js +47 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curve.js +25 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curvetype.js +17 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/equaldistancemulticurve.js +70 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/linearbezier.js +40 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/hitcircle.js +85 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/slider.js +120 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/spinner.js +56 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/standard.js +170 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/donkat.js +40 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/drumroll.js +34 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/shaker.js +58 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/taiko.js +120 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/util.js +61 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/pic.html +110 -0
- nonebot_plugin_osubot/draw/rating.py +6 -3
- nonebot_plugin_osubot/draw/score.py +23 -81
- nonebot_plugin_osubot/draw/taiko_preview.py +14 -13
- nonebot_plugin_osubot/draw/templates/bpa_chart.html +1 -1
- nonebot_plugin_osubot/draw/utils.py +162 -16
- nonebot_plugin_osubot/file.py +184 -31
- nonebot_plugin_osubot/mania/__init__.py +9 -10
- nonebot_plugin_osubot/matcher/__init__.py +2 -0
- nonebot_plugin_osubot/matcher/bp_analyze.py +14 -9
- nonebot_plugin_osubot/matcher/guess.py +250 -294
- nonebot_plugin_osubot/matcher/map_convert.py +21 -13
- nonebot_plugin_osubot/matcher/medal.py +1 -1
- nonebot_plugin_osubot/matcher/osudl.py +5 -4
- nonebot_plugin_osubot/matcher/pr.py +0 -4
- nonebot_plugin_osubot/matcher/preview.py +10 -3
- nonebot_plugin_osubot/matcher/recommend.py +7 -12
- nonebot_plugin_osubot/mods.py +62 -61
- nonebot_plugin_osubot/network/first_response.py +1 -1
- nonebot_plugin_osubot/osufile/mods/AP.png +0 -0
- nonebot_plugin_osubot/osufile/mods/CL.png +0 -0
- nonebot_plugin_osubot/osufile/mods/DT.png +0 -0
- nonebot_plugin_osubot/osufile/mods/EZ.png +0 -0
- nonebot_plugin_osubot/osufile/mods/FI.png +0 -0
- nonebot_plugin_osubot/osufile/mods/FL.png +0 -0
- nonebot_plugin_osubot/osufile/mods/HD.png +0 -0
- nonebot_plugin_osubot/osufile/mods/HR.png +0 -0
- nonebot_plugin_osubot/osufile/mods/HT.png +0 -0
- nonebot_plugin_osubot/osufile/mods/MR.png +0 -0
- nonebot_plugin_osubot/osufile/mods/NC.png +0 -0
- nonebot_plugin_osubot/osufile/mods/NF.png +0 -0
- nonebot_plugin_osubot/osufile/mods/PF.png +0 -0
- nonebot_plugin_osubot/osufile/mods/RX.png +0 -0
- nonebot_plugin_osubot/osufile/mods/SD.png +0 -0
- nonebot_plugin_osubot/osufile/mods/SO.png +0 -0
- nonebot_plugin_osubot/osufile/mods/TD.png +0 -0
- nonebot_plugin_osubot/osufile/mods/V2.png +0 -0
- nonebot_plugin_osubot/pp.py +7 -0
- nonebot_plugin_osubot/schema/__init__.py +0 -2
- nonebot_plugin_osubot/schema/beatmapsets.py +42 -0
- nonebot_plugin_osubot/schema/draw_info.py +54 -0
- nonebot_plugin_osubot/schema/score.py +2 -0
- nonebot_plugin_osubot/schema/user.py +1 -0
- {nonebot_plugin_osubot-6.22.1.dist-info → nonebot_plugin_osubot-6.26.4.dist-info}/METADATA +18 -17
- {nonebot_plugin_osubot-6.22.1.dist-info → nonebot_plugin_osubot-6.26.4.dist-info}/RECORD +95 -52
- nonebot_plugin_osubot-6.26.4.dist-info/WHEEL +4 -0
- nonebot_plugin_osubot/schema/sayo_beatmap.py +0 -59
- nonebot_plugin_osubot-6.22.1.dist-info/WHEEL +0 -4
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
nonebot_plugin_osubot/__init__.py,sha256=Q-mTTnOIdKiKG6JrVm-kqpPrAhOP9lWyiKHNRqA7gpc,1478
|
|
2
|
-
nonebot_plugin_osubot/api.py,sha256=
|
|
2
|
+
nonebot_plugin_osubot/api.py,sha256=I_T7Bl89qFbxF7VdzhYrV_RL1SyCLqrdDmK6EQvStRk,16568
|
|
3
3
|
nonebot_plugin_osubot/beatmap_stats_moder.py,sha256=mNNTufc-gvO4NdYa3TnealSZI4-LBoiTlb599SeLBck,2915
|
|
4
|
-
nonebot_plugin_osubot/config.py,sha256=
|
|
4
|
+
nonebot_plugin_osubot/config.py,sha256=g8iqhNmyBLNolYB_ZogmKaNAjXASMVpwKOYDYdHh0Dk,301
|
|
5
5
|
nonebot_plugin_osubot/database/__init__.py,sha256=7CDo9xU_DGLQ6uTj_mU_Px92phg_DMU5mP6WvgOxFLY,101
|
|
6
6
|
nonebot_plugin_osubot/database/models.py,sha256=VF_MxR70eRbiIHtqWjpE_Vea4xR38X0RJiQIO96mjsY,1595
|
|
7
7
|
nonebot_plugin_osubot/draw/__init__.py,sha256=dRELA2Vi4gTe8v48q0iHXLDOEj7Unk-_ChDXJp3qkhg,265
|
|
8
|
-
nonebot_plugin_osubot/draw/bmap.py,sha256=
|
|
9
|
-
nonebot_plugin_osubot/draw/bp.py,sha256=
|
|
10
|
-
nonebot_plugin_osubot/draw/catch_preview.py,sha256=
|
|
8
|
+
nonebot_plugin_osubot/draw/bmap.py,sha256=AfOCYVFPtjrrUaqTi-zfl5c3_lCQvIF1XoV31H5a4ko,5123
|
|
9
|
+
nonebot_plugin_osubot/draw/bp.py,sha256=HP6vgAUunEb-zQmqWm_hO-SLrf8InM4nX6HF8-xcJxs,8594
|
|
10
|
+
nonebot_plugin_osubot/draw/catch_preview.py,sha256=PvbxneF9QGSIyHqjDF9CunbNonPtdmeo7lSpTqv-q80,965
|
|
11
11
|
nonebot_plugin_osubot/draw/catch_preview_templates/css/style.css,sha256=2I1VwycLhKJMxwjHj19zAV6MBkFMLu_qLunpoiRlGlM,3919
|
|
12
12
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/beatmap/beatmap.js,sha256=xh6RUz3D40-HJHu0KGqac_eAIHGoAR12bF58V9ft7iQ,5784
|
|
13
13
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/beatmap/hitobject.js,sha256=q9b2KA2qHkWkkGzEq1Djk5RwVr538E0B22jNIIU9n84,736
|
|
@@ -37,54 +37,96 @@ nonebot_plugin_osubot/draw/catch_preview_templates/js/util.js,sha256=XveUlX-d0vr
|
|
|
37
37
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/viewbox.js,sha256=RPsUyoKNAQub2n7oUGwWyFppZu0iVuy6DD5gggQZS3E,1641
|
|
38
38
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/zip.min.js,sha256=pQmrVxuGCMeLS-XS3QsVhzjwap28fr9Ya083uPlg1sM,86405
|
|
39
39
|
nonebot_plugin_osubot/draw/catch_preview_templates/pic.html,sha256=jwPxxyYFLGpbD29h8u_j3LBY33ya7BS2R_t95EldAmk,3092
|
|
40
|
-
nonebot_plugin_osubot/draw/echarts.py,sha256=
|
|
41
|
-
nonebot_plugin_osubot/draw/info.py,sha256=
|
|
42
|
-
nonebot_plugin_osubot/draw/
|
|
40
|
+
nonebot_plugin_osubot/draw/echarts.py,sha256=0fmfxKdnGUe7FKKb_7kS6Qj_PyrUZHUam7altC0WyKg,1142
|
|
41
|
+
nonebot_plugin_osubot/draw/info.py,sha256=KcSwa8QWq7RKoeqezeZy_XFQ3dR1gBLlEAPwlLCrU4E,4915
|
|
42
|
+
nonebot_plugin_osubot/draw/info_templates/index.html,sha256=gW8UzQm8w-FAGLwMuBoSOIeChzwx945BX9dwYFS4SMo,31577
|
|
43
|
+
nonebot_plugin_osubot/draw/info_templates/output.css,sha256=QqvWEr36SY2mYsOHNKmTDJJOZKdlspnPbaD7s2cVclk,8049
|
|
44
|
+
nonebot_plugin_osubot/draw/map.py,sha256=Z0IKhUj0FyvyVmZROCwVRVSCt50ca6al9jZBZkp56hg,8640
|
|
43
45
|
nonebot_plugin_osubot/draw/match_history.py,sha256=GBJl6lAA27U7NSMC2isEzD_YsoIPAeG6ijDu7Oflcl0,997
|
|
44
|
-
nonebot_plugin_osubot/draw/
|
|
45
|
-
nonebot_plugin_osubot/draw/
|
|
46
|
+
nonebot_plugin_osubot/draw/osu_preview.py,sha256=2rc3Py7rQsFfLvva_T9cd6gnIrB81eNEgK-IhJY1Ih0,2053
|
|
47
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/css/style.css,sha256=neIW9iHRsinAW-eE-Q7NNqFIIEV8W7XgHLqEou0aTeE,3684
|
|
48
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/README.md,sha256=0XvSRA6fweAVQBrl9DcSKIYxxTKJpO-N8Wb4ePPj1Ow,4136
|
|
49
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js,sha256=qLERBxuzsSPDAuYYLAHWs1UPk6S2JzmLB8RoddhAkLs,13451
|
|
50
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js.map,sha256=1Hg6tubanG4YHx_ezCr88Kkcf-po-RxFm2ovxXt8h-Q,29120
|
|
51
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js,sha256=yp4wSFV-wF1hnhi4NAPNNmnIiTnl-i1gNM52JdRFlw0,16636
|
|
52
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js.map,sha256=gasS_2E9Lp3sbSC0PtRd70pW7BzYqw7lMcC65aD2k2M,55277
|
|
53
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/beatmap.js,sha256=xra2zaBmCtlw-_4uhZM_ipvk_CaakOYIeygREIHDmEM,5338
|
|
54
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/hitobject.js,sha256=q9b2KA2qHkWkkGzEq1Djk5RwVr538E0B22jNIIU9n84,736
|
|
55
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/point.js,sha256=AXybWPbpUypXCVdz_Vqdk8HjEgDQd6cT-360gGmrCas,1035
|
|
56
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/scroll.js,sha256=wR9dkpKabP1TyMssfs8i2WLUxyR_ZX7RRc7KLXUjoXo,1833
|
|
57
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/timingpoint.js,sha256=boHMAQOT-860VOi-jQIrq4cwKgCo1kZvNDy0bzUxZLE,803
|
|
58
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/LegacyRandom.js,sha256=HDiks3FCVQBtVK5VzN7YV9Ekkk_WHYi0fPk3-XCQaj8,2155
|
|
59
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/PalpableCatchHitObject.js,sha256=KJ8dKV-bJttDO6O2wOwQC2mN4oDHHXT_LVJ3iQNsH_M,1787
|
|
60
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/bananashower.js,sha256=BREF62ns4usHR78z9ME1QJHKSX98WLKDv3DI0fJmUsI,922
|
|
61
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/catch.js,sha256=FZOUQsxrdJbUYTLM1EZQf7pjZt3HN04SE-Tr-xxr8u4,7752
|
|
62
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/fruit.js,sha256=ABvFMbmXP0t5wACUhSVbu8sVJ845mWJ9sWiQJtMV5co,437
|
|
63
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/juicestream.js,sha256=DA1336uMGG5HY8hXLcCcnfFGu-YyURdxHTtCQ5pqBDU,7011
|
|
64
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/hitnote.js,sha256=VH0R-1BNes9FzXPj3p3XT7PI0DIiEstPeb2nouoIYHk,711
|
|
65
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/holdnote.js,sha256=wv4hqedZ9457f00cuPRGuo8IbSBqJq3-Qksz_mnAPXA,1162
|
|
66
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/mania.js,sha256=hVYBqgzAvm99v4l7cmcgi70YjeY5c3B6BnmG66OG_FQ,4593
|
|
67
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/preview.js,sha256=lgZ-kGpQOPe-pgvWOWzNuoCF9IHfWYYqrTfxW1QkVeg,1760
|
|
68
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/bezier2.js,sha256=J3wvdScuhYCngTvZ3vg9ld6yoDE09ht5g4Etsp4bJkE,955
|
|
69
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/catmullcurve.js,sha256=aGmfIAONuOoy87W5Pyl1X8ifr3w6W9mkM_AENmZRUF0,932
|
|
70
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/centripetalcatmullrom.js,sha256=bndps8pDX4JMEbqLxIVb-aO7IoHHXnT8-jkWJnLlfq0,1203
|
|
71
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/circumstancedcircle.js,sha256=qf7wZMH3-thilEoB1Grrhr9W-U-JIClRNkhZh2RzGTY,1558
|
|
72
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curve.js,sha256=mWs8BuYnMoSFYnbqz7UZtC4UfHNu86x8BEF0oVQomMo,646
|
|
73
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curvetype.js,sha256=y3uiQSz1BjGIhIMn4fNlplPRGqxozHOuIa8jN-G06Vs,496
|
|
74
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/equaldistancemulticurve.js,sha256=U8sjoBG1ETEa9vlToqc32hyQYj41KrcRVvEdxnD-uGo,2280
|
|
75
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/linearbezier.js,sha256=sGe0u0Aqwh8R4y2BP91Dsz1MfhvtvTrrOVMV_gYsQhY,1075
|
|
76
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/hitcircle.js,sha256=afjTLJhZjL2ZMR9IAuRaW7Y93QQumHHmZ3zN_P7mf0c,2452
|
|
77
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/slider.js,sha256=rgUE4dWpl0IMK5BPhpnlRWjNdzQP1HxF2O4VcthzIVw,3886
|
|
78
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/spinner.js,sha256=mq6ZIQnwLnbB68MDxTLhYB2w-Pdmoe_YlcAL6SmmX-M,1725
|
|
79
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/standard.js,sha256=l7-v3lr5DQ4XRsHBOkHAREDv6nXaYlw8UtNEQyeupek,5052
|
|
80
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/donkat.js,sha256=VMxWauRgovuV__2F-lL2kKZvpM6mZ_wUwd3IMSdMG_M,945
|
|
81
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/drumroll.js,sha256=3FjBLFOmqHKqPyeuAu4IRQw86mGkuAjCiBreq5cOqOg,945
|
|
82
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/shaker.js,sha256=oueLYtlQCDBpBv_JNwJz_RY6PbDCBbd837NeF8o82T8,1900
|
|
83
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/taiko.js,sha256=TEOiZydvVlGabGebv2V6kSfikc5-S2oUmbwhFfvDxPk,3296
|
|
84
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/util.js,sha256=XveUlX-d0vrUnXaGbR8y428s6Nw2zhDR235pFko_MxM,1504
|
|
85
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/pic.html,sha256=q8FgImgnH-FOPRGMtecD6DwN1B-iiLX1SLM-vMQFXy8,4285
|
|
86
|
+
nonebot_plugin_osubot/draw/rating.py,sha256=LqoefqBCJsv6KXbDQsuNsohiNnzmWufwIPq2wpCjHoc,20634
|
|
87
|
+
nonebot_plugin_osubot/draw/score.py,sha256=qV9hglzn9QlgjAzyYij4g2uEsbBF-XAGTHNkmThOVVg,27329
|
|
46
88
|
nonebot_plugin_osubot/draw/static.py,sha256=wdlzNO3xyiauKiMLr_h-B9uAsFU7fX_Y-fOusYKZP3k,4132
|
|
47
|
-
nonebot_plugin_osubot/draw/taiko_preview.py,sha256=
|
|
48
|
-
nonebot_plugin_osubot/draw/templates/bpa_chart.html,sha256=
|
|
89
|
+
nonebot_plugin_osubot/draw/taiko_preview.py,sha256=X2hzWewMfH_0wFLBBtAALrXwT55pdytIu7215p0Gfws,11414
|
|
90
|
+
nonebot_plugin_osubot/draw/templates/bpa_chart.html,sha256=J0YbxM2_iGHIgLKs6qBbL-wdmNJ4Fc4FAQcc22RDuD8,7019
|
|
49
91
|
nonebot_plugin_osubot/draw/templates/echarts.min.js,sha256=IF32ooP8NPIzQg_fs7lVHpwG92JcCPE1TZAEyFSgGZU,1022939
|
|
50
92
|
nonebot_plugin_osubot/draw/templates/mod_chart.html,sha256=Iz71KM5v9z_Rt2vqJ5WIZumRIHgDfcGIUmWGvVGZ-nQ,1508
|
|
51
93
|
nonebot_plugin_osubot/draw/templates/pp_rank_line_chart.html,sha256=Gyf-GR8ZBlWQTks0TlB3M8EWUBMVwiUaesFAmDISxLo,1417
|
|
52
|
-
nonebot_plugin_osubot/draw/utils.py,sha256=
|
|
94
|
+
nonebot_plugin_osubot/draw/utils.py,sha256=yx3UdQFuISVeY6mpSRSr6KXjFMx2v6fTjZq_aivGcQE,21094
|
|
53
95
|
nonebot_plugin_osubot/exceptions.py,sha256=N_FsEk-9Eu2QnuznhdfWn6OoyA1HH73Q7bUaY89gVi0,40
|
|
54
|
-
nonebot_plugin_osubot/file.py,sha256=
|
|
96
|
+
nonebot_plugin_osubot/file.py,sha256=SEf92_4vce87-wwPOxm3PJ2wwi2lYokGK7AjgWBKMtI,9220
|
|
55
97
|
nonebot_plugin_osubot/info/__init__.py,sha256=I7YlMQiuHExEeJWqyzZb2I-Vl2uql3Py2LdhSH2Z9N0,136
|
|
56
98
|
nonebot_plugin_osubot/info/bg.py,sha256=Icua4bS38k0c-WbLUjhfS4IXOF83bgyu_oa2HwX4ZEQ,1541
|
|
57
99
|
nonebot_plugin_osubot/info/bind.py,sha256=b2ua625hbYym7rpb-kLBB-VDP5YWFdmT5RweM58ggWw,4934
|
|
58
|
-
nonebot_plugin_osubot/mania/__init__.py,sha256=
|
|
59
|
-
nonebot_plugin_osubot/matcher/__init__.py,sha256=
|
|
100
|
+
nonebot_plugin_osubot/mania/__init__.py,sha256=t5-24nd2FiZTKvMFvNg8ZV9Lp_OFSHjhj_gWUV3s1es,5560
|
|
101
|
+
nonebot_plugin_osubot/matcher/__init__.py,sha256=0f2_aeiBos3evT9eZRRh73Z0gpdwRcH8XpzUP6jbq-0,1369
|
|
60
102
|
nonebot_plugin_osubot/matcher/bind.py,sha256=QQJc2S7XFo5tu4CPloIET6fKaeiQixgb8M7QvULV6E0,2834
|
|
61
103
|
nonebot_plugin_osubot/matcher/bp.py,sha256=GidJfuZ9lJ7LwMq126DDOwMksNUOz4Bkab83OlKg8t8,3983
|
|
62
|
-
nonebot_plugin_osubot/matcher/bp_analyze.py,sha256=
|
|
104
|
+
nonebot_plugin_osubot/matcher/bp_analyze.py,sha256=xi40HVOcTvmHWR4WNLm706126CulfpV5UP0500FNiD8,4159
|
|
63
105
|
nonebot_plugin_osubot/matcher/getbg.py,sha256=Ar2yIST556MYRxzuXCLSDAMAmESRENN1fCty-kdH7PI,699
|
|
64
|
-
nonebot_plugin_osubot/matcher/guess.py,sha256=
|
|
106
|
+
nonebot_plugin_osubot/matcher/guess.py,sha256=1PSbtRwTOAEYXudt8I7AgvSi5WbY_wKOaSDsEgWdsEE,19956
|
|
65
107
|
nonebot_plugin_osubot/matcher/history.py,sha256=ZYkVJHdXuVJmhovRhwxFdqNp0o2uJJOACAZhhutyS3w,1577
|
|
66
108
|
nonebot_plugin_osubot/matcher/info.py,sha256=8CJHTOMTx_nzJ4ZwXo6ZfBwCuO3DtLprRX7jnMtPilk,858
|
|
67
109
|
nonebot_plugin_osubot/matcher/map.py,sha256=sFpOoFv63y-NOkCJhE6aW0DRYDl_8SoQOPsdq50QxT0,1404
|
|
68
|
-
nonebot_plugin_osubot/matcher/map_convert.py,sha256=
|
|
110
|
+
nonebot_plugin_osubot/matcher/map_convert.py,sha256=oklwbbcrEuous-mtHgGN3bN3PkDqKb95XXjIMSEp5Yk,6343
|
|
69
111
|
nonebot_plugin_osubot/matcher/match.py,sha256=uyrm8I_WgHK2ya1q46AUxNk_cQiKKh7GKlUzrrG1o7w,472
|
|
70
|
-
nonebot_plugin_osubot/matcher/medal.py,sha256=
|
|
112
|
+
nonebot_plugin_osubot/matcher/medal.py,sha256=LZf8hlXGHy8mdK2l97SsYCChfYYovEDBGNbUPO3AOsw,2967
|
|
71
113
|
nonebot_plugin_osubot/matcher/mu.py,sha256=l3Ebz47o46EvN2nvo9-zzQI4CTaLMcd5XW0qljqSGIM,445
|
|
72
114
|
nonebot_plugin_osubot/matcher/osu_help.py,sha256=64rOkYEOETvU8AF__0xLZjVRs3cTac0D1XEultPK_kM,728
|
|
73
|
-
nonebot_plugin_osubot/matcher/osudl.py,sha256=
|
|
74
|
-
nonebot_plugin_osubot/matcher/pr.py,sha256=
|
|
75
|
-
nonebot_plugin_osubot/matcher/preview.py,sha256=
|
|
115
|
+
nonebot_plugin_osubot/matcher/osudl.py,sha256=aItoFVYgozZHINpBuWv38syixtTOtaTtyBpWKZo94uI,1091
|
|
116
|
+
nonebot_plugin_osubot/matcher/pr.py,sha256=xGjQvEJHmIZkq9luu8TtbjBB8FykGI4Wzi_-eXghOjQ,4951
|
|
117
|
+
nonebot_plugin_osubot/matcher/preview.py,sha256=22zNjRdpwxbmIsyZQlUE-qXQBCQCfP_2WobGP7nZZh4,2314
|
|
76
118
|
nonebot_plugin_osubot/matcher/rank.py,sha256=sFEim3cR_vswzLmbagjqy-ypolcprAxQpawiSEcFqEI,3619
|
|
77
119
|
nonebot_plugin_osubot/matcher/rating.py,sha256=JY1Q1ELU3Y1FhQ7kVWVkgVsYEVxkAcxjsoMcwC_u234,450
|
|
78
|
-
nonebot_plugin_osubot/matcher/recommend.py,sha256=
|
|
120
|
+
nonebot_plugin_osubot/matcher/recommend.py,sha256=4R8rzxi-tC7aCb__64KzAKZo_-ginSb_U0HWK6xaRmI,2528
|
|
79
121
|
nonebot_plugin_osubot/matcher/score.py,sha256=Nk6dpDlszKJKdboTSQRBf-wMGioHIPqKSVWrnT0Xbns,1212
|
|
80
122
|
nonebot_plugin_osubot/matcher/update.py,sha256=MHpxoJmU0hKW82XuM9YpyCxUUjjiNKwejnRgYwueR4Q,3168
|
|
81
123
|
nonebot_plugin_osubot/matcher/update_mode.py,sha256=0Wy6Y1-rN7XcqBZyo37mYFdixq-4HxCwZftUaiYhZqE,1602
|
|
82
124
|
nonebot_plugin_osubot/matcher/url_match.py,sha256=opx4DYSQ83tk0qlMOBirl4TC49WXHgMZ04lMr9NCHNs,746
|
|
83
125
|
nonebot_plugin_osubot/matcher/utils.py,sha256=gWmNa31wUxcY_PNSNLy348x5_7sTY9ttMKH-5V5jkuE,4304
|
|
84
|
-
nonebot_plugin_osubot/mods.py,sha256=
|
|
126
|
+
nonebot_plugin_osubot/mods.py,sha256=4k1o01sVXLaiqyr2SqgJ5PlNwN8ZMkB9OpiigXr5gks,1493
|
|
85
127
|
nonebot_plugin_osubot/network/__init__.py,sha256=WOijcd81yhnpGKYeiDIOxbBDVI12GHPRGoOFfxrUuQk,61
|
|
86
128
|
nonebot_plugin_osubot/network/auto_retry.py,sha256=vDfYGbEVPF6WZLYXmRVkNvaxf6_6RyIqEAcA7TRwV_k,565
|
|
87
|
-
nonebot_plugin_osubot/network/first_response.py,sha256=
|
|
129
|
+
nonebot_plugin_osubot/network/first_response.py,sha256=jIYIF476aIUgpIcN08Wo8tXiwu0paNebCcaTuRPmlS4,924
|
|
88
130
|
nonebot_plugin_osubot/network/manager.py,sha256=x0GI1cFv3m3ZIS4oNJed197PaRo8_Vut_2J7m9ySV30,858
|
|
89
131
|
nonebot_plugin_osubot/osufile/Best Performance.png,sha256=qBNeZcym5vIqyE23K62ohjVBEPCjlNP9wQgXaT20XyY,704
|
|
90
132
|
nonebot_plugin_osubot/osufile/History Score.jpg,sha256=yv3-GaJ7sBAbAPMFlUeoyg1PzMhv31Ip5bC4H0qJfSA,836
|
|
@@ -355,24 +397,24 @@ nonebot_plugin_osubot/osufile/mods/6K.png,sha256=umRQwUCqGtRxL1J0OK4fEfPgda-sKTy
|
|
|
355
397
|
nonebot_plugin_osubot/osufile/mods/7K.png,sha256=zkeacf2WSDywv0zt4QCVTa4A54wbLI5_APvQZhnd0qY,970
|
|
356
398
|
nonebot_plugin_osubot/osufile/mods/8K.png,sha256=-NFuLd08N-7NiDV-blOprSP56Xx5kLBusmyvYVPdXKE,1045
|
|
357
399
|
nonebot_plugin_osubot/osufile/mods/9K.png,sha256=jMgg_a16eRrVV-a8wx4cTHyD9BozUzwibOhNIG4dQ-Y,1368
|
|
358
|
-
nonebot_plugin_osubot/osufile/mods/AP.png,sha256=
|
|
359
|
-
nonebot_plugin_osubot/osufile/mods/CL.png,sha256=
|
|
360
|
-
nonebot_plugin_osubot/osufile/mods/DT.png,sha256=
|
|
361
|
-
nonebot_plugin_osubot/osufile/mods/EZ.png,sha256=
|
|
362
|
-
nonebot_plugin_osubot/osufile/mods/FI.png,sha256=
|
|
363
|
-
nonebot_plugin_osubot/osufile/mods/FL.png,sha256=
|
|
364
|
-
nonebot_plugin_osubot/osufile/mods/HD.png,sha256=
|
|
365
|
-
nonebot_plugin_osubot/osufile/mods/HR.png,sha256=
|
|
366
|
-
nonebot_plugin_osubot/osufile/mods/HT.png,sha256=
|
|
367
|
-
nonebot_plugin_osubot/osufile/mods/MR.png,sha256=
|
|
368
|
-
nonebot_plugin_osubot/osufile/mods/NC.png,sha256=
|
|
369
|
-
nonebot_plugin_osubot/osufile/mods/NF.png,sha256=
|
|
370
|
-
nonebot_plugin_osubot/osufile/mods/PF.png,sha256=
|
|
371
|
-
nonebot_plugin_osubot/osufile/mods/RX.png,sha256=
|
|
372
|
-
nonebot_plugin_osubot/osufile/mods/SD.png,sha256=
|
|
373
|
-
nonebot_plugin_osubot/osufile/mods/SO.png,sha256=
|
|
374
|
-
nonebot_plugin_osubot/osufile/mods/TD.png,sha256=
|
|
375
|
-
nonebot_plugin_osubot/osufile/mods/V2.png,sha256=
|
|
400
|
+
nonebot_plugin_osubot/osufile/mods/AP.png,sha256=Fr1ip8Mxp-4FGInKRNSaEh-UOjjwBmFOn622P3bh7Js,1777
|
|
401
|
+
nonebot_plugin_osubot/osufile/mods/CL.png,sha256=d6umxTJ9Ukxr6qpuK0C_K49eDXpIupk_gLvmCyLulcQ,1595
|
|
402
|
+
nonebot_plugin_osubot/osufile/mods/DT.png,sha256=SKG0ueXlp1LkNBN7jYZLqFgFgAellleag_OTmCq7u_Q,1621
|
|
403
|
+
nonebot_plugin_osubot/osufile/mods/EZ.png,sha256=2v8urESIhNVuYHwfpw2DHjC2VuvuOo_fd0QIV6YpWSY,1303
|
|
404
|
+
nonebot_plugin_osubot/osufile/mods/FI.png,sha256=NPBvNd12oE4zrXtqfmK6swxJ-qe5Ao38edBldzCDnfM,1249
|
|
405
|
+
nonebot_plugin_osubot/osufile/mods/FL.png,sha256=CKx3ITzByhbJ4uDNoZ6c7RpjNcJlicI879pTVTLxvRY,1288
|
|
406
|
+
nonebot_plugin_osubot/osufile/mods/HD.png,sha256=67aJOk_HMuRpwRVu3bTsGOxRAGaMj218YYoQSYxw-RA,2159
|
|
407
|
+
nonebot_plugin_osubot/osufile/mods/HR.png,sha256=OwDFQTPbQIIwxymwGgyoGCS3RTkzPt0tdtk4238CnHc,1389
|
|
408
|
+
nonebot_plugin_osubot/osufile/mods/HT.png,sha256=I7E8Y87rtfsKzto_clVf4GiIu7CHYrP7FGmeZi89oKU,1404
|
|
409
|
+
nonebot_plugin_osubot/osufile/mods/MR.png,sha256=ksEwedL_bEBm34VIBt9IDfBFuB20VBn3C3F4sfyrhTs,1290
|
|
410
|
+
nonebot_plugin_osubot/osufile/mods/NC.png,sha256=CWo_Xkdmgsp1YOi-TamevcNdpYgq_1lAVDXZ5cGFqEQ,1365
|
|
411
|
+
nonebot_plugin_osubot/osufile/mods/NF.png,sha256=7C6rZp7ZbAo1SUC3uHUrd73OY_2Mn7KpofCM4SmGBG0,1634
|
|
412
|
+
nonebot_plugin_osubot/osufile/mods/PF.png,sha256=XbJt5JnqRUktT0kLXkCn6Iv9sLj1TFycQRsOmGnJjRE,1304
|
|
413
|
+
nonebot_plugin_osubot/osufile/mods/RX.png,sha256=tc6MTF1oDcji1P_wuEZjGORa4Ah3GaCQLM9ABatNg00,1265
|
|
414
|
+
nonebot_plugin_osubot/osufile/mods/SD.png,sha256=FQaNUkSCt92kAeEo5GVG4neWMN0TUdC637g8FMWbjuw,1695
|
|
415
|
+
nonebot_plugin_osubot/osufile/mods/SO.png,sha256=Fiz7A8x0MklH9PUsMz9vX9GYOp1p7o9pCcdhsZSmEkI,1512
|
|
416
|
+
nonebot_plugin_osubot/osufile/mods/TD.png,sha256=rWej0qHVNPxQJOztx_AYacYhJHnFlddO8X3xGwSLReQ,1498
|
|
417
|
+
nonebot_plugin_osubot/osufile/mods/V2.png,sha256=pyXx83YcJaimJL6i3DfrX8XdJ_3UmL8RgtP6ua0v7wM,1205
|
|
376
418
|
nonebot_plugin_osubot/osufile/pfm_ctb.png,sha256=9JJu8J1gR_nQhb1EWOuJUOjNitYK_gcH6MRGiYtvsGI,53451
|
|
377
419
|
nonebot_plugin_osubot/osufile/pfm_mania.png,sha256=PKlAezcKALo0UMnrYvTCL3pd-oJNEU76qLVPhfDLFdk,52208
|
|
378
420
|
nonebot_plugin_osubot/osufile/pfm_std.png,sha256=ts7e7IUeoalLuw0Pww0X3trXUpZwnWRsOqdQ1RzcdFM,57032
|
|
@@ -394,17 +436,18 @@ nonebot_plugin_osubot/osufile/work/stardiff.png,sha256=mBPOspsqNr1FkDolzTpnyIz-8
|
|
|
394
436
|
nonebot_plugin_osubot/osufile/work/stars.png,sha256=zifMmxxjOGzSZAm1tr-3ky_yy18p1bbjgkl3zYRMcp4,305
|
|
395
437
|
nonebot_plugin_osubot/osufile/work/stars_expertplus.png,sha256=cmfpErs-flPxHEhVmS9H8vy8H7mrChvV_Q4A77oSVFY,517
|
|
396
438
|
nonebot_plugin_osubot/osufile/work/suppoter.png,sha256=4V4eNhB8_8KIXsQ1jzFyHUkicKPb5LPehoIcri4h8E4,16061
|
|
397
|
-
nonebot_plugin_osubot/pp.py,sha256=
|
|
398
|
-
nonebot_plugin_osubot/schema/__init__.py,sha256=
|
|
439
|
+
nonebot_plugin_osubot/pp.py,sha256=zLKyiNcCFTaH3OE5deiqLxkQeVK261AXQ4d8uqc-3qA,3472
|
|
440
|
+
nonebot_plugin_osubot/schema/__init__.py,sha256=iC4BTSW_uPyH5-1xk3ByYa5kCicnOFWqxhuTmQKn2ik,411
|
|
399
441
|
nonebot_plugin_osubot/schema/alphaosu.py,sha256=7cJLIwl4X-dshYsXMi8hHgcp7Ly6BiI3pqwXENhMaX0,693
|
|
400
442
|
nonebot_plugin_osubot/schema/basemodel.py,sha256=aZI1rdOHx-kmMXohazq1s5tYdtR-2WRzfYQATmWd6a4,99
|
|
401
443
|
nonebot_plugin_osubot/schema/beatmap.py,sha256=UnobfZEHq1V2HG-A4j3BECubO-dB1JzTMA2_QIXttNM,1960
|
|
444
|
+
nonebot_plugin_osubot/schema/beatmapsets.py,sha256=rEbkmZHYXqmRtg9CyV0hzxc5kZFGm9OWoOv_laYripQ,780
|
|
445
|
+
nonebot_plugin_osubot/schema/draw_info.py,sha256=qb8oUFM8B7m6R8l2iPSvb1G1TGPQIB50ta3j8MZw_lU,1450
|
|
402
446
|
nonebot_plugin_osubot/schema/match.py,sha256=lR3pGNVR9K_5GZAdOLG6Ki-W3fwJvgMlNhYOzKNE3lg,494
|
|
403
447
|
nonebot_plugin_osubot/schema/ppysb/__init__.py,sha256=JK2Z4n44gUJPVKdETMJYJ5uIw-4a8T50y6j5n-YrlYM,1375
|
|
404
|
-
nonebot_plugin_osubot/schema/
|
|
405
|
-
nonebot_plugin_osubot/schema/
|
|
406
|
-
nonebot_plugin_osubot/schema/user.py,sha256=sxNmqymG_kIVuGuzfchSv9UML6NPG70cqo2_h5xDIpM,2250
|
|
448
|
+
nonebot_plugin_osubot/schema/score.py,sha256=o32jKDESzFwOFPZnzjKqxNIj0MPUL9mFvBqgaZARHac,3269
|
|
449
|
+
nonebot_plugin_osubot/schema/user.py,sha256=kORcHXn9guZ3WQJ4rfCFwOu6pe0c7lbebnSBZqm6cBg,2298
|
|
407
450
|
nonebot_plugin_osubot/utils/__init__.py,sha256=pyv8XxBcCOeQVDj1E4dgvktzcefgQXfKBlarsYGx1sg,815
|
|
408
|
-
nonebot_plugin_osubot-6.
|
|
409
|
-
nonebot_plugin_osubot-6.
|
|
410
|
-
nonebot_plugin_osubot-6.
|
|
451
|
+
nonebot_plugin_osubot-6.26.4.dist-info/WHEEL,sha256=DpNsHFUm_gffZe1FgzmqwuqiuPC6Y-uBCzibcJcdupM,78
|
|
452
|
+
nonebot_plugin_osubot-6.26.4.dist-info/METADATA,sha256=v4NuVSAPHzHqtExeHl0TK_aQOAULUpm5vU0QDEtoeoI,4539
|
|
453
|
+
nonebot_plugin_osubot-6.26.4.dist-info/RECORD,,
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
from typing import Optional
|
|
2
|
-
|
|
3
|
-
from .basemodel import Base
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class BidData(Base):
|
|
7
|
-
bid: int
|
|
8
|
-
mode: int
|
|
9
|
-
version: str
|
|
10
|
-
length: int
|
|
11
|
-
CS: float
|
|
12
|
-
AR: float
|
|
13
|
-
OD: float
|
|
14
|
-
HP: float
|
|
15
|
-
star: float
|
|
16
|
-
aim: float
|
|
17
|
-
speed: float
|
|
18
|
-
hit300window: float
|
|
19
|
-
pp: float
|
|
20
|
-
pp_aim: float
|
|
21
|
-
pp_speed: float
|
|
22
|
-
pp_acc: float
|
|
23
|
-
circles: int
|
|
24
|
-
sliders: int
|
|
25
|
-
spinners: int
|
|
26
|
-
maxcombo: int
|
|
27
|
-
playcount: int
|
|
28
|
-
passcount: int
|
|
29
|
-
bg: str
|
|
30
|
-
audio: str
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
class MapInfo(Base):
|
|
34
|
-
sid: int
|
|
35
|
-
local_update: int
|
|
36
|
-
bids_amount: int
|
|
37
|
-
approved: int
|
|
38
|
-
title: str
|
|
39
|
-
artist: str
|
|
40
|
-
titleU: str
|
|
41
|
-
artistU: str
|
|
42
|
-
creator: str
|
|
43
|
-
creator_id: int
|
|
44
|
-
source: str
|
|
45
|
-
last_update: int
|
|
46
|
-
approved_date: int
|
|
47
|
-
bpm: float
|
|
48
|
-
favourite_count: int
|
|
49
|
-
video: int
|
|
50
|
-
storyboard: int
|
|
51
|
-
tags: str
|
|
52
|
-
language: int
|
|
53
|
-
genre: int
|
|
54
|
-
bid_data: list[BidData]
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
class SayoBeatmap(Base):
|
|
58
|
-
status: int
|
|
59
|
-
data: Optional[MapInfo] = None
|