Skip to content

Commit b74e439

Browse files
author
Joel Lee
committed
feat: add docs for query_builder and storage_bucket
1 parent c8289d4 commit b74e439

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# Add any Sphinx extension module names here, as strings. They can be
2828
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2929
# ones.
30-
extensions = ["myst_parser"]
30+
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon"]
3131

3232
# Add any paths that contain templates here, relative to this directory.
3333
templates_path = ["_templates"]

docs/index.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,17 @@
66
Welcome to supabase's documentation!
77
====================================
88

9+
.. automodule:: supabase_py
10+
:members:
11+
:show-inheritance:
12+
913
.. toctree::
1014
:maxdepth: 2
1115
:caption: Contents:
1216

17+
query_builder
18+
storage_bucket
19+
1320

1421

1522
Indices and tables
@@ -24,4 +31,4 @@ Features
2431
--------
2532
* Auth
2633
* Realtime
27-
* Storage
34+
* Storage

docs/query_builder.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Query Builder
2+
================
3+
4+
.. automodule:: supabase_py.lib.query_builder
5+
:members:
6+
:show-inheritance:

docs/storage_bucket.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Storage Bucket
2+
================
3+
4+
.. automodule:: supabase_py.lib.storage.storage_bucket_api
5+
:members:
6+
:show-inheritance:

0 commit comments

Comments
 (0)