Skip to content

Commit 6610098

Browse files
committed
doc: Add actual documentation
1 parent 5fab10e commit 6610098

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+20409
-15
lines changed

.readthedocs.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
3+
formats:
4+
- pdf
5+
6+
sphinx:
7+
configuration: docs/conf.py
8+
9+
python:
10+
version: "3.8"
11+
install:
12+
- requirements: docs/requirements.txt

cooldowns/buckets/hashable_arguments.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33

44
class _HashableArguments:
5+
"""An implementation class, you don't need to create these yourself."""
6+
57
# An internal class defined such that we can
68
# use *args and **kwargs as keys. We need to
79
# do this as mutable items are not hashable,

cooldowns/buckets/main.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,19 @@ class CooldownBucket(Enum):
77
"""
88
A collection of generic CooldownBucket's for usage in cooldown's.
99
10+
See :py:class:`cooldowns.protocols.bucket.CooldownBucketProtocol`
11+
1012
Attributes
1113
==========
1214
all
1315
The buckets are defined using all
14-
arguments passed to the :type:`Callable`
16+
arguments passed to the `Callable`
1517
args
1618
The buckets are defined using all
17-
non-keyword arguments passed to the :type:`Callable`
19+
non-keyword arguments passed to the `Callable`
1820
kwargs
1921
The buckets are defined using all
20-
keyword arguments passed to the :type:`Callable`
22+
keyword arguments passed to the `Callable`
2123
"""
2224

2325
all = 0

