Skip to content

Commit 13bca5d

Browse files
committed
init docs
1 parent 0df8c82 commit 13bca5d

File tree

7 files changed

+473
-7
lines changed

7 files changed

+473
-7
lines changed

docs/api/core.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Core Engine
2+
3+
::: pyspark_msgraph_source.core.async_interator

docs/api/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# API Reference
2+
3+
Welcome to the API Reference of `your_package`.
4+
5+
Below are the available modules and submodules:
6+
7+
## Core
8+
- [Core Overview](core.md)
9+
10+
## Utils
11+
- [Utils Helpers](utils.md)
12+
13+
## API Client
14+
- [API Client](api_client.md)

docs/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Welcome to MkDocs
2+
3+
For full documentation visit [mkdocs.org](https://www.mkdocs.org).
4+
5+
## Commands
6+
7+
* `mkdocs new [dir-name]` - Create a new project.
8+
* `mkdocs serve` - Start the live-reloading docs server.
9+
* `mkdocs build` - Build the documentation site.
10+
* `mkdocs -h` - Print help message and exit.
11+
12+
## Project layout
13+
14+
mkdocs.yml # The configuration file.
15+
docs/
16+
index.md # The documentation homepage.
17+
... # Other markdown pages, images and other files.

mkdocs.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
site_name: Pyspark MSGraph Source
2+
theme:
3+
name: material
4+
5+
plugins:
6+
- search
7+
- mkdocstrings:
8+
handlers:
9+
python:
10+
paths: ["src/"] # or wherever your package code is
11+
options:
12+
show_source: true
13+
14+
nav:
15+
- Home: index.md
16+
- API Reference:
17+
- Overview: api/index.md
18+
- Core: api/core.md

poetry.lock

Lines changed: 418 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ grpcio-status = "^1.60.1"
3535
pandas = "^2.2.0"
3636
ipykernel = "^6.29.5"
3737
markdown = "^3.7"
38+
mkdocs = "^1.6.1"
39+
mkdocs-material = "^9.6.7"
40+
mkdocstrings = {extras = ["python"], version = "^0.28.2"}
3841

3942
[build-system]
4043
requires = ["poetry-core>=2.0.0,<3.0.0"]

src/pyspark_msgraph_source/core/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)