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.
Files changed (97) hide show
  1. nonebot_plugin_osubot/api.py +13 -7
  2. nonebot_plugin_osubot/config.py +10 -10
  3. nonebot_plugin_osubot/draw/bmap.py +20 -22
  4. nonebot_plugin_osubot/draw/bp.py +3 -13
  5. nonebot_plugin_osubot/draw/catch_preview.py +2 -16
  6. nonebot_plugin_osubot/draw/echarts.py +8 -1
  7. nonebot_plugin_osubot/draw/info.py +59 -207
  8. nonebot_plugin_osubot/draw/info_templates/index.html +507 -0
  9. nonebot_plugin_osubot/draw/info_templates/output.css +2 -0
  10. nonebot_plugin_osubot/draw/map.py +9 -11
  11. nonebot_plugin_osubot/draw/osu_preview.py +50 -0
  12. nonebot_plugin_osubot/draw/osu_preview_templates/css/style.css +258 -0
  13. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/README.md +109 -0
  14. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js +3 -0
  15. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js.map +1 -0
  16. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js +3 -0
  17. nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js.map +1 -0
  18. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/beatmap.js +211 -0
  19. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/hitobject.js +29 -0
  20. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/point.js +55 -0
  21. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/scroll.js +45 -0
  22. nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/timingpoint.js +35 -0
  23. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/LegacyRandom.js +81 -0
  24. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/PalpableCatchHitObject.js +53 -0
  25. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/bananashower.js +33 -0
  26. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/catch.js +211 -0
  27. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/fruit.js +21 -0
  28. nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/juicestream.js +176 -0
  29. nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/hitnote.js +21 -0
  30. nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/holdnote.js +37 -0
  31. nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/mania.js +164 -0
  32. nonebot_plugin_osubot/draw/osu_preview_templates/js/preview.js +61 -0
  33. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/bezier2.js +33 -0
  34. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/catmullcurve.js +34 -0
  35. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/centripetalcatmullrom.js +30 -0
  36. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/circumstancedcircle.js +47 -0
  37. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curve.js +25 -0
  38. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curvetype.js +17 -0
  39. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/equaldistancemulticurve.js +70 -0
  40. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/linearbezier.js +40 -0
  41. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/hitcircle.js +85 -0
  42. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/slider.js +120 -0
  43. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/spinner.js +56 -0
  44. nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/standard.js +170 -0
  45. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/donkat.js +40 -0
  46. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/drumroll.js +34 -0
  47. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/shaker.js +58 -0
  48. nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/taiko.js +120 -0
  49. nonebot_plugin_osubot/draw/osu_preview_templates/js/util.js +61 -0
  50. nonebot_plugin_osubot/draw/osu_preview_templates/pic.html +110 -0
  51. nonebot_plugin_osubot/draw/rating.py +6 -3
  52. nonebot_plugin_osubot/draw/score.py +23 -81
  53. nonebot_plugin_osubot/draw/taiko_preview.py +14 -13
  54. nonebot_plugin_osubot/draw/templates/bpa_chart.html +1 -1
  55. nonebot_plugin_osubot/draw/utils.py +162 -16
  56. nonebot_plugin_osubot/file.py +184 -31
  57. nonebot_plugin_osubot/mania/__init__.py +9 -10
  58. nonebot_plugin_osubot/matcher/__init__.py +2 -0
  59. nonebot_plugin_osubot/matcher/bp_analyze.py +14 -9
  60. nonebot_plugin_osubot/matcher/guess.py +250 -294
  61. nonebot_plugin_osubot/matcher/map_convert.py +21 -13
  62. nonebot_plugin_osubot/matcher/medal.py +1 -1
  63. nonebot_plugin_osubot/matcher/osudl.py +5 -4
  64. nonebot_plugin_osubot/matcher/pr.py +0 -4
  65. nonebot_plugin_osubot/matcher/preview.py +10 -3
  66. nonebot_plugin_osubot/matcher/recommend.py +7 -12
  67. nonebot_plugin_osubot/mods.py +62 -61
  68. nonebot_plugin_osubot/network/first_response.py +1 -1
  69. nonebot_plugin_osubot/osufile/mods/AP.png +0 -0
  70. nonebot_plugin_osubot/osufile/mods/CL.png +0 -0
  71. nonebot_plugin_osubot/osufile/mods/DT.png +0 -0
  72. nonebot_plugin_osubot/osufile/mods/EZ.png +0 -0
  73. nonebot_plugin_osubot/osufile/mods/FI.png +0 -0
  74. nonebot_plugin_osubot/osufile/mods/FL.png +0 -0
  75. nonebot_plugin_osubot/osufile/mods/HD.png +0 -0
  76. nonebot_plugin_osubot/osufile/mods/HR.png +0 -0
  77. nonebot_plugin_osubot/osufile/mods/HT.png +0 -0
  78. nonebot_plugin_osubot/osufile/mods/MR.png +0 -0
  79. nonebot_plugin_osubot/osufile/mods/NC.png +0 -0
  80. nonebot_plugin_osubot/osufile/mods/NF.png +0 -0
  81. nonebot_plugin_osubot/osufile/mods/PF.png +0 -0
  82. nonebot_plugin_osubot/osufile/mods/RX.png +0 -0
  83. nonebot_plugin_osubot/osufile/mods/SD.png +0 -0
  84. nonebot_plugin_osubot/osufile/mods/SO.png +0 -0
  85. nonebot_plugin_osubot/osufile/mods/TD.png +0 -0
  86. nonebot_plugin_osubot/osufile/mods/V2.png +0 -0
  87. nonebot_plugin_osubot/pp.py +7 -0
  88. nonebot_plugin_osubot/schema/__init__.py +0 -2
  89. nonebot_plugin_osubot/schema/beatmapsets.py +42 -0
  90. nonebot_plugin_osubot/schema/draw_info.py +54 -0
  91. nonebot_plugin_osubot/schema/score.py +2 -0
  92. nonebot_plugin_osubot/schema/user.py +1 -0
  93. {nonebot_plugin_osubot-6.22.1.dist-info → nonebot_plugin_osubot-6.26.4.dist-info}/METADATA +18 -17
  94. {nonebot_plugin_osubot-6.22.1.dist-info → nonebot_plugin_osubot-6.26.4.dist-info}/RECORD +95 -52
  95. nonebot_plugin_osubot-6.26.4.dist-info/WHEEL +4 -0
  96. nonebot_plugin_osubot/schema/sayo_beatmap.py +0 -59
  97. 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=0o6Gp_4YzVtYDDRJYoIl4yTW8gy4eSY0LY8COkzkOBo,16363
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=Ub2s5Ny09-d1ZwT6x8cirB6zWy0brtO-oZV3W0qEM5Q,311
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=GzEiUEkcwdX6ixZ-qmM8TQQf0imD8taur3eX4lJ5wVg,5128
9
- nonebot_plugin_osubot/draw/bp.py,sha256=_l7UdicosUwD6HdaI5U0AWgJBwWNAfJqvzC9DzXz_Pg,9172
10
- nonebot_plugin_osubot/draw/catch_preview.py,sha256=uSYoTqfdxRy4anpH9Uhj8NntPo008pzw1t6xRMTBBkI,1397
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=OzL_397yWrDAIXsEWf72hAiqdIUBz1D182cli6ORD6s,1037
41
- nonebot_plugin_osubot/draw/info.py,sha256=i2YcJmSdTpwhZl_nDe7GJv4jQTB8_9oBfpq2Zw2hwo0,11162
42
- nonebot_plugin_osubot/draw/map.py,sha256=4M8xRd0dIbC5g1s8I4eTZ3vRglM6r_TSznFOZ62K2wk,8654
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/rating.py,sha256=pA7mGLI4IujmYB6kQf_tSkR7mZGpUAVLRLyaAsZhqTM,20397
45
- nonebot_plugin_osubot/draw/score.py,sha256=z7HNBOFVHaarbeo2FK8vIpoGVhu47E2BgCqG_axTwSo,29610
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=tqhuHSdxUJEuXqKHMJDeSLdusuJhSnMMiaG5FbUnaJw,11441
48
- nonebot_plugin_osubot/draw/templates/bpa_chart.html,sha256=R-fO46HtmC4y3brMFGz6MQkna8ke7WGHVIgUnvcY248,7012
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=6QDbByPQZCxI0k_i5MsExyWZ-sHgJUw6nEWLv85IgLY,15826
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=GhG54EdVsxFf8_8GZOPh4YGvw9iw5bAX9JFz4Mg4kMg,4379
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=XRPn563jDJiPohFekcoFFCqCJYznb-6uORneioZv4xI,5534
59
- nonebot_plugin_osubot/matcher/__init__.py,sha256=yID7QcdQF6_Mouwbej3JwYUBbKSU3VQdrjq6B1Fz9P8,1331
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=L2ccAi7TQvpD036DyA27D8wuiqBBkcfLT0ldk_Apv8w,3820
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=QmD-a88pnPfSSBAvSpD2tlHDGMRpYWqtxfNuLsHuBYM,24144
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=YfR-_u5F_GCdn2mv9ZvMEpfxTc63f9nmihIUdu54eN8,5716
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=OlJTwBvh0kGx_KWhjksozI910c8QdaVFBgtnwqLVyLU,2965
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=yLEblYnLprTf2T00FiRWJ8CuCd0IHyUY9Ka68yAKOXo,872
74
- nonebot_plugin_osubot/matcher/pr.py,sha256=WAVXsercYxsB7L576QjaBmUz4zoMcpC73BnlrIEWMfg,5193
75
- nonebot_plugin_osubot/matcher/preview.py,sha256=n9wgdNG9SF_JQ78nShTsTElJkBDJQr67DRc8Q9sVcCo,1896
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=1LcjACkiPdZV0VqXbZx-oTytKr8lYxg1q0zZuXowWTc,2678
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=vxIWYX0HwTxetPAHWZK5ojEMfqV9HFlWT0YC4Yncgb8,1402
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=zETRc6g0AG8ExLyHZTLUl7uzUCdUVIL0IfxvdEtCPt0,932
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=9qH_KtcpqmMquU0PxIgCX1MG01Vo4MXSFibuE-8_Td8,1777
359
- nonebot_plugin_osubot/osufile/mods/CL.png,sha256=Mqsi9M0w7ouhN31o6alizwnOUCy8CVJw49RllH6zf74,2466
360
- nonebot_plugin_osubot/osufile/mods/DT.png,sha256=AoH8eGUdM9d0UF9Y-YIXlXp5FBHMCLMwxaFiHNPmDIo,1531
361
- nonebot_plugin_osubot/osufile/mods/EZ.png,sha256=TQYpPexTrYpNSVq5QyuiFeQeN7v720_uZLipHYVKDL0,1411
362
- nonebot_plugin_osubot/osufile/mods/FI.png,sha256=jNX9pJeJIL8VlHXEBNNqKJUw_CabIm9jRU2TgwmyLzw,978
363
- nonebot_plugin_osubot/osufile/mods/FL.png,sha256=Kv4lCJ8kYDW2xq6xAwrEJlPL2V7DvqbBcKcgWK_WPRQ,1111
364
- nonebot_plugin_osubot/osufile/mods/HD.png,sha256=BIYpJhBrdGOuW03EQHq0r1Jz_fLuMx1ezEA1I6OojFk,1722
365
- nonebot_plugin_osubot/osufile/mods/HR.png,sha256=ThRdj6BtUsCUFKgFvdQZtJ0o4kL3rKkMUBT9_LBbrNw,1386
366
- nonebot_plugin_osubot/osufile/mods/HT.png,sha256=ha0iFzpa9V8u8g_439xNHJlKPDIiUGBkDRYKILKnHL4,1381
367
- nonebot_plugin_osubot/osufile/mods/MR.png,sha256=7fXVrXPOMhh0ek1gQy7TKvgMKN2G-p0MFQB5iKUtXZ0,1151
368
- nonebot_plugin_osubot/osufile/mods/NC.png,sha256=94xR0FyljJQO5QubrJVfWaJwNCIOjWstb6CSUP5IkSE,1386
369
- nonebot_plugin_osubot/osufile/mods/NF.png,sha256=frjuacyqTldRXYczCzFzcVQ7LLkw-7KTnHcVHvGajaY,1222
370
- nonebot_plugin_osubot/osufile/mods/PF.png,sha256=J3Cl59CJf04xAergY-ofVTJKahivEO0JFN7v6KH4v0E,1110
371
- nonebot_plugin_osubot/osufile/mods/RX.png,sha256=gc8cWpFv3HZF0GaQN7Kp0Y9T8mlMgz3wY6rymzzkWh4,1519
372
- nonebot_plugin_osubot/osufile/mods/SD.png,sha256=JptCZkXv8kOpIksYimWdC7hRJXShL7NMwY7DiUZuKBQ,1291
373
- nonebot_plugin_osubot/osufile/mods/SO.png,sha256=qKPoP-LXNU3nSVn8e7z2d6LddFOG-v4gbBEUOb6BtXU,1493
374
- nonebot_plugin_osubot/osufile/mods/TD.png,sha256=ZAprUMXNcqs_tXPF0HU34qa_NUZo6U-NemMjVxBOk10,1309
375
- nonebot_plugin_osubot/osufile/mods/V2.png,sha256=Y3ju7KMECnGiECRM1MnZUuuwQqbflkdz6I7XjCCTw2E,1354
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=PSWGLWERr4vVtE9H5D2EBm-_hM5HOU3PQvv1cC4rqmQ,3175
398
- nonebot_plugin_osubot/schema/__init__.py,sha256=io5BqRRNeBUSWPw5VXQav_TMrDN4dsTVpoMzrU9lTCA,468
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/sayo_beatmap.py,sha256=lS1PQZ-HvHl0VhkzlI0-pNLeJrLYWVqmKAo6xZr5I2U,959
405
- nonebot_plugin_osubot/schema/score.py,sha256=uqIKLKgnvnQKuJBFcmmioKeiU4ThG6uKsxMFHRov_dA,3189
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.22.1.dist-info/WHEEL,sha256=B19PGBCYhWaz2p_UjAoRVh767nYQfk14Sn4TpIZ-nfU,87
409
- nonebot_plugin_osubot-6.22.1.dist-info/METADATA,sha256=ZN_77-BBWGsr45EC7w82GvWFWGaTAj0rFyDAKlaQj_w,4476
410
- nonebot_plugin_osubot-6.22.1.dist-info/RECORD,,
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,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.9.8
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -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
@@ -1,4 +0,0 @@
1
- Wheel-Version: 1.0
2
- Generator: pdm-pep517 1.1.4
3
- Root-Is-Purelib: true
4
- Tag: py3-none-any