nonebot-plugin-osubot 6.23.1__py3-none-any.whl → 6.24.1__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.

Potentially problematic release.


This version of nonebot-plugin-osubot might be problematic. Click here for more details.

Files changed (81) hide show
  1. nonebot_plugin_osubot/api.py +7 -5
  2. nonebot_plugin_osubot/draw/bmap.py +19 -21
  3. nonebot_plugin_osubot/draw/bp.py +1 -1
  4. nonebot_plugin_osubot/draw/echarts.py +8 -2
  5. nonebot_plugin_osubot/draw/info.py +2 -0
  6. nonebot_plugin_osubot/draw/map.py +5 -2
  7. nonebot_plugin_osubot/draw/osu_preview.py +64 -0
  8. nonebot_plugin_osubot/draw/osu_preview_templates/css/style.css +258 -0
  9. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/README.md +109 -0
  10. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js +3 -0
  11. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js.map +1 -0
  12. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js +3 -0
  13. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js.map +1 -0
  14. nonebot_plugin_osubot/draw/osu_preview_templates/index.html +437 -0
  15. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/beatmap.js +211 -0
  16. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/hitobject.js +29 -0
  17. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/point.js +55 -0
  18. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/scroll.js +45 -0
  19. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/timingpoint.js +35 -0
  20. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/LegacyRandom.js +81 -0
  21. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/PalpableCatchHitObject.js +53 -0
  22. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/bananashower.js +33 -0
  23. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/catch.js +211 -0
  24. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/fruit.js +21 -0
  25. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/juicestream.js +176 -0
  26. nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/hitnote.js +21 -0
  27. nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/holdnote.js +37 -0
  28. nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/mania.js +164 -0
  29. nonebot_plugin_osubot/draw/osu_preview_templates/js/preview.js +61 -0
  30. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/bezier2.js +33 -0
  31. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/catmullcurve.js +34 -0
  32. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/centripetalcatmullrom.js +30 -0
  33. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/circumstancedcircle.js +47 -0
  34. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curve.js +25 -0
  35. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curvetype.js +17 -0
  36. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/equaldistancemulticurve.js +70 -0
  37. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/linearbezier.js +40 -0
  38. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/hitcircle.js +85 -0
  39. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/slider.js +120 -0
  40. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/spinner.js +56 -0
  41. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/standard.js +170 -0
  42. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/donkat.js +40 -0
  43. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/drumroll.js +34 -0
  44. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/shaker.js +58 -0
  45. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/taiko.js +120 -0
  46. nonebot_plugin_osubot/draw/osu_preview_templates/js/util.js +61 -0
  47. nonebot_plugin_osubot/draw/osu_preview_templates/pic.html +115 -0
  48. nonebot_plugin_osubot/draw/score.py +4 -4
  49. nonebot_plugin_osubot/file.py +1 -12
  50. nonebot_plugin_osubot/mania/__init__.py +9 -10
  51. nonebot_plugin_osubot/matcher/bp_analyze.py +9 -9
  52. nonebot_plugin_osubot/matcher/guess.py +3 -3
  53. nonebot_plugin_osubot/matcher/map_convert.py +12 -7
  54. nonebot_plugin_osubot/matcher/preview.py +10 -3
  55. nonebot_plugin_osubot/matcher/recommend.py +7 -12
  56. nonebot_plugin_osubot/osufile/mods/AP.png +0 -0
  57. nonebot_plugin_osubot/osufile/mods/CL.png +0 -0
  58. nonebot_plugin_osubot/osufile/mods/DT.png +0 -0
  59. nonebot_plugin_osubot/osufile/mods/EZ.png +0 -0
  60. nonebot_plugin_osubot/osufile/mods/FI.png +0 -0
  61. nonebot_plugin_osubot/osufile/mods/FL.png +0 -0
  62. nonebot_plugin_osubot/osufile/mods/HD.png +0 -0
  63. nonebot_plugin_osubot/osufile/mods/HR.png +0 -0
  64. nonebot_plugin_osubot/osufile/mods/HT.png +0 -0
  65. nonebot_plugin_osubot/osufile/mods/MR.png +0 -0
  66. nonebot_plugin_osubot/osufile/mods/NC.png +0 -0
  67. nonebot_plugin_osubot/osufile/mods/NF.png +0 -0
  68. nonebot_plugin_osubot/osufile/mods/PF.png +0 -0
  69. nonebot_plugin_osubot/osufile/mods/RX.png +0 -0
  70. nonebot_plugin_osubot/osufile/mods/SD.png +0 -0
  71. nonebot_plugin_osubot/osufile/mods/SO.png +0 -0
  72. nonebot_plugin_osubot/osufile/mods/TD.png +0 -0
  73. nonebot_plugin_osubot/osufile/mods/V2.png +0 -0
  74. nonebot_plugin_osubot/pp.py +7 -0
  75. nonebot_plugin_osubot/schema/__init__.py +0 -2
  76. nonebot_plugin_osubot/schema/beatmapsets.py +42 -0
  77. nonebot_plugin_osubot/schema/score.py +1 -0
  78. {nonebot_plugin_osubot-6.23.1.dist-info → nonebot_plugin_osubot-6.24.1.dist-info}/METADATA +2 -2
  79. {nonebot_plugin_osubot-6.23.1.dist-info → nonebot_plugin_osubot-6.24.1.dist-info}/RECORD +80 -39
  80. nonebot_plugin_osubot/schema/sayo_beatmap.py +0 -59
  81. {nonebot_plugin_osubot-6.23.1.dist-info → nonebot_plugin_osubot-6.24.1.dist-info}/WHEEL +0 -0
