hikari-arc 1.4.0__py3-none-any.whl → 2.1.0__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.
arc/utils/hooks/basic.py CHANGED
@@ -5,7 +5,7 @@ import typing as t
5
5
  import hikari
6
6
 
7
7
  from arc.abc.hookable import HookResult
8
- from arc.context import Context # noqa: TCH001 Needed for DI to work
8
+ from arc.context import Context # noqa: TC001 Needed for DI to work
9
9
  from arc.errors import (
10
10
  BotMissingPermissionsError,
11
11
  DMOnlyError,
@@ -118,9 +118,6 @@ def has_permissions(perms: hikari.Permissions) -> t.Callable[[Context[t.Any]], H
118
118
 
119
119
  def _bot_has_permissions(ctx: Context[t.Any], perms: hikari.Permissions) -> HookResult:
120
120
  """Check if the bot has the specified permissions."""
121
- if ctx.app_permissions is None:
122
- raise GuildOnlyError("This command can only be used in a guild.")
123
-
124
121
  missing_perms = ~ctx.app_permissions & perms
125
122
 
126
123
  if missing_perms is not hikari.Permissions.NONE:
@@ -10,12 +10,12 @@ from arc.utils.ratelimiter import RateLimiter, RateLimiterExhaustedError
10
10
 
11
11
  __all__ = (
12
12
  "LimiterHook",
13
+ "channel_limiter",
14
+ "custom_limiter",
13
15
  "global_limiter",
14
16
  "guild_limiter",
15
- "channel_limiter",
16
- "user_limiter",
17
17
  "member_limiter",
18
- "custom_limiter",
18
+ "user_limiter",
19
19
  )
20
20
 
21
21
 
arc/utils/loops.py CHANGED
@@ -6,7 +6,7 @@ import sys
6
6
  import traceback
7
7
  import typing as t
8
8
 
9
- __all__ = ("IntervalLoop", "CronLoop", "interval_loop", "cron_loop")
9
+ __all__ = ("CronLoop", "IntervalLoop", "cron_loop", "interval_loop")
10
10
 
11
11
  P = t.ParamSpec("P")
12
12
 
@@ -25,7 +25,7 @@ class _LoopBase(abc.ABC, t.Generic[P]):
25
25
  - [`CronLoop`][arc.utils.loops.CronLoop]
26
26
  """
27
27
 
28
- __slots__ = ("_coro", "_task", "_failed", "_stop_next", "_run_on_start")
28
+ __slots__ = ("_coro", "_failed", "_run_on_start", "_stop_next", "_task")
29
29
 
30
30
  def __init__(self, callback: t.Callable[P, t.Awaitable[None]], *, run_on_start: bool = True) -> None:
31
31
  self._coro = callback
arc/utils/ratelimiter.py CHANGED
@@ -117,7 +117,7 @@ class RateLimiter(t.Generic[KeyT]):
117
117
  A callable that returns a key for the ratelimiter bucket.
118
118
  """
119
119
 
120
- __slots__ = ("period", "limit", "_buckets", "_get_key", "_gc_task")
120
+ __slots__ = ("_buckets", "_gc_task", "_get_key", "limit", "period")
121
121
 
122
122
  def __init__(self, period: float, limit: int, *, get_key_with: t.Callable[[KeyT], str]) -> None:
123
123
  self.period: float = period
@@ -1,53 +1,39 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: hikari-arc
3
- Version: 1.4.0
3
+ Version: 2.1.0
4
4
  Summary: A command handler for hikari with a focus on type-safety and correctness.
5
- Home-page: https://github.com/hypergonial/hikari-arc
6
- Author: hypergonial
7
- Author-email: git@hypergonial.com
8
- Maintainer: hypergonial
9
- License: MIT
5
+ Project-URL: Homepage, https://arc.hypergonial.com
6
+ Project-URL: Documentation, https://arc.hypergonial.com
7
+ Project-URL: Repository, https://github.com/hypergonial/hikari-arc
8
+ Project-URL: Issues, https://github.com/hypergonial/hikari-arc/issues
9
+ Project-URL: Changelog, https://arc.hypergonial.com/changelog/
10
+ Author-email: hypergonial <git@hypergonial.com>
11
+ Maintainer-email: hypergonial <git@hypergonial.com>
12
+ License-Expression: MIT
13
+ License-File: LICENSE
10
14
  Classifier: Development Status :: 5 - Production/Stable
11
15
  Classifier: Framework :: AsyncIO
12
16
  Classifier: Intended Audience :: Developers
13
17
  Classifier: Natural Language :: English
14
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
+ Classifier: Programming Language :: Python :: 3 :: Only
15
19
  Classifier: Programming Language :: Python :: 3.10
16
20
  Classifier: Programming Language :: Python :: 3.11
17
21
  Classifier: Programming Language :: Python :: 3.12
18
22
  Classifier: Programming Language :: Python :: 3.13
19
23
  Classifier: Programming Language :: Python :: Implementation :: CPython
20
- Classifier: Programming Language :: Python :: 3 :: Only
21
24
  Classifier: Topic :: Software Development :: Libraries
22
25
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
23
26
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
- Requires-Python: >=3.10.0,<3.14
25
- Description-Content-Type: text/markdown
26
- License-File: LICENSE
27
- Requires-Dist: hikari >=2.0.0
28
- Requires-Dist: alluka <0.4,>=0.3.0
29
- Requires-Dist: attrs >=23.1
30
- Requires-Dist: colorama ; sys_platform=="win32"
27
+ Requires-Python: >=3.10
28
+ Requires-Dist: alluka<0.4,>=0.3.3
29
+ Requires-Dist: attrs>=25.3.0
30
+ Requires-Dist: hikari>=2.2.1
31
31
  Provides-Extra: cron
32
- Requires-Dist: croniter ==3.0.3 ; extra == 'cron'
33
- Requires-Dist: types-croniter ==3.0.3.20240731 ; extra == 'cron'
34
- Provides-Extra: dev
35
- Requires-Dist: ruff ==0.6.9 ; extra == 'dev'
36
- Requires-Dist: pyright ==1.1.369 ; extra == 'dev'
37
- Requires-Dist: nox ==2024.4.15 ; extra == 'dev'
38
- Requires-Dist: typing-extensions ==4.12.2 ; extra == 'dev'
39
- Requires-Dist: pytest ==8.3.2 ; extra == 'dev'
40
- Requires-Dist: pytest-asyncio ==0.24.0 ; extra == 'dev'
41
- Requires-Dist: slotscheck ==0.19.0 ; extra == 'dev'
42
- Provides-Extra: docs
43
- Requires-Dist: mkdocs-material[imaging] ~=9.5.39 ; extra == 'docs'
44
- Requires-Dist: mkdocs ~=1.6.0 ; extra == 'docs'
45
- Requires-Dist: mkdocstrings-python ~=1.11.1 ; extra == 'docs'
46
- Requires-Dist: black ~=24.8.0 ; extra == 'docs'
47
- Requires-Dist: griffe-inherited-docstrings ~=1.0.1 ; extra == 'docs'
48
- Requires-Dist: mkdocs-glightbox ~=0.4.0 ; extra == 'docs'
32
+ Requires-Dist: croniter==5.0.1; extra == 'cron'
33
+ Requires-Dist: types-croniter==5.0.1.20241205; extra == 'cron'
49
34
  Provides-Extra: rest
50
- Requires-Dist: hikari[server] >=2.0.0 ; extra == 'rest'
35
+ Requires-Dist: hikari[server]>=2.2.1; extra == 'rest'
36
+ Description-Content-Type: text/markdown
51
37
 
52
38
  <div align="center">
53
39
  <picture>
@@ -0,0 +1,59 @@
1
+ arc/__init__.py,sha256=rkJuU9fFg1c2xZ6xFx60rzdL6gmkIcjl5KTc42IoIEc,5899
2
+ arc/__main__.py,sha256=ClAG2bqkzmJfKrEMYTVzi0O5--8eY_QFuNAqsMmwVQY,2012
3
+ arc/client.py,sha256=nTu2wqB0En_Y1IkNZAsShCaC8MYtC0m235S8WxrUiTo,19828
4
+ arc/errors.py,sha256=_RLNY-iivsbogHlv_ofSU8TwoIewOGZ_ruf6EKtPvbY,6802
5
+ arc/events.py,sha256=WRXTLH9PBwU4GTu5rZS5AJ4fNxhDgSD9Rx3M-02FcDQ,2782
6
+ arc/extension.py,sha256=UgtORuV7D3_zUHG1LGXrnhHvz8nntxHRncMrxleoPM0,3371
7
+ arc/locale.py,sha256=YTj8MYGc7SRNZjYqk9-9zJbFOBuj2MqOk5jBSvmRcvI,4921
8
+ arc/plugin.py,sha256=AHeiI2hrmgI4_OriKmhInf7vuPaZwAv4CCoxIG-3ScM,9376
9
+ arc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ arc/abc/__init__.py,sha256=zAE5H6MWDNt5XzaDZa63LUG-lBfiusaBfttLQpPMU2o,2277
11
+ arc/abc/client.py,sha256=4vncPA7w0wd-hgtqNu5ry-Bihy-76oSHzPrT09O58XI,54023
12
+ arc/abc/command.py,sha256=Lu1-u8aDIs0JnifubLEOqqDcnoq19bkjpglq_fdCI3A,30330
13
+ arc/abc/concurrency_limiting.py,sha256=Ed3AUb0veY2H85X8nz9qnAPFC9aRpx9dc4xApxzaLwE,4665
14
+ arc/abc/error_handler.py,sha256=MvT6Pl6iCuTyRi8KFQBLzoPJLDS6UcH_nzLtxFmeRHw,3701
15
+ arc/abc/hookable.py,sha256=qDb-PLJcLE8cE49YKQGvNUQ6B2B5ALRcPVssEXeznNw,5484
16
+ arc/abc/limiter.py,sha256=kAPzIcoXcanAFNWIRmdIxelJHT4lb6HVaIwiDcpOdWI,1766
17
+ arc/abc/option.py,sha256=VHMXXXy4y2xTGErFDv47tWA2gDXYbHV4IPE5xFpqh0w,13157
18
+ arc/abc/plugin.py,sha256=xzVFxz-2PEbJxIbarlR-wOuw0IoaPNE14p3FgShMTeI,22589
19
+ arc/command/__init__.py,sha256=Y9L-vVEcDYUpQb4AngH3QjamZY-OtSbdIENBqQ78fA0,2614
20
+ arc/command/message.py,sha256=1aKF-Rfyk-z2T8wdW5paQtnZKaUJTMkSjM_wity1vqQ,6437
21
+ arc/command/slash.py,sha256=jldzFLEcX_jNn6_07Ht4ZvcqrYEBheAGFR_ViE5aMKQ,36193
22
+ arc/command/user.py,sha256=CVGGtLN0zqG4RCcva7dEm_T4Mc67vqEfxSk8W33vHPc,6489
23
+ arc/command/option/__init__.py,sha256=BCNSEHiifoYZdm24zjfIP5POELImLBbtft-8oDxysPI,2218
24
+ arc/command/option/attachment.py,sha256=N9DEVg3zO8hcJbU2fQyJGARfJl1DZQSd_7T5tX3Bxts,3004
25
+ arc/command/option/bool.py,sha256=2rKV60LzAlKVUG4lGyNKP41eWMu5cRFLnNBn_ucdfDE,2902
26
+ arc/command/option/channel.py,sha256=RHGehb2zKEMxW35Y5m18p7oTaXUAJ_ARaMTeinAqNvE,3718
27
+ arc/command/option/float.py,sha256=lBsL7u79yzy92_BGF5__TZYq28TNwYERZlj9A5sTgIY,5142
28
+ arc/command/option/int.py,sha256=m-WtJCFLq6fSbGrucFH3Qko0Gcpe0FRqg3K-pm0izHk,5092
29
+ arc/command/option/mentionable.py,sha256=_mVHoQbI-kxI9oM5IxIwo-P-Yh19qbO5l_2oa2OJxiE,3110
30
+ arc/command/option/role.py,sha256=i-eC7Nj6rIqRyg1bwwXFKB6cZ9OspC9Rjc_kXVa5BoI,2934
31
+ arc/command/option/str.py,sha256=ua-HXYjklptjkL9IXZazzY1lbREPPwydInwJGM6BcDY,5267
32
+ arc/command/option/user.py,sha256=Qf9dqqmsSPB-yBjT4qAupKRfF1UHh9P3rKXZnRahFYE,2922
33
+ arc/command/option/custom/__init__.py,sha256=dffcEAj7UnjNI1LUuKOCyEEu23AeCFXQY3ay3XKArhQ,334
34
+ arc/command/option/custom/color.py,sha256=eBO85edOVztUu_m5kdvVGm0XYUVl9bpmWYTWizzOnTo,3474
35
+ arc/command/option/custom/emoji.py,sha256=YcgZeGCDUDRavmacw9OSOo8GD5ChyT1K7a3qHPqvbZg,3302
36
+ arc/command/option/custom/member.py,sha256=Jjn0ZWex6fv9x1iSUqcyFSAr90Oq8cK6OFCIQcr5HHA,3338
37
+ arc/context/__init__.py,sha256=5M-6ZkBv3pJf3_TY8ckzcAXIxVh-5VgXxoRjPvuy_Go,1303
38
+ arc/context/autocomplete.py,sha256=lBPFZWW1XSFPndo0uz8Q3vgovNelrLWNU5ks059zORY,4423
39
+ arc/context/base.py,sha256=U78_5LeHK986k5pZ9Tp0xx3ySQ2Ojilt068zfp1zFzI,42541
40
+ arc/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ arc/internal/__init__.py,sha256=vKFwSbAXp509-QtHo42xkv4sfONNhuW5foSxesrNPUc,1261
42
+ arc/internal/about.py,sha256=ksMs_fWarWOxJygC9gj38ee7YvJos78P6vOauWbLlKY,1171
43
+ arc/internal/deprecation.py,sha256=Lnirv1z_oj6QJvbnd38TwHQnhHhFD2rTqqvH96pxiWE,2204
44
+ arc/internal/options.py,sha256=4Z56tG7gxpMR4wCgno85dD23-62GfFnidZsFlHvYp7c,3658
45
+ arc/internal/sigparse.py,sha256=-Arw1lvoHJzlr53ydk8PvNQU0dSOXGA5dQ1r1GL3EMk,13613
46
+ arc/internal/sync.py,sha256=EmUDMgeRENAy7SJOXYhPCxmIoIcGy0eVxagd9ewdAys,12803
47
+ arc/internal/types.py,sha256=NXemzM6cR2pH2vV9CCr6CSZFJZNY_yaovzNifppUkUA,4365
48
+ arc/internal/version.py,sha256=Yvt6wKgB_kjlGlSxETyjyBehowPaR7UAMlcUUtR7wzI,2201
49
+ arc/utils/__init__.py,sha256=vAL596p5kgY-qh3sHTizO-aJrqYXlKSnGaPP_tM1e9g,2334
50
+ arc/utils/concurrency_limiter.py,sha256=UugVZWelKCGUAhNPofLnV1R-eDeCXHcncVhF92N7WZU,12959
51
+ arc/utils/loops.py,sha256=1t9MbbYXWNIIdYAS2y2JzBgdDjx-iG9VDp5jo3D9VuE,14009
52
+ arc/utils/ratelimiter.py,sha256=tnFORqGerByEiBGesiRGO19NSjCBXTzvDhkLb8Of4yU,9477
53
+ arc/utils/hooks/__init__.py,sha256=llFi42mb-LH9VS0Ah9Z7E-bZq4Wneb2vHwY1LTFcEUI,515
54
+ arc/utils/hooks/basic.py,sha256=5dl3lQ--Sytn9CdlDntDvTepFBOuFngC8J4buDsd6hY,5790
55
+ arc/utils/hooks/limiters.py,sha256=64PyJHPIii2R9cbHA9MIOCfkIg99lGOGWrhGNuP5jHE,7490
56
+ hikari_arc-2.1.0.dist-info/METADATA,sha256=gBBrq50WqP5bWPLWxIyIgGvhq7JPlndBOW1v58-PccM,5447
57
+ hikari_arc-2.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
58
+ hikari_arc-2.1.0.dist-info/licenses/LICENSE,sha256=q_osUjCCfQVI7zzgteLMZ-RlhXlB4rqQE8I0DGh7ur4,1076
59
+ hikari_arc-2.1.0.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -1,60 +0,0 @@
1
- arc/__init__.py,sha256=JPwNv9HgqQpzA3QdbDmU3BLVWoc5UrMySzAksYwkq8E,6065
2
- arc/__main__.py,sha256=ClAG2bqkzmJfKrEMYTVzi0O5--8eY_QFuNAqsMmwVQY,2012
3
- arc/client.py,sha256=NyuXMmm087SggW82Oekw-VjQ4LhqgeBJG2qhl7SThy4,17850
4
- arc/errors.py,sha256=_RLNY-iivsbogHlv_ofSU8TwoIewOGZ_ruf6EKtPvbY,6802
5
- arc/events.py,sha256=WRXTLH9PBwU4GTu5rZS5AJ4fNxhDgSD9Rx3M-02FcDQ,2782
6
- arc/extension.py,sha256=UgtORuV7D3_zUHG1LGXrnhHvz8nntxHRncMrxleoPM0,3371
7
- arc/locale.py,sha256=nEKKQi-oKdU8VZQdWdFTL-tNECwhtTVv3I3vTsU_1f8,4921
8
- arc/plugin.py,sha256=8-TGlfxPUYy6uRr-o_LXYD4t5CnQ1lQvQ0psGkkI6L0,8622
9
- arc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- arc/abc/__init__.py,sha256=J9KxcN9gHHKW_GDrJD_5fu76Ya6l4XvPHe0Vdqza0Pk,2277
11
- arc/abc/client.py,sha256=i9Zrj_DwIpfzPf1SjLvpRXF2q1WkhyJnmoWUX-BV2mc,54109
12
- arc/abc/command.py,sha256=u2wjx4PHFWlCFz2OyuMNOUSCf5l0Y1rn0d8yjVPtGC0,28462
13
- arc/abc/concurrency_limiting.py,sha256=Ed3AUb0veY2H85X8nz9qnAPFC9aRpx9dc4xApxzaLwE,4665
14
- arc/abc/error_handler.py,sha256=MvT6Pl6iCuTyRi8KFQBLzoPJLDS6UcH_nzLtxFmeRHw,3701
15
- arc/abc/hookable.py,sha256=qDb-PLJcLE8cE49YKQGvNUQ6B2B5ALRcPVssEXeznNw,5484
16
- arc/abc/limiter.py,sha256=kAPzIcoXcanAFNWIRmdIxelJHT4lb6HVaIwiDcpOdWI,1766
17
- arc/abc/option.py,sha256=1kmFw_cM2pPy-3nR1vHsoL1vi2ZjMl-G7Pkpd8xJwYo,13157
18
- arc/abc/plugin.py,sha256=VtR6qcjF3QUlKWHinp8Z6xK2NSe-Pq0jPaERmn1erl0,19700
19
- arc/command/__init__.py,sha256=McEwPGb2lAgaE_E_qbdMLyiQEeoMd1U5hcSRqsAgVuU,2614
20
- arc/command/message.py,sha256=P7UXhs3MGca4FKAvaMDPAKyQG8l0ztoU9DI6aCoD3JM,5944
21
- arc/command/slash.py,sha256=XkLkgCthgpcRXpxnnpE6PAb2nU1YxVWNOxUYrbBVrTI,35491
22
- arc/command/user.py,sha256=qQnaVsb3sLvhAT5ddSUIx5wvuriZWfL-hYtJW4xlWh8,5996
23
- arc/command/option/__init__.py,sha256=wsfMPnRe-zTdOd1xPd562GsAn9LDGmihll5wk8BJzKQ,2218
24
- arc/command/option/attachment.py,sha256=N9DEVg3zO8hcJbU2fQyJGARfJl1DZQSd_7T5tX3Bxts,3004
25
- arc/command/option/bool.py,sha256=2rKV60LzAlKVUG4lGyNKP41eWMu5cRFLnNBn_ucdfDE,2902
26
- arc/command/option/channel.py,sha256=RHGehb2zKEMxW35Y5m18p7oTaXUAJ_ARaMTeinAqNvE,3718
27
- arc/command/option/float.py,sha256=892XO8dd3IS3gJK0FL9tQQAoWcju-iU_nLqGBPSgaTs,5142
28
- arc/command/option/int.py,sha256=cjhrI8UueYqPpEfaxQTh7Fb6YlDpztAgi3MilhuwktY,5092
29
- arc/command/option/mentionable.py,sha256=_mVHoQbI-kxI9oM5IxIwo-P-Yh19qbO5l_2oa2OJxiE,3110
30
- arc/command/option/role.py,sha256=i-eC7Nj6rIqRyg1bwwXFKB6cZ9OspC9Rjc_kXVa5BoI,2934
31
- arc/command/option/str.py,sha256=3Qr9Y2uoyrUNGeJL49Jjh9ps12_nbOHioDEVWB8uSac,5267
32
- arc/command/option/user.py,sha256=Qf9dqqmsSPB-yBjT4qAupKRfF1UHh9P3rKXZnRahFYE,2922
33
- arc/command/option/custom/__init__.py,sha256=4XPgx8_kg7M-_nyUTes3qibMqY-ikw8gOy1AP443VWs,334
34
- arc/command/option/custom/color.py,sha256=eBO85edOVztUu_m5kdvVGm0XYUVl9bpmWYTWizzOnTo,3474
35
- arc/command/option/custom/emoji.py,sha256=YcgZeGCDUDRavmacw9OSOo8GD5ChyT1K7a3qHPqvbZg,3302
36
- arc/command/option/custom/member.py,sha256=Jjn0ZWex6fv9x1iSUqcyFSAr90Oq8cK6OFCIQcr5HHA,3338
37
- arc/context/__init__.py,sha256=MOc71Up8gUAN8WfZkIzu3lDQhwZlwZbWFYWy3V7yCVQ,1303
38
- arc/context/autocomplete.py,sha256=YOu6leCKH0mfGVj0vmo4kj1_cWUM6c_vjgooymQ6sYY,3797
39
- arc/context/base.py,sha256=BZ5God4NWyEuELIKhUrzfkV8FPFzxjADEW5CamPqfY8,40092
40
- arc/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- arc/internal/__init__.py,sha256=kZKBSFOkaDLe5kBvxiCQ-MWRPUZ_GBZdWwINPMkSbvo,1436
42
- arc/internal/about.py,sha256=3vEV688_BuCInq4NJNxuWRWgiGMm8lQN_wq32biAMKs,1414
43
- arc/internal/deprecation.py,sha256=Lnirv1z_oj6QJvbnd38TwHQnhHhFD2rTqqvH96pxiWE,2204
44
- arc/internal/options.py,sha256=4Z56tG7gxpMR4wCgno85dD23-62GfFnidZsFlHvYp7c,3658
45
- arc/internal/sigparse.py,sha256=-Arw1lvoHJzlr53ydk8PvNQU0dSOXGA5dQ1r1GL3EMk,13613
46
- arc/internal/sync.py,sha256=ApiHD66Gi8BOSUcEKRiZ_n03u9MNkftNjSDZz5Wk1_M,12589
47
- arc/internal/types.py,sha256=NXemzM6cR2pH2vV9CCr6CSZFJZNY_yaovzNifppUkUA,4365
48
- arc/internal/version.py,sha256=bZFtIbhehFhsGU2yyTVHb8YIvCYhp9iyueTalCKFtsg,2201
49
- arc/utils/__init__.py,sha256=vc8QYVVVOe95_kfWWb5lc8dFkJrs5SnpIJta_t0l3UI,2334
50
- arc/utils/concurrency_limiter.py,sha256=YocMFU0sajLWnsajzZ7T2Qvpd9PKjc2koDqflQTJtPM,12959
51
- arc/utils/loops.py,sha256=CqRe6tpgzdyvD3POHiSoXATDhPklalMtswvGhcBt964,14009
52
- arc/utils/ratelimiter.py,sha256=YPETOjQOga8RazYoK3Ghueh2TsOdfkH7WM58dr3ybcU,9477
53
- arc/utils/hooks/__init__.py,sha256=pXlAQ1zGxQV-bBeeL8sKRkUyO1PmEazT_a_XKtf7GFA,515
54
- arc/utils/hooks/basic.py,sha256=PushSBY03A8Yq60uTRyQKLL74FUqF0DmumzXAW8kaGk,5902
55
- arc/utils/hooks/limiters.py,sha256=D0brZBnLqhUF7ycs16JllsW6gYqdlHnNOISH8iMBWkw,7490
56
- hikari_arc-1.4.0.dist-info/LICENSE,sha256=q_osUjCCfQVI7zzgteLMZ-RlhXlB4rqQE8I0DGh7ur4,1076
57
- hikari_arc-1.4.0.dist-info/METADATA,sha256=FrmWNIzKJ3sd20VqLRMQmmlRnxoruzhuco-ka9vfIME,6046
58
- hikari_arc-1.4.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
59
- hikari_arc-1.4.0.dist-info/top_level.txt,sha256=kTs_REfGfSlIT6Hq_kxH-MtDlOO6LPwFwkOoNdDCnJ4,4
60
- hikari_arc-1.4.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- arc