hikari-arc 1.3.4__py3-none-any.whl → 2.0.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/__init__.py CHANGED
@@ -26,32 +26,32 @@ from .loops import CronLoop, IntervalLoop, cron_loop, interval_loop
26
26
  from .ratelimiter import RateLimiter, RateLimiterExhaustedError
27
27
 
28
28
  __all__ = (
29
- "guild_only",
30
- "owner_only",
31
- "dm_only",
32
- "has_permissions",
33
- "bot_has_permissions",
34
- "global_limiter",
35
- "guild_limiter",
36
- "user_limiter",
37
- "member_limiter",
38
- "channel_limiter",
39
- "custom_limiter",
29
+ "CommandConcurrencyLimiter",
30
+ "ConcurrencyLimiter",
31
+ "CronLoop",
32
+ "IntervalLoop",
40
33
  "LimiterHook",
41
34
  "RateLimiter",
42
35
  "RateLimiterExhaustedError",
43
- "IntervalLoop",
44
- "interval_loop",
45
- "CronLoop",
36
+ "bot_has_permissions",
37
+ "channel_concurrency",
38
+ "channel_limiter",
46
39
  "cron_loop",
47
- "CommandConcurrencyLimiter",
48
- "ConcurrencyLimiter",
40
+ "custom_concurrency",
41
+ "custom_limiter",
42
+ "dm_only",
49
43
  "global_concurrency",
44
+ "global_limiter",
50
45
  "guild_concurrency",
51
- "channel_concurrency",
52
- "user_concurrency",
46
+ "guild_limiter",
47
+ "guild_only",
48
+ "has_permissions",
49
+ "interval_loop",
53
50
  "member_concurrency",
54
- "custom_concurrency",
51
+ "member_limiter",
52
+ "owner_only",
53
+ "user_concurrency",
54
+ "user_limiter",
55
55
  )
56
56
 
57
57
  # MIT License
@@ -9,14 +9,14 @@ from arc.context.base import Context
9
9
  from arc.internal.types import ClientT
10
10
 
11
11
  __all__ = (
12
- "ConcurrencyLimiter",
13
12
  "CommandConcurrencyLimiter",
13
+ "ConcurrencyLimiter",
14
+ "channel_concurrency",
15
+ "custom_concurrency",
14
16
  "global_concurrency",
15
17
  "guild_concurrency",
16
- "channel_concurrency",
17
- "user_concurrency",
18
18
  "member_concurrency",
19
- "custom_concurrency",
19
+ "user_concurrency",
20
20
  )
21
21
 
22
22
  KeyT = t.TypeVar("KeyT")
@@ -32,7 +32,7 @@ class _BoundedSemaphore(asyncio.BoundedSemaphore):
32
32
  class _Bucket(t.Generic[KeyT]):
33
33
  """Handles the concurrency limiting of a single item. (E.g. a single user or a channel)."""
34
34
 
35
- __slots__ = ("_key", "_max_concurrent", "_semaphore", "_limiter")
35
+ __slots__ = ("_key", "_limiter", "_max_concurrent", "_semaphore")
36
36
 
37
37
  def __init__(self, key: str, max_concurrent: int, limiter: ConcurrencyLimiter[KeyT]) -> None:
38
38
  self._key = key
@@ -74,7 +74,7 @@ class _Bucket(t.Generic[KeyT]):
74
74
 
75
75
 
76
76
  class _ConcurrencyLimiterContextManager(t.Generic[KeyT]):
77
- __slots__ = ("_limiter", "_item")
77
+ __slots__ = ("_item", "_limiter")
78
78
 
79
79
  def __init__(self, limiter: ConcurrencyLimiter[KeyT], item: KeyT) -> None:
80
80
  self._limiter = limiter
@@ -122,7 +122,7 @@ class ConcurrencyLimiter(t.Generic[KeyT]):
122
122
  - [`custom_concurrency()`][arc.utils.concurrency_limiter.custom_concurrency]