cooldowns/cooldown.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ def shared_cooldown(
102102
"""
103103
Wrap this Callable in a shared cooldown.
104104
105+
Use :py:meth:`define_shared_cooldown` before this.
106+
105107
Parameters
106108
----------
107109
cooldown_id: Optional[Union[int, str]]
@@ -299,7 +301,7 @@ def clear(
299301
300302
Notes
301303
-----
302-
You can get :class:`_HashableArguments` by
304+
You can get :py:class:`_HashableArguments` by
303305
using the :meth:`Cooldown.get_bucket` method.
304306
"""
305307
if not bucket:
@@ -350,8 +352,10 @@ def __repr__(self) -> str:
350352

351353
@property
352354
def bucket(self) -> CooldownBucketProtocol:
355+
"""Returns the underlying bucket to process cooldowns against."""
353356
return self._bucket
354357

355358
@property
356359
def func(self) -> Optional[Callable]:
360+
"""Returns the wrapped function."""
357361
return self._func

cooldowns/cooldown_times_per.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

33
import datetime
4-
from asyncio import get_event_loop, AbstractEventLoop, Queue, QueueEmpty
4+
from asyncio import get_event_loop, AbstractEventLoop, Queue
55
from typing import TYPE_CHECKING, Optional
66

77
from cooldowns.exceptions import CallableOnCooldown

cooldowns/exceptions.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class UnknownBucket(BaseCooldownException):
3434

3535
class NoRegisteredCooldowns(BaseCooldownException):
3636
"""
37-
This :type:`Callable` has no attached cooldown's.
37+
This `Callable` has no attached cooldown's.
3838
"""
3939

4040
def __init__(self):
@@ -43,16 +43,14 @@ def __init__(self):
4343

4444
class CallableOnCooldown(BaseCooldownException):
4545
"""
46-
This :type:`Callable` is currently on cooldown.
46+
This `Callable` is currently on cooldown.
4747
4848
Attributes
4949
==========
5050
func: Callable
51-
The :type:`Callable` which is currently rate-limited
51+
The `Callable` which is currently rate-limited
5252
cooldown: Cooldown
5353
The :class:`Cooldown` which applies to the current cooldown
54-
retry_after: float
55-
How many seconds before you can retry the :type:`Callable`
5654
resets_at: datetime.datetime
5755
The exact datetime this cooldown resets.
5856
"""
@@ -73,6 +71,7 @@ def __init__(
7371

7472
@property
7573
def retry_after(self) -> float:
74+
"""How many seconds before you can retry the `Callable`"""
7675
now = datetime.datetime.utcnow()
7776
gap: datetime.timedelta = self.resets_at - now
7877
return gap.seconds

cooldowns/utils.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ def _get_cooldowns_or_raise(func: MaybeCoro) -> List[Cooldown]:
3737

3838
def get_remaining_calls(func: MaybeCoro, *args, **kwargs) -> int:
3939
"""
40-
Given a :type:`Callable`, return the amount of remaining
40+
Given a `Callable`, return the amount of remaining
4141
available calls before these arguments will result
4242
in the callable being rate-limited.
4343
4444
Parameters
4545
----------
4646
func: MaybeCoro
47-
The :type:`Callable` you want to check.
47+
The `Callable` you want to check.
4848
args
4949
Any arguments you will pass.
5050
kwargs
@@ -53,13 +53,13 @@ def get_remaining_calls(func: MaybeCoro, *args, **kwargs) -> int:
5353
Returns
5454
-------
5555
int
56-
How many more times this :type:`Callable`
56+
How many more times this `Callable`
5757
can be called without being rate-limited.
5858
5959
Raises
6060
------
6161
NoRegisteredCooldowns
62-
The given :type:`Callable` has no cooldowns.
62+
The given `Callable` has no cooldowns.
6363
6464
Notes
6565
-----
@@ -76,7 +76,7 @@ def get_remaining_calls(func: MaybeCoro, *args, **kwargs) -> int:
7676

7777
def reset_cooldowns(func: MaybeCoro):
7878
"""
79-
Reset all cooldown's on this :type:`Callable`
79+
Reset all cooldown's on this `Callable`
8080
back to default settings.
8181
8282

docs/Makefile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = .
9+
BUILDDIR = _build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
1.66 MB
Binary file not shown.

docs/_build/doctrees/index.doctree

5.01 KB
Binary file not shown.
13.1 KB
Binary file not shown.
Binary file not shown.
23.2 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
57.3 KB
Binary file not shown.

docs/_build/html/.buildinfo

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: 65edb04b8da2860e356a1350783d6b93
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Welcome to Function Cooldowns's documentation!
2+
==============================================
3+
4+
Cooldowns for Coroutines, simple as that.
5+
6+
.. toctree::
7+
:maxdepth: 2
8+
:caption: Main:
9+
10+
11+
modules/decorators.rst
12+
modules/util.rst
13+
modules/buckets.rst
14+
modules/exceptions.rst
15+
modules/nextcord_slash_cooldowns.rst
16+
17+
18+
.. toctree::
19+
:maxdepth: 2
20+
:caption: Object references:
21+
22+
23+
modules/objects/util.rst
24+
modules/objects/cooldown.rst
25+
modules/objects/protocols.rst
26+
modules/objects/hashable_args.rst
27+
28+
29+
Indices and tables
30+
==================
31+
32+
* :ref:`genindex`
33+
* :ref:`modindex`
34+
* :ref:`search`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Buckets
2+
=======
3+
4+
The current bucket offerings which are built in.
5+
6+
Note, this package is not dependant on Nextcord and
7+
if you do not have it there won't be any issues if you don't use it.
8+
9+
.. currentmodule:: cooldowns.buckets
10+
11+
.. autoclass:: CooldownBucket
12+
:members:
13+
:noindex:
14+
15+
This requires a full import, and Nextcord.
16+
17+
.. currentmodule:: cooldowns.buckets.slash
18+
19+
.. autoclass:: SlashBucket
20+
:members:
21+
:noindex:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Decorator Usage
2+
===============
3+
4+
You have two choices for decorators, as documented below.
5+
6+
For example usages, view the examples section.
7+
8+
9+
.. currentmodule:: cooldowns
10+
11+
.. autofunction:: cooldown
12+
13+
.. autofunction:: shared_cooldown
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Library Exceptions
2+
==================
3+
4+
All exceptions inherit from ``BaseCooldownException``
5+
6+
.. currentmodule:: cooldowns.exceptions
7+
8+
.. autoclass:: BaseCooldownException
9+
:members:
10+
:undoc-members:
11+
12+
.. autoclass:: NonExistent
13+
:members:
14+
:undoc-members:
15+
16+
17+
.. autoclass:: CooldownAlreadyExists
18+
:members:
19+
:undoc-members:
20+
21+
22+
.. autoclass:: UnknownBucket
23+
:members:
24+
:undoc-members:
25+
26+
27+
.. autoclass:: NoRegisteredCooldowns
28+
:members:
29+
:undoc-members:
30+
31+
32+
.. autoclass:: CallableOnCooldown
33+
:members:
34+
:undoc-members:
35+

0 commit comments

Comments
 (0)