@@ -1,7 +1,6 @@
1
1
  from .user import User, Badge
2
2
  from .match import Game, Match
3
3
  from .alphaosu import RecommendData
4
- from .sayo_beatmap import SayoBeatmap
5
4
  from .score import Score, NewScore, BeatmapUserScore
6
5
  from .beatmap import Beatmap, Beatmapset, SeasonalBackgrounds
7
6
 
@@ -14,7 +13,6 @@ __all__ = [
14
13
  "Beatmap",
15
14
  "Beatmapset",
16
15
  "SeasonalBackgrounds",
17
- "SayoBeatmap",
18
16
  "RecommendData",
19
17
  "Match",
20
18
  "Game",
@@ -0,0 +1,42 @@
1
+ from typing import Optional
2
+ from .basemodel import Base
3
+
4
+
5
+ class BidData(Base):
6
+ id: int
7
+ mode_int: int
8
+ version: str
9
+ total_length: int
10
+ cs: float
11
+ ar: float
12
+ accuracy: float
13
+ drain: float
14
+ difficulty_rating: float
15
+ count_circles: int
16
+ count_sliders: int
17
+ count_spinners: int
18
+ max_combo: Optional[int] = None
19
+ playcount: int
20
+ passcount: int
21
+
22
+
23
+ class BeatmapSets(Base):
24
+ id: int
25
+ ranked: int
26
+ title: str
27
+ artist: str
28
+ title_unicode: str
29
+ artist_unicode: str
30
+ creator: str
31
+ user_id: int
32
+ source: str
33
+ last_updated: str
34
+ ranked_date: Optional[str]
35
+ bpm: float
36
+ favourite_count: int
37
+ video: bool
38
+ storyboard: bool
39
+ tags: str
40
+ language_id: int
41
+ genre_id: int
42
+ beatmaps: list[BidData]
@@ -114,6 +114,7 @@ class UnifiedBeatmap(Base):
114
114
  hp: float
115
115
  stars: float
116
116
  user_id: Optional[int] = None
117
+ convert: Optional[bool] = False
117
118
 
118
119
 
119
120
  class UnifiedScore(Base):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nonebot-plugin-osubot
3
- Version: 6.23.1
3
+ Version: 6.24.1
4
4
  Summary: OSUbot in NoneBot2
5
5
  License: AGPL-3.0
6
6
  Author-email: yaowan233 <572473053@qq.com>
@@ -18,7 +18,7 @@ Requires-Dist: nonebot2>=2.3.0
18
18
  Requires-Dist: pillow>=9.2.0
19
19
  Requires-Dist: pydantic!=2.5.0,!=2.5.1,<3.0.0,>=1.10.0
20
20
  Requires-Dist: reamber>=0.2.1
21
- Requires-Dist: rosu-pp-py==3.0.0
21
+ Requires-Dist: rosu-pp-py==3.1.0
22
22
  Requires-Dist: tortoise-orm>=0.20.0
23
23
  Requires-Dist: typing_extensions>=4.11.0
24
24
  Project-URL: Homepage, https://github.com/yaowan233/nonebot-plugin-osubot
@@ -1,5 +1,5 @@
1
1
  nonebot_plugin_osubot/__init__.py,sha256=Q-mTTnOIdKiKG6JrVm-kqpPrAhOP9lWyiKHNRqA7gpc,1478
2
- nonebot_plugin_osubot/api.py,sha256=sPCRCm6zZ90-e-NvN5b2yFAI1RALid5zMP9ra7xQ8c8,16425
2
+ nonebot_plugin_osubot/api.py,sha256=3jJbgJdL1sJ_FcbTqJQxRPLlJueaUXhH0REfy8Ff-ps,16521
3
3
  nonebot_plugin_osubot/beatmap_stats_moder.py,sha256=mNNTufc-gvO4NdYa3TnealSZI4-LBoiTlb599SeLBck,2915
4
4
  nonebot_plugin_osubot/config.py,sha256=Ub2s5Ny09-d1ZwT6x8cirB6zWy0brtO-oZV3W0qEM5Q,311
5
5
  nonebot_plugin_osubot/data/osu/1849145.osz,sha256=enbHOvDu6ZkvQBM7gtvgZBY-r0a7z87pG62Xm9hXUSI,6933013
@@ -7,8 +7,8 @@ nonebot_plugin_osubot/data/osu/1849145.zip,sha256=k957Du9QVliv1rt6ku3sKDoTIOeyJk
7
7
  nonebot_plugin_osubot/database/__init__.py,sha256=7CDo9xU_DGLQ6uTj_mU_Px92phg_DMU5mP6WvgOxFLY,101
8
8
  nonebot_plugin_osubot/database/models.py,sha256=VF_MxR70eRbiIHtqWjpE_Vea4xR38X0RJiQIO96mjsY,1595
9
9
  nonebot_plugin_osubot/draw/__init__.py,sha256=dRELA2Vi4gTe8v48q0iHXLDOEj7Unk-_ChDXJp3qkhg,265
10
- nonebot_plugin_osubot/draw/bmap.py,sha256=vOf6SeeIHV7d13TF_7KLJwfqsKEGr9LW_WPtfcoJCgQ,5142
11
- nonebot_plugin_osubot/draw/bp.py,sha256=EffKW5HcbqQheGRzr8VAU5q6OJ1je21XxVJ2JTmPL9E,8948
10
+ nonebot_plugin_osubot/draw/bmap.py,sha256=AfOCYVFPtjrrUaqTi-zfl5c3_lCQvIF1XoV31H5a4ko,5123
11
+ nonebot_plugin_osubot/draw/bp.py,sha256=Ma-it9MFYcHiIigb5_ZzG8p7wlL7-hh3sQKgB412jfo,8970
12
12
  nonebot_plugin_osubot/draw/catch_preview.py,sha256=uSYoTqfdxRy4anpH9Uhj8NntPo008pzw1t6xRMTBBkI,1397
13
13
  nonebot_plugin_osubot/draw/catch_preview_templates/css/style.css,sha256=2I1VwycLhKJMxwjHj19zAV6MBkFMLu_qLunpoiRlGlM,3919
14
14
  nonebot_plugin_osubot/draw/catch_preview_templates/js/beatmap/beatmap.js,sha256=xh6RUz3D40-HJHu0KGqac_eAIHGoAR12bF58V9ft7iQ,5784
@@ -39,12 +39,53 @@ nonebot_plugin_osubot/draw/catch_preview_templates/js/util.js,sha256=XveUlX-d0vr
39
39
  nonebot_plugin_osubot/draw/catch_preview_templates/js/viewbox.js,sha256=RPsUyoKNAQub2n7oUGwWyFppZu0iVuy6DD5gggQZS3E,1641
40
40
  nonebot_plugin_osubot/draw/catch_preview_templates/js/zip.min.js,sha256=pQmrVxuGCMeLS-XS3QsVhzjwap28fr9Ya083uPlg1sM,86405
41
41
  nonebot_plugin_osubot/draw/catch_preview_templates/pic.html,sha256=jwPxxyYFLGpbD29h8u_j3LBY33ya7BS2R_t95EldAmk,3092
42
- nonebot_plugin_osubot/draw/echarts.py,sha256=RFnJRC5FkATE2QeAbilgKVYq0Y42dVEPXH4bRez9F78,1068
43
- nonebot_plugin_osubot/draw/info.py,sha256=i2YcJmSdTpwhZl_nDe7GJv4jQTB8_9oBfpq2Zw2hwo0,11162
44
- nonebot_plugin_osubot/draw/map.py,sha256=toEsZkuru5y1K21X9gZj2wlBBCYSp8SqTFpAkwk0BL8,8672
42
+ nonebot_plugin_osubot/draw/echarts.py,sha256=0fmfxKdnGUe7FKKb_7kS6Qj_PyrUZHUam7altC0WyKg,1142
43
+ nonebot_plugin_osubot/draw/info.py,sha256=SkrkE-kWJmdQIZ8oKJocRf6hTrJZy-qwE3xUvz5lJpk,11344
44
+ nonebot_plugin_osubot/draw/map.py,sha256=Oo1s5YuNxWzNVMBIASk0gO0ISATS-pQBPg68NcbpF74,8756
45
45
  nonebot_plugin_osubot/draw/match_history.py,sha256=GBJl6lAA27U7NSMC2isEzD_YsoIPAeG6ijDu7Oflcl0,997
46
+ nonebot_plugin_osubot/draw/osu_preview.py,sha256=b57xb0COfKl8GQPUv8WhDdEwNFhuZJByoIMjTjHnxpY,2485
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/index.html,sha256=x4QQ0c1vMIgGkxdapplruSr1Z97bULE9CBY3pkjTvS8,16804
54
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/beatmap.js,sha256=xra2zaBmCtlw-_4uhZM_ipvk_CaakOYIeygREIHDmEM,5338
55
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/hitobject.js,sha256=q9b2KA2qHkWkkGzEq1Djk5RwVr538E0B22jNIIU9n84,736
56
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/point.js,sha256=AXybWPbpUypXCVdz_Vqdk8HjEgDQd6cT-360gGmrCas,1035
57
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/scroll.js,sha256=wR9dkpKabP1TyMssfs8i2WLUxyR_ZX7RRc7KLXUjoXo,1833
58
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/timingpoint.js,sha256=boHMAQOT-860VOi-jQIrq4cwKgCo1kZvNDy0bzUxZLE,803
59
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/LegacyRandom.js,sha256=HDiks3FCVQBtVK5VzN7YV9Ekkk_WHYi0fPk3-XCQaj8,2155
60
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/PalpableCatchHitObject.js,sha256=KJ8dKV-bJttDO6O2wOwQC2mN4oDHHXT_LVJ3iQNsH_M,1787
61
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/bananashower.js,sha256=BREF62ns4usHR78z9ME1QJHKSX98WLKDv3DI0fJmUsI,922
62
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/catch.js,sha256=FZOUQsxrdJbUYTLM1EZQf7pjZt3HN04SE-Tr-xxr8u4,7752
63
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/fruit.js,sha256=ABvFMbmXP0t5wACUhSVbu8sVJ845mWJ9sWiQJtMV5co,437
64
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/juicestream.js,sha256=DA1336uMGG5HY8hXLcCcnfFGu-YyURdxHTtCQ5pqBDU,7011
65
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/hitnote.js,sha256=VH0R-1BNes9FzXPj3p3XT7PI0DIiEstPeb2nouoIYHk,711
66
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/holdnote.js,sha256=wv4hqedZ9457f00cuPRGuo8IbSBqJq3-Qksz_mnAPXA,1162
67
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/mania.js,sha256=hVYBqgzAvm99v4l7cmcgi70YjeY5c3B6BnmG66OG_FQ,4593
68
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/preview.js,sha256=lgZ-kGpQOPe-pgvWOWzNuoCF9IHfWYYqrTfxW1QkVeg,1760
69
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/bezier2.js,sha256=J3wvdScuhYCngTvZ3vg9ld6yoDE09ht5g4Etsp4bJkE,955
70
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/catmullcurve.js,sha256=aGmfIAONuOoy87W5Pyl1X8ifr3w6W9mkM_AENmZRUF0,932
71
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/centripetalcatmullrom.js,sha256=bndps8pDX4JMEbqLxIVb-aO7IoHHXnT8-jkWJnLlfq0,1203
72
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/circumstancedcircle.js,sha256=qf7wZMH3-thilEoB1Grrhr9W-U-JIClRNkhZh2RzGTY,1558
73
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curve.js,sha256=mWs8BuYnMoSFYnbqz7UZtC4UfHNu86x8BEF0oVQomMo,646
74
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curvetype.js,sha256=y3uiQSz1BjGIhIMn4fNlplPRGqxozHOuIa8jN-G06Vs,496
75
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/equaldistancemulticurve.js,sha256=U8sjoBG1ETEa9vlToqc32hyQYj41KrcRVvEdxnD-uGo,2280
76
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/linearbezier.js,sha256=sGe0u0Aqwh8R4y2BP91Dsz1MfhvtvTrrOVMV_gYsQhY,1075
77
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/hitcircle.js,sha256=afjTLJhZjL2ZMR9IAuRaW7Y93QQumHHmZ3zN_P7mf0c,2452
78
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/slider.js,sha256=rgUE4dWpl0IMK5BPhpnlRWjNdzQP1HxF2O4VcthzIVw,3886
79
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/spinner.js,sha256=mq6ZIQnwLnbB68MDxTLhYB2w-Pdmoe_YlcAL6SmmX-M,1725
80
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/standard.js,sha256=l7-v3lr5DQ4XRsHBOkHAREDv6nXaYlw8UtNEQyeupek,5052
81
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/donkat.js,sha256=VMxWauRgovuV__2F-lL2kKZvpM6mZ_wUwd3IMSdMG_M,945
82
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/drumroll.js,sha256=3FjBLFOmqHKqPyeuAu4IRQw86mGkuAjCiBreq5cOqOg,945
83
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/shaker.js,sha256=oueLYtlQCDBpBv_JNwJz_RY6PbDCBbd837NeF8o82T8,1900
84
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/taiko.js,sha256=TEOiZydvVlGabGebv2V6kSfikc5-S2oUmbwhFfvDxPk,3296
85
+ nonebot_plugin_osubot/draw/osu_preview_templates/js/util.js,sha256=XveUlX-d0vrUnXaGbR8y428s6Nw2zhDR235pFko_MxM,1504
86
+ nonebot_plugin_osubot/draw/osu_preview_templates/pic.html,sha256=Vlc5TrM-NDb2v0bgVQo63dDW89AbOP9k--7CkiRTiFo,4421
46
87
  nonebot_plugin_osubot/draw/rating.py,sha256=pA7mGLI4IujmYB6kQf_tSkR7mZGpUAVLRLyaAsZhqTM,20397
47
- nonebot_plugin_osubot/draw/score.py,sha256=65XjTD5nZ3lJt6yvlv2DWcpu14IKFkqWmD88Q0RnuvQ,29218
88
+ nonebot_plugin_osubot/draw/score.py,sha256=cUD8zpdf8e43Du9Z_A6T3HIP3IxtgSF3wheaNwMBWWk,29277
48
89
  nonebot_plugin_osubot/draw/static.py,sha256=wdlzNO3xyiauKiMLr_h-B9uAsFU7fX_Y-fOusYKZP3k,4132
49
90
  nonebot_plugin_osubot/draw/taiko_preview.py,sha256=X2hzWewMfH_0wFLBBtAALrXwT55pdytIu7215p0Gfws,11414
50
91
  nonebot_plugin_osubot/draw/templates/bpa_chart.html,sha256=J0YbxM2_iGHIgLKs6qBbL-wdmNJ4Fc4FAQcc22RDuD8,7019
@@ -53,31 +94,31 @@ nonebot_plugin_osubot/draw/templates/mod_chart.html,sha256=Iz71KM5v9z_Rt2vqJ5WIZ
53
94
  nonebot_plugin_osubot/draw/templates/pp_rank_line_chart.html,sha256=Gyf-GR8ZBlWQTks0TlB3M8EWUBMVwiUaesFAmDISxLo,1417
54
95
  nonebot_plugin_osubot/draw/utils.py,sha256=6QDbByPQZCxI0k_i5MsExyWZ-sHgJUw6nEWLv85IgLY,15826
55
96
  nonebot_plugin_osubot/exceptions.py,sha256=N_FsEk-9Eu2QnuznhdfWn6OoyA1HH73Q7bUaY89gVi0,40
56
- nonebot_plugin_osubot/file.py,sha256=GhG54EdVsxFf8_8GZOPh4YGvw9iw5bAX9JFz4Mg4kMg,4379
97
+ nonebot_plugin_osubot/file.py,sha256=kfnaf68q0Au54YMUqhD2nYnusEsHqjxJKy2LqPA8urI,4104
57
98
  nonebot_plugin_osubot/info/__init__.py,sha256=I7YlMQiuHExEeJWqyzZb2I-Vl2uql3Py2LdhSH2Z9N0,136
58
99
  nonebot_plugin_osubot/info/bg.py,sha256=Icua4bS38k0c-WbLUjhfS4IXOF83bgyu_oa2HwX4ZEQ,1541
59
100
  nonebot_plugin_osubot/info/bind.py,sha256=b2ua625hbYym7rpb-kLBB-VDP5YWFdmT5RweM58ggWw,4934
60
- nonebot_plugin_osubot/mania/__init__.py,sha256=XRPn563jDJiPohFekcoFFCqCJYznb-6uORneioZv4xI,5534
101
+ nonebot_plugin_osubot/mania/__init__.py,sha256=t5-24nd2FiZTKvMFvNg8ZV9Lp_OFSHjhj_gWUV3s1es,5560
61
102
  nonebot_plugin_osubot/matcher/__init__.py,sha256=yID7QcdQF6_Mouwbej3JwYUBbKSU3VQdrjq6B1Fz9P8,1331
62
103
  nonebot_plugin_osubot/matcher/bind.py,sha256=QQJc2S7XFo5tu4CPloIET6fKaeiQixgb8M7QvULV6E0,2834
63
104
  nonebot_plugin_osubot/matcher/bp.py,sha256=GidJfuZ9lJ7LwMq126DDOwMksNUOz4Bkab83OlKg8t8,3983
64
- nonebot_plugin_osubot/matcher/bp_analyze.py,sha256=HyTirmfDHiXDXlyHFrACwa5T-WYRzvZ3a16muAvZiAI,4046
105
+ nonebot_plugin_osubot/matcher/bp_analyze.py,sha256=xi40HVOcTvmHWR4WNLm706126CulfpV5UP0500FNiD8,4159
65
106
  nonebot_plugin_osubot/matcher/getbg.py,sha256=Ar2yIST556MYRxzuXCLSDAMAmESRENN1fCty-kdH7PI,699
66
- nonebot_plugin_osubot/matcher/guess.py,sha256=QmD-a88pnPfSSBAvSpD2tlHDGMRpYWqtxfNuLsHuBYM,24144
107
+ nonebot_plugin_osubot/matcher/guess.py,sha256=Bv4Rt11eB65hdsPu6KhCjmEP1AacFUwA0uu5AytNB68,24192
67
108
  nonebot_plugin_osubot/matcher/history.py,sha256=ZYkVJHdXuVJmhovRhwxFdqNp0o2uJJOACAZhhutyS3w,1577
68
109
  nonebot_plugin_osubot/matcher/info.py,sha256=8CJHTOMTx_nzJ4ZwXo6ZfBwCuO3DtLprRX7jnMtPilk,858
69
110
  nonebot_plugin_osubot/matcher/map.py,sha256=sFpOoFv63y-NOkCJhE6aW0DRYDl_8SoQOPsdq50QxT0,1404
70
- nonebot_plugin_osubot/matcher/map_convert.py,sha256=YfR-_u5F_GCdn2mv9ZvMEpfxTc63f9nmihIUdu54eN8,5716
111
+ nonebot_plugin_osubot/matcher/map_convert.py,sha256=Q3oNK8NvOUE56mOXQ0PvRQkZZ0nLbtFrAp9wxqw-7Ak,5973
71
112
  nonebot_plugin_osubot/matcher/match.py,sha256=uyrm8I_WgHK2ya1q46AUxNk_cQiKKh7GKlUzrrG1o7w,472
72
113
  nonebot_plugin_osubot/matcher/medal.py,sha256=LZf8hlXGHy8mdK2l97SsYCChfYYovEDBGNbUPO3AOsw,2967
73
114
  nonebot_plugin_osubot/matcher/mu.py,sha256=l3Ebz47o46EvN2nvo9-zzQI4CTaLMcd5XW0qljqSGIM,445
74
115
  nonebot_plugin_osubot/matcher/osu_help.py,sha256=64rOkYEOETvU8AF__0xLZjVRs3cTac0D1XEultPK_kM,728
75
116
  nonebot_plugin_osubot/matcher/osudl.py,sha256=yLEblYnLprTf2T00FiRWJ8CuCd0IHyUY9Ka68yAKOXo,872
76
117
  nonebot_plugin_osubot/matcher/pr.py,sha256=xGjQvEJHmIZkq9luu8TtbjBB8FykGI4Wzi_-eXghOjQ,4951
77
- nonebot_plugin_osubot/matcher/preview.py,sha256=n9wgdNG9SF_JQ78nShTsTElJkBDJQr67DRc8Q9sVcCo,1896
118
+ nonebot_plugin_osubot/matcher/preview.py,sha256=22zNjRdpwxbmIsyZQlUE-qXQBCQCfP_2WobGP7nZZh4,2314
78
119
  nonebot_plugin_osubot/matcher/rank.py,sha256=sFEim3cR_vswzLmbagjqy-ypolcprAxQpawiSEcFqEI,3619
79
120
  nonebot_plugin_osubot/matcher/rating.py,sha256=JY1Q1ELU3Y1FhQ7kVWVkgVsYEVxkAcxjsoMcwC_u234,450
80
- nonebot_plugin_osubot/matcher/recommend.py,sha256=1LcjACkiPdZV0VqXbZx-oTytKr8lYxg1q0zZuXowWTc,2678
121
+ nonebot_plugin_osubot/matcher/recommend.py,sha256=DChL83UNSi_XDHUm1ksPwUgQE12PI_EHaxXkJQoZ5Oc,2521
81
122
  nonebot_plugin_osubot/matcher/score.py,sha256=Nk6dpDlszKJKdboTSQRBf-wMGioHIPqKSVWrnT0Xbns,1212
82
123
  nonebot_plugin_osubot/matcher/update.py,sha256=MHpxoJmU0hKW82XuM9YpyCxUUjjiNKwejnRgYwueR4Q,3168
83
124
  nonebot_plugin_osubot/matcher/update_mode.py,sha256=0Wy6Y1-rN7XcqBZyo37mYFdixq-4HxCwZftUaiYhZqE,1602
@@ -357,24 +398,24 @@ nonebot_plugin_osubot/osufile/mods/6K.png,sha256=umRQwUCqGtRxL1J0OK4fEfPgda-sKTy
357
398
  nonebot_plugin_osubot/osufile/mods/7K.png,sha256=zkeacf2WSDywv0zt4QCVTa4A54wbLI5_APvQZhnd0qY,970
358
399
  nonebot_plugin_osubot/osufile/mods/8K.png,sha256=-NFuLd08N-7NiDV-blOprSP56Xx5kLBusmyvYVPdXKE,1045
359
400
  nonebot_plugin_osubot/osufile/mods/9K.png,sha256=jMgg_a16eRrVV-a8wx4cTHyD9BozUzwibOhNIG4dQ-Y,1368
360
- nonebot_plugin_osubot/osufile/mods/AP.png,sha256=9qH_KtcpqmMquU0PxIgCX1MG01Vo4MXSFibuE-8_Td8,1777
361
- nonebot_plugin_osubot/osufile/mods/CL.png,sha256=Mqsi9M0w7ouhN31o6alizwnOUCy8CVJw49RllH6zf74,2466
362
- nonebot_plugin_osubot/osufile/mods/DT.png,sha256=AoH8eGUdM9d0UF9Y-YIXlXp5FBHMCLMwxaFiHNPmDIo,1531
363
- nonebot_plugin_osubot/osufile/mods/EZ.png,sha256=TQYpPexTrYpNSVq5QyuiFeQeN7v720_uZLipHYVKDL0,1411
364
- nonebot_plugin_osubot/osufile/mods/FI.png,sha256=jNX9pJeJIL8VlHXEBNNqKJUw_CabIm9jRU2TgwmyLzw,978
365
- nonebot_plugin_osubot/osufile/mods/FL.png,sha256=Kv4lCJ8kYDW2xq6xAwrEJlPL2V7DvqbBcKcgWK_WPRQ,1111
366
- nonebot_plugin_osubot/osufile/mods/HD.png,sha256=BIYpJhBrdGOuW03EQHq0r1Jz_fLuMx1ezEA1I6OojFk,1722
367
- nonebot_plugin_osubot/osufile/mods/HR.png,sha256=ThRdj6BtUsCUFKgFvdQZtJ0o4kL3rKkMUBT9_LBbrNw,1386
368
- nonebot_plugin_osubot/osufile/mods/HT.png,sha256=ha0iFzpa9V8u8g_439xNHJlKPDIiUGBkDRYKILKnHL4,1381
369
- nonebot_plugin_osubot/osufile/mods/MR.png,sha256=7fXVrXPOMhh0ek1gQy7TKvgMKN2G-p0MFQB5iKUtXZ0,1151
370
- nonebot_plugin_osubot/osufile/mods/NC.png,sha256=94xR0FyljJQO5QubrJVfWaJwNCIOjWstb6CSUP5IkSE,1386
371
- nonebot_plugin_osubot/osufile/mods/NF.png,sha256=frjuacyqTldRXYczCzFzcVQ7LLkw-7KTnHcVHvGajaY,1222
372
- nonebot_plugin_osubot/osufile/mods/PF.png,sha256=J3Cl59CJf04xAergY-ofVTJKahivEO0JFN7v6KH4v0E,1110
373
- nonebot_plugin_osubot/osufile/mods/RX.png,sha256=gc8cWpFv3HZF0GaQN7Kp0Y9T8mlMgz3wY6rymzzkWh4,1519
374
- nonebot_plugin_osubot/osufile/mods/SD.png,sha256=JptCZkXv8kOpIksYimWdC7hRJXShL7NMwY7DiUZuKBQ,1291
375
- nonebot_plugin_osubot/osufile/mods/SO.png,sha256=qKPoP-LXNU3nSVn8e7z2d6LddFOG-v4gbBEUOb6BtXU,1493
376
- nonebot_plugin_osubot/osufile/mods/TD.png,sha256=ZAprUMXNcqs_tXPF0HU34qa_NUZo6U-NemMjVxBOk10,1309
377
- nonebot_plugin_osubot/osufile/mods/V2.png,sha256=Y3ju7KMECnGiECRM1MnZUuuwQqbflkdz6I7XjCCTw2E,1354
401
+ nonebot_plugin_osubot/osufile/mods/AP.png,sha256=Fr1ip8Mxp-4FGInKRNSaEh-UOjjwBmFOn622P3bh7Js,1777
402
+ nonebot_plugin_osubot/osufile/mods/CL.png,sha256=d6umxTJ9Ukxr6qpuK0C_K49eDXpIupk_gLvmCyLulcQ,1595
403
+ nonebot_plugin_osubot/osufile/mods/DT.png,sha256=SKG0ueXlp1LkNBN7jYZLqFgFgAellleag_OTmCq7u_Q,1621
404
+ nonebot_plugin_osubot/osufile/mods/EZ.png,sha256=2v8urESIhNVuYHwfpw2DHjC2VuvuOo_fd0QIV6YpWSY,1303
405
+ nonebot_plugin_osubot/osufile/mods/FI.png,sha256=NPBvNd12oE4zrXtqfmK6swxJ-qe5Ao38edBldzCDnfM,1249
406
+ nonebot_plugin_osubot/osufile/mods/FL.png,sha256=CKx3ITzByhbJ4uDNoZ6c7RpjNcJlicI879pTVTLxvRY,1288
407
+ nonebot_plugin_osubot/osufile/mods/HD.png,sha256=67aJOk_HMuRpwRVu3bTsGOxRAGaMj218YYoQSYxw-RA,2159
408
+ nonebot_plugin_osubot/osufile/mods/HR.png,sha256=OwDFQTPbQIIwxymwGgyoGCS3RTkzPt0tdtk4238CnHc,1389
409
+ nonebot_plugin_osubot/osufile/mods/HT.png,sha256=I7E8Y87rtfsKzto_clVf4GiIu7CHYrP7FGmeZi89oKU,1404
410
+ nonebot_plugin_osubot/osufile/mods/MR.png,sha256=ksEwedL_bEBm34VIBt9IDfBFuB20VBn3C3F4sfyrhTs,1290
411
+ nonebot_plugin_osubot/osufile/mods/NC.png,sha256=CWo_Xkdmgsp1YOi-TamevcNdpYgq_1lAVDXZ5cGFqEQ,1365
412
+ nonebot_plugin_osubot/osufile/mods/NF.png,sha256=7C6rZp7ZbAo1SUC3uHUrd73OY_2Mn7KpofCM4SmGBG0,1634
413
+ nonebot_plugin_osubot/osufile/mods/PF.png,sha256=XbJt5JnqRUktT0kLXkCn6Iv9sLj1TFycQRsOmGnJjRE,1304
414
+ nonebot_plugin_osubot/osufile/mods/RX.png,sha256=tc6MTF1oDcji1P_wuEZjGORa4Ah3GaCQLM9ABatNg00,1265
415
+ nonebot_plugin_osubot/osufile/mods/SD.png,sha256=FQaNUkSCt92kAeEo5GVG4neWMN0TUdC637g8FMWbjuw,1695
416
+ nonebot_plugin_osubot/osufile/mods/SO.png,sha256=Fiz7A8x0MklH9PUsMz9vX9GYOp1p7o9pCcdhsZSmEkI,1512
417
+ nonebot_plugin_osubot/osufile/mods/TD.png,sha256=rWej0qHVNPxQJOztx_AYacYhJHnFlddO8X3xGwSLReQ,1498
418
+ nonebot_plugin_osubot/osufile/mods/V2.png,sha256=pyXx83YcJaimJL6i3DfrX8XdJ_3UmL8RgtP6ua0v7wM,1205
378
419
  nonebot_plugin_osubot/osufile/pfm_ctb.png,sha256=9JJu8J1gR_nQhb1EWOuJUOjNitYK_gcH6MRGiYtvsGI,53451
379
420
  nonebot_plugin_osubot/osufile/pfm_mania.png,sha256=PKlAezcKALo0UMnrYvTCL3pd-oJNEU76qLVPhfDLFdk,52208
380
421
  nonebot_plugin_osubot/osufile/pfm_std.png,sha256=ts7e7IUeoalLuw0Pww0X3trXUpZwnWRsOqdQ1RzcdFM,57032
@@ -396,17 +437,17 @@ nonebot_plugin_osubot/osufile/work/stardiff.png,sha256=mBPOspsqNr1FkDolzTpnyIz-8
396
437
  nonebot_plugin_osubot/osufile/work/stars.png,sha256=zifMmxxjOGzSZAm1tr-3ky_yy18p1bbjgkl3zYRMcp4,305
397
438
  nonebot_plugin_osubot/osufile/work/stars_expertplus.png,sha256=cmfpErs-flPxHEhVmS9H8vy8H7mrChvV_Q4A77oSVFY,517
398
439
  nonebot_plugin_osubot/osufile/work/suppoter.png,sha256=4V4eNhB8_8KIXsQ1jzFyHUkicKPb5LPehoIcri4h8E4,16061
399
- nonebot_plugin_osubot/pp.py,sha256=PSWGLWERr4vVtE9H5D2EBm-_hM5HOU3PQvv1cC4rqmQ,3175
400
- nonebot_plugin_osubot/schema/__init__.py,sha256=io5BqRRNeBUSWPw5VXQav_TMrDN4dsTVpoMzrU9lTCA,468
440
+ nonebot_plugin_osubot/pp.py,sha256=zLKyiNcCFTaH3OE5deiqLxkQeVK261AXQ4d8uqc-3qA,3472
441
+ nonebot_plugin_osubot/schema/__init__.py,sha256=iC4BTSW_uPyH5-1xk3ByYa5kCicnOFWqxhuTmQKn2ik,411
401
442
  nonebot_plugin_osubot/schema/alphaosu.py,sha256=7cJLIwl4X-dshYsXMi8hHgcp7Ly6BiI3pqwXENhMaX0,693
402
443
  nonebot_plugin_osubot/schema/basemodel.py,sha256=aZI1rdOHx-kmMXohazq1s5tYdtR-2WRzfYQATmWd6a4,99
403
444
  nonebot_plugin_osubot/schema/beatmap.py,sha256=UnobfZEHq1V2HG-A4j3BECubO-dB1JzTMA2_QIXttNM,1960
445
+ nonebot_plugin_osubot/schema/beatmapsets.py,sha256=rEbkmZHYXqmRtg9CyV0hzxc5kZFGm9OWoOv_laYripQ,780
404
446
  nonebot_plugin_osubot/schema/match.py,sha256=lR3pGNVR9K_5GZAdOLG6Ki-W3fwJvgMlNhYOzKNE3lg,494
405
447
  nonebot_plugin_osubot/schema/ppysb/__init__.py,sha256=JK2Z4n44gUJPVKdETMJYJ5uIw-4a8T50y6j5n-YrlYM,1375
406
- nonebot_plugin_osubot/schema/sayo_beatmap.py,sha256=lS1PQZ-HvHl0VhkzlI0-pNLeJrLYWVqmKAo6xZr5I2U,959
407
- nonebot_plugin_osubot/schema/score.py,sha256=gxF_RVSUOyj7EF_q3XeHhNj5qg19MW-B1aePjnTmi08,3233
448
+ nonebot_plugin_osubot/schema/score.py,sha256=o32jKDESzFwOFPZnzjKqxNIj0MPUL9mFvBqgaZARHac,3269
408
449
  nonebot_plugin_osubot/schema/user.py,sha256=sxNmqymG_kIVuGuzfchSv9UML6NPG70cqo2_h5xDIpM,2250
409
450
  nonebot_plugin_osubot/utils/__init__.py,sha256=pyv8XxBcCOeQVDj1E4dgvktzcefgQXfKBlarsYGx1sg,815
410
- nonebot_plugin_osubot-6.23.1.dist-info/WHEEL,sha256=B19PGBCYhWaz2p_UjAoRVh767nYQfk14Sn4TpIZ-nfU,87
411
- nonebot_plugin_osubot-6.23.1.dist-info/METADATA,sha256=21rD1niY9PgeEXvIBmEyyDSdS6oUA9Cwh8-BdK4UDTs,4476
412
- nonebot_plugin_osubot-6.23.1.dist-info/RECORD,,
451
+ nonebot_plugin_osubot-6.24.1.dist-info/WHEEL,sha256=B19PGBCYhWaz2p_UjAoRVh767nYQfk14Sn4TpIZ-nfU,87
452
+ nonebot_plugin_osubot-6.24.1.dist-info/METADATA,sha256=AgWa-nFDmhGUDBoZDsF5i7R4BJw1QJ7QxSHReQ3wgAM,4476
453
+ nonebot_plugin_osubot-6.24.1.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