123
123
  """
124
124
 
125
- __slots__: t.Sequence[str] = ("_capacity", "_buckets", "_get_key")
125
+ __slots__: t.Sequence[str] = ("_buckets", "_capacity", "_get_key")
126
126
 
127
127
  def __init__(self, capacity: int, *, get_key_with: t.Callable[[KeyT], str]) -> None:
128
128
  self._capacity = capacity
@@ -10,16 +10,16 @@ from .limiters import (
10
10
  )
11
11
 
12
12
  __all__ = (
13
- "guild_only",
14
- "owner_only",
15
- "dm_only",
16
- "has_permissions",
13
+ "LimiterHook",
17
14
  "bot_has_permissions",
15
+ "channel_limiter",
16
+ "custom_limiter",
17
+ "dm_only",
18
18
  "global_limiter",
19
19
  "guild_limiter",
20
- "channel_limiter",
21
- "user_limiter",
20
+ "guild_only",
21
+ "has_permissions",
22
22
  "member_limiter",
23
- "custom_limiter",
24
- "LimiterHook",
23
+ "owner_only",
24
+ "user_limiter",
25
25
  )
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,
@@ -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,54 +1,49 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: hikari-arc
3
- Version: 1.3.4
3
+ Version: 2.0.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
22
+ Classifier: Programming Language :: Python :: 3.13
18
23
  Classifier: Programming Language :: Python :: Implementation :: CPython
19
- Classifier: Programming Language :: Python :: 3 :: Only
20
24
  Classifier: Topic :: Software Development :: Libraries
21
25
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
22
26
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
- Requires-Python: >=3.10.0,<3.13
24
- Description-Content-Type: text/markdown
25
- License-File: LICENSE
26
- Requires-Dist: hikari >=2.0.0.dev122
27
- Requires-Dist: alluka <0.4,>=0.3.0
28
- Requires-Dist: attrs >=23.1
29
- 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.0
30
31
  Provides-Extra: cron
31
- Requires-Dist: croniter ==2.0.5 ; extra == 'cron'
32
- Requires-Dist: types-croniter ==2.0.0.20240423 ; extra == 'cron'
33
- Provides-Extra: dev
34
- Requires-Dist: ruff ==0.4.6 ; extra == 'dev'
35
- Requires-Dist: pyright ==1.1.365 ; extra == 'dev'
36
- Requires-Dist: nox ==2024.4.15 ; extra == 'dev'
37
- Requires-Dist: typing-extensions ==4.12.0 ; extra == 'dev'
38
- Requires-Dist: pytest ==8.2.1 ; extra == 'dev'
39
- Requires-Dist: pytest-asyncio ==0.23.7 ; extra == 'dev'
40
- Requires-Dist: slotscheck ==0.19.0 ; extra == 'dev'
41
- Provides-Extra: docs
42
- Requires-Dist: mkdocs-material[imaging] ~=9.5.25 ; extra == 'docs'
43
- Requires-Dist: mkdocs ~=1.6.0 ; extra == 'docs'
44
- Requires-Dist: mkdocstrings-python ~=1.10.3 ; extra == 'docs'
45
- Requires-Dist: black ~=24.4.2 ; extra == 'docs'
46
- Requires-Dist: griffe-inherited-docstrings ~=1.0.0 ; extra == 'docs'
47
- 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'
48
34
  Provides-Extra: rest
49
- Requires-Dist: hikari[server] >=2.0.0.dev122 ; extra == 'rest'
35
+ Requires-Dist: hikari[server]>=2.2.0; extra == 'rest'
36
+ Description-Content-Type: text/markdown
50
37
 
51
- # hikari-arc
38
+ <div align="center">
39
+ <picture>
40
+ <source media="(prefers-color-scheme: dark)" srcset="./docs/assets/branding/composed-darkmode.svg">
41
+ <source media="(prefers-color-scheme: light)" srcset="./docs/assets/branding/composed-lightmode.svg">
42
+ <img alt="The arc logo" src="./docs/assets/branding/composed-lightmode.svg" width="30%">
43
+ </picture>
44
+ </div>
45
+
46
+ ---
52
47
 
53
48
  <div align="center">
54
49
 
@@ -120,6 +115,8 @@ See [Contributing](./CONTRIBUTING.md).
120
115
  - [`Tanjun`](https://github.com/FasterSpeeding/Tanjun) - For the idea of using `typing.Annotated` and [dependency injection](https://arc.hypergonial.com/guides/dependency_injection/) in a command handler. `arc` also uses the same dependency injection library, [`Alluka`](https://github.com/FasterSpeeding/Alluka), under the hood.
121
116
  - [`hikari-crescent`](https://github.com/hikari-crescent/hikari-crescent) The design of [hooks](https://arc.hypergonial.com/guides/hooks/) is largely inspired by `crescent`.
122
117
  - [`FastAPI`](https://github.com/tiangolo/fastapi) - Some design ideas and most of the [documentation](https://arc.hypergonial.com/) [configuration](https://github.com/hypergonial/hikari-arc/blob/main/mkdocs.yml) derives from `FastAPI`.
118
+ - The `arc` logo was made by [@PythonTryHard](https://github.com/PythonTryHard).
119
+
123
120
 
124
121
  ## Links
125
122
 
@@ -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=-boW8adicsV542hIU8E2RLlZ3zSNPlFNOEs0xBS0B7k,42154
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=U4nySJ5zycTpJD5xn09VlxtaQHne2-Mm4dHWdQ9r7do,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=lHHY2LXDrztQ-1n50lxa5PSWE1bCrmSAvrqd0CyVc04,5901
55
+ arc/utils/hooks/limiters.py,sha256=64PyJHPIii2R9cbHA9MIOCfkIg99lGOGWrhGNuP5jHE,7490
56
+ hikari_arc-2.0.0.dist-info/METADATA,sha256=qDBKjPhK3aWZNdTvfWmQscd8SDMReABS0qmeeL7i-4k,5447
57
+ hikari_arc-2.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
58
+ hikari_arc-2.0.0.dist-info/licenses/LICENSE,sha256=q_osUjCCfQVI7zzgteLMZ-RlhXlB4rqQE8I0DGh7ur4,1076
59
+ hikari_arc-2.0.0.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -1,59 +0,0 @@
1
- arc/__init__.py,sha256=jNbK-SPm7T-O5Ej555Obxni9SyfQ05Z2i_G_DwGVggw,6029
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=iXcWXYx-5Mv6fUWx7inxw6T93gNgd_zTpA-luFtpVcQ,54108
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=jpEmCFuWI8_Qq36MZrKUxeU2JsywuANdQ6MYqScXu_E,12981
18
- arc/abc/plugin.py,sha256=VtR6qcjF3QUlKWHinp8Z6xK2NSe-Pq0jPaERmn1erl0,19700
19
- arc/command/__init__.py,sha256=TrVhqqfVR9K_RyMbng9TKZuix4nVLbTYOb78GZNOd8U,2542
20
- arc/command/message.py,sha256=Q-kxmQV2SajXPoEfol6UlC7DM7tIsOPQRwzuTH5L3a8,5943
21
- arc/command/slash.py,sha256=Vl8npjqxf2Dt3Mc1wqbnPA1QeDeTsReyn-KOYwo0hd0,35491
22
- arc/command/user.py,sha256=W8a4wPqLF2rHODCLgR4CZpQD3wGZQcnZ-1vHq_X9nks,5995
23
- arc/command/option/__init__.py,sha256=hEldXTprteztvDjUIq6oTEhD8ayN5Dwfg56E_18abhY,2117
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=rAAtOTZNLN0jKLncUH7kP35zpVyIMTuYvRazqG31axQ,225
34
- arc/command/option/custom/color.py,sha256=eBO85edOVztUu_m5kdvVGm0XYUVl9bpmWYTWizzOnTo,3474
35
- arc/command/option/custom/member.py,sha256=Jjn0ZWex6fv9x1iSUqcyFSAr90Oq8cK6OFCIQcr5HHA,3338
36
- arc/context/__init__.py,sha256=MOc71Up8gUAN8WfZkIzu3lDQhwZlwZbWFYWy3V7yCVQ,1303
37
- arc/context/autocomplete.py,sha256=YOu6leCKH0mfGVj0vmo4kj1_cWUM6c_vjgooymQ6sYY,3797
38
- arc/context/base.py,sha256=4hF_p-_mnzhdw5MlVLN7EATfKg8jGAKRkkXtxRggQbc,39976
39
- arc/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
- arc/internal/__init__.py,sha256=kZKBSFOkaDLe5kBvxiCQ-MWRPUZ_GBZdWwINPMkSbvo,1436
41
- arc/internal/about.py,sha256=e677O8g83KO6DwVEHkwXHRKJVONV-usPtnl9V3CkmQQ,1414
42
- arc/internal/deprecation.py,sha256=Lnirv1z_oj6QJvbnd38TwHQnhHhFD2rTqqvH96pxiWE,2204
43
- arc/internal/options.py,sha256=EODBho9BdHOgjqqOVAEEbwOkZJiVfjFDDpUztGKUdK4,3622
44
- arc/internal/sigparse.py,sha256=EsewKxcidtuoY0clEAVh8nVGmTq5hvAHxqokGOAcZPk,13518
45
- arc/internal/sync.py,sha256=ApiHD66Gi8BOSUcEKRiZ_n03u9MNkftNjSDZz5Wk1_M,12589
46
- arc/internal/types.py,sha256=NXemzM6cR2pH2vV9CCr6CSZFJZNY_yaovzNifppUkUA,4365
47
- arc/internal/version.py,sha256=bZFtIbhehFhsGU2yyTVHb8YIvCYhp9iyueTalCKFtsg,2201
48
- arc/utils/__init__.py,sha256=vc8QYVVVOe95_kfWWb5lc8dFkJrs5SnpIJta_t0l3UI,2334
49
- arc/utils/concurrency_limiter.py,sha256=YocMFU0sajLWnsajzZ7T2Qvpd9PKjc2koDqflQTJtPM,12959
50
- arc/utils/loops.py,sha256=CqRe6tpgzdyvD3POHiSoXATDhPklalMtswvGhcBt964,14009
51
- arc/utils/ratelimiter.py,sha256=YPETOjQOga8RazYoK3Ghueh2TsOdfkH7WM58dr3ybcU,9477
52
- arc/utils/hooks/__init__.py,sha256=pXlAQ1zGxQV-bBeeL8sKRkUyO1PmEazT_a_XKtf7GFA,515
53
- arc/utils/hooks/basic.py,sha256=PushSBY03A8Yq60uTRyQKLL74FUqF0DmumzXAW8kaGk,5902
54
- arc/utils/hooks/limiters.py,sha256=D0brZBnLqhUF7ycs16JllsW6gYqdlHnNOISH8iMBWkw,7490
55
- hikari_arc-1.3.4.dist-info/LICENSE,sha256=q_osUjCCfQVI7zzgteLMZ-RlhXlB4rqQE8I0DGh7ur4,1076
56
- hikari_arc-1.3.4.dist-info/METADATA,sha256=WBCIGP0HraGboqdAYm5BMN_5mgviXgf3gedBRQh7K-o,5563
57
- hikari_arc-1.3.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
58
- hikari_arc-1.3.4.dist-info/top_level.txt,sha256=kTs_REfGfSlIT6Hq_kxH-MtDlOO6LPwFwkOoNdDCnJ4,4
59
- hikari_arc-1.3.4.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- arc