mirror of
https://github.com/d3vyce/sqlalchemy-pgview.git
synced 2026-03-02 01:40:47 +01:00
Initial commit
This commit is contained in:
9
docs/api/views/auto-refresh-context.md
Normal file
9
docs/api/views/auto-refresh-context.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# `AutoRefreshContext` class
|
||||
|
||||
Context manager for auto-refreshing materialized views when using SQLAlchemy Core.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import AutoRefreshContext
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.AutoRefreshContext
|
||||
7
docs/api/views/get-materialized-views.md
Normal file
7
docs/api/views/get-materialized-views.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# `get_materialized_views`
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import get_materialized_views
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.get_materialized_views
|
||||
7
docs/api/views/get-views.md
Normal file
7
docs/api/views/get-views.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# `get_views`
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import get_views
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.get_views
|
||||
13
docs/api/views/materialized-view.md
Normal file
13
docs/api/views/materialized-view.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# `MaterializedView` class
|
||||
|
||||
Here's the reference for the `MaterializedView` class, which extends `View` with materialized view features.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import MaterializedView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.MaterializedView
|
||||
options:
|
||||
members:
|
||||
- refresh
|
||||
- auto_refresh_on
|
||||
17
docs/api/views/view.md
Normal file
17
docs/api/views/view.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# `View` class
|
||||
|
||||
Here's the reference for the `View` class, with all its parameters, attributes and methods.
|
||||
|
||||
You can import it directly from `sqlalchemy_pgview`:
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import View
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.View
|
||||
options:
|
||||
members:
|
||||
- fullname
|
||||
- columns
|
||||
- as_table
|
||||
- as_from_clause
|
||||
Reference in New Issue
Block a user