drf-to-mkdoc 0.3.0__py3-none-any.whl → 0.3.2__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.
Potentially problematic release.
This version of drf-to-mkdoc might be problematic. Click here for more details.
- drf_to_mkdoc/conf/defaults.py +1 -2
- drf_to_mkdoc/conf/settings.py +2 -1
- drf_to_mkdoc/static/drf-to-mkdoc/javascripts/settings-modal.js +361 -0
- drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/form-manager.js +136 -17
- drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/request-executor.js +18 -2
- drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/filter-section.css +10 -5
- drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/settings-modal.css +555 -0
- drf_to_mkdoc/templates/endpoints/list/base.html +1 -0
- drf_to_mkdoc/templates/endpoints/list/filter_section.html +3 -1
- drf_to_mkdoc/templates/endpoints/list/settings_modal.html +138 -0
- drf_to_mkdoc/templates/try-out/form.html +1 -1
- drf_to_mkdoc/utils/endpoint_detail_generator.py +1 -1
- drf_to_mkdoc/utils/endpoint_list_generator.py +2 -0
- drf_to_mkdoc/utils/schema.py +10 -1
- drf_to_mkdoc-0.3.2.dist-info/METADATA +232 -0
- {drf_to_mkdoc-0.3.0.dist-info → drf_to_mkdoc-0.3.2.dist-info}/RECORD +19 -16
- drf_to_mkdoc-0.3.0.dist-info/METADATA +0 -315
- {drf_to_mkdoc-0.3.0.dist-info → drf_to_mkdoc-0.3.2.dist-info}/WHEEL +0 -0
- {drf_to_mkdoc-0.3.0.dist-info → drf_to_mkdoc-0.3.2.dist-info}/licenses/LICENSE +0 -0
- {drf_to_mkdoc-0.3.0.dist-info → drf_to_mkdoc-0.3.2.dist-info}/top_level.txt +0 -0
|
@@ -742,7 +742,7 @@ def parse_endpoints_from_schema(paths: dict[str, Any]) -> dict[str, list[dict[st
|
|
|
742
742
|
|
|
743
743
|
for path, methods in paths.items():
|
|
744
744
|
app_name = extract_app_from_operation_id(next(iter(methods.values()))["operationId"])
|
|
745
|
-
if app_name not in django_apps:
|
|
745
|
+
if django_apps and app_name not in django_apps:
|
|
746
746
|
continue
|
|
747
747
|
|
|
748
748
|
for method, endpoint_data in methods.items():
|
|
@@ -37,6 +37,7 @@ class EndpointsIndexGenerator:
|
|
|
37
37
|
"stylesheets/endpoints/base.css",
|
|
38
38
|
"stylesheets/endpoints/theme-toggle.css",
|
|
39
39
|
"stylesheets/endpoints/filter-section.css",
|
|
40
|
+
"stylesheets/endpoints/settings-modal.css",
|
|
40
41
|
"stylesheets/endpoints/layout.css",
|
|
41
42
|
"stylesheets/endpoints/endpoints-grid.css",
|
|
42
43
|
"stylesheets/endpoints/badges.css",
|
|
@@ -54,6 +55,7 @@ class EndpointsIndexGenerator:
|
|
|
54
55
|
|
|
55
56
|
scripts = [
|
|
56
57
|
static(prefix_path + "javascripts/endpoints-filter.js"),
|
|
58
|
+
static(prefix_path + "javascripts/settings-modal.js"),
|
|
57
59
|
]
|
|
58
60
|
|
|
59
61
|
# Process endpoints to add view_class
|
drf_to_mkdoc/utils/schema.py
CHANGED
|
@@ -2,7 +2,7 @@ import inspect
|
|
|
2
2
|
import logging
|
|
3
3
|
from importlib import import_module
|
|
4
4
|
from types import SimpleNamespace
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any, List
|
|
6
6
|
|
|
7
7
|
from drf_spectacular.openapi import AutoSchema as SpectacularAutoSchema
|
|
8
8
|
from drf_spectacular.plumbing import ComponentRegistry
|
|
@@ -208,6 +208,15 @@ class AutoSchema(SpectacularAutoSchema):
|
|
|
208
208
|
directly to the operation during schema generation instead of using a postprocessing hook.
|
|
209
209
|
"""
|
|
210
210
|
|
|
211
|
+
def __init__(self, *args, **kwargs):
|
|
212
|
+
self.tags = kwargs.pop("tags", [])
|
|
213
|
+
super().__init__()
|
|
214
|
+
|
|
215
|
+
def get_tags(self) -> List[str]:
|
|
216
|
+
if self.tags:
|
|
217
|
+
return self.tags
|
|
218
|
+
return super().get_tags()
|
|
219
|
+
|
|
211
220
|
def get_operation(
|
|
212
221
|
self,
|
|
213
222
|
path: str,
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: drf-to-mkdoc
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Summary: Generate Markdown API docs from Django/DRF OpenAPI schema for MkDocs
|
|
5
|
+
Author-email: Hossein Shayesteh <shayestehhs1@gmail.com>
|
|
6
|
+
Maintainer-email: Hossein Shayesteh <shayestehhs1@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/shayestehhs/drf-to-mkdoc
|
|
9
|
+
Project-URL: Repository, https://github.com/shayestehhs/drf-to-mkdoc
|
|
10
|
+
Project-URL: Documentation, https://github.com/shayestehhs/drf-to-mkdoc#readme
|
|
11
|
+
Project-URL: Bug Tracker, https://github.com/shayestehhs/drf-to-mkdoc/issues
|
|
12
|
+
Keywords: django,django-rest-framework,documentation,mkdocs,api
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Framework :: Django
|
|
24
|
+
Classifier: Framework :: Django :: 3.2
|
|
25
|
+
Classifier: Framework :: Django :: 4.0
|
|
26
|
+
Classifier: Framework :: Django :: 4.1
|
|
27
|
+
Classifier: Framework :: Django :: 4.2
|
|
28
|
+
Classifier: Framework :: Django :: 5.0
|
|
29
|
+
Classifier: Topic :: Documentation
|
|
30
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
31
|
+
Requires-Python: >=3.8
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
License-File: LICENSE
|
|
34
|
+
Requires-Dist: Django<6.0,>=3.2
|
|
35
|
+
Requires-Dist: djangorestframework<4.0,>=3.12
|
|
36
|
+
Requires-Dist: PyYAML>=6.0
|
|
37
|
+
Requires-Dist: drf-spectacular>=0.26.0
|
|
38
|
+
Requires-Dist: mkdocs>=1.4.0
|
|
39
|
+
Requires-Dist: mkdocs-material>=9.0.0
|
|
40
|
+
Requires-Dist: coreapi>=2.3.0
|
|
41
|
+
Provides-Extra: dev
|
|
42
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
43
|
+
Requires-Dist: pytest-django>=4.5.0; extra == "dev"
|
|
44
|
+
Requires-Dist: black>=22.0.0; extra == "dev"
|
|
45
|
+
Requires-Dist: isort>=5.10.0; extra == "dev"
|
|
46
|
+
Requires-Dist: flake8>=5.0.0; extra == "dev"
|
|
47
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
48
|
+
Dynamic: license-file
|
|
49
|
+
|
|
50
|
+
# DRF to MkDocs
|
|
51
|
+
|
|
52
|
+
Unlock effortless API documentation for your Django REST Framework project. Automatically generate beautiful, interactive, and maintainable docs that accelerate developer onboarding and streamline your team's workflow.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Why DRF to MkDocs?
|
|
57
|
+
|
|
58
|
+
`DRF to MkDocs` bridges the gap between your API's OpenAPI schema and user-friendly, maintainable documentation. It introspects your Django models and DRF views to automatically generate a polished, feature-rich documentation site that stays in sync with your codebase, empowering your team to build better APIs, faster.
|
|
59
|
+
|
|
60
|
+
- **Effortless Documentation**: Automate the entire process of generating and updating your API docs. Say goodbye to manual work and outdated information.
|
|
61
|
+
- **Accelerate Onboarding**: Provide new joiners with interactive, easy-to-navigate documentation. The "Try-it-out" feature and clear model relationships help them become productive from day one.
|
|
62
|
+
- **Deeply Integrated with DRF**: Leverages `drf-spectacular` for accurate schema generation, ensuring your documentation is a true reflection of your API.
|
|
63
|
+
- **Enhance Developer Experience**: Features like the interactive API console and in-depth model pages streamline development, testing, and debugging for the entire team.
|
|
64
|
+
- **Beautiful & Professional**: Built on MkDocs with the Material theme for a clean, modern, and responsive UI that you'll be proud to share.
|
|
65
|
+
|
|
66
|
+
## Gallery
|
|
67
|
+
|
|
68
|
+
<details>
|
|
69
|
+
<summary>🚀 Interactive Endpoint List & Filtering</summary>
|
|
70
|
+
<img width="1434" height="943" alt="List-EndPoint" src="https://github.com/user-attachments/assets/f886fc7f-afa0-4faa-b9c2-d6f754ca3597" />
|
|
71
|
+
</details>
|
|
72
|
+
|
|
73
|
+
<details>
|
|
74
|
+
<summary>🔬 Detailed Endpoint View with "Try-it-out"</summary>
|
|
75
|
+
<img width="958" height="887" alt="Detail-EndPoint" src="https://github.com/user-attachments/assets/9d9e3d4b-cb92-4ece-831e-aef45ceec768" />
|
|
76
|
+
<img width="532" height="804" alt="Try-it-out" src="https://github.com/user-attachments/assets/0f483922-60c4-4f62-8fb4-bc7372e82a03" />
|
|
77
|
+
</details>
|
|
78
|
+
|
|
79
|
+
<details>
|
|
80
|
+
<summary>📚 Rich Model Documentation</summary>
|
|
81
|
+
<img width="906" height="885" alt="Model-fields" src="https://github.com/user-attachments/assets/a1ca369c-ad40-4b05-83ec-ceb1f80aab23" />
|
|
82
|
+
<img width="848" height="886" alt="Model" src="https://github.com/user-attachments/assets/683d6d26-a8e4-4c05-8b5f-11a61a62cb0c" />
|
|
83
|
+
</details>
|
|
84
|
+
|
|
85
|
+
<details>
|
|
86
|
+
<summary>📈 Entity-Relationship Diagrams</summary>
|
|
87
|
+
<img width="953" height="606" alt="ER-Diagram" src="https://github.com/user-attachments/assets/3d0b1cb0-7ebf-4d4a-a181-1b7dbc9c6a01" />
|
|
88
|
+
</details>
|
|
89
|
+
|
|
90
|
+
## Key Features
|
|
91
|
+
|
|
92
|
+
| Feature | Description |
|
|
93
|
+
| -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
|
94
|
+
| 🚀 **Interactive API Console** | Test endpoints directly from the documentation with a "Try-it-out" feature, complete with a request builder and response viewer. |
|
|
95
|
+
| 🔍 **Advanced Filtering & Search** | Instantly find endpoints with multi-criteria filtering by app, method, path, and a real-time search. |
|
|
96
|
+
| 📚 **In-Depth Model Pages** | Automatically generate detailed pages for each model, including fields, relationships, choices, and methods. |
|
|
97
|
+
| 📊 **Entity-Relationship Diagrams** | Visualize model relationships with auto-generated, interactive ER diagrams for each app and for the entire project. |
|
|
98
|
+
| 🎨 **Modern & Responsive UI** | A beautiful and intuitive interface powered by MkDocs Material, featuring light/dark themes and full mobile support. |
|
|
99
|
+
| 🔧 **Highly Customizable** | Override templates, configure settings, and use custom functions to tailor the documentation to your project's specific needs. |
|
|
100
|
+
| ⚙️ **Simple Integration** | Works seamlessly with existing DRF projects and `drf-spectacular` without requiring complex setup. |
|
|
101
|
+
| 🤖 **AI-Powered Enhancements** | (Working on it...) Leverage AI to generate smarter examples and more descriptive documentation for your API. |
|
|
102
|
+
|
|
103
|
+
## Getting Started
|
|
104
|
+
|
|
105
|
+
### 1. Installation
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
pip install drf-to-mkdoc
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### 2. Configure Your Django Project
|
|
112
|
+
|
|
113
|
+
In your `settings.py`:
|
|
114
|
+
|
|
115
|
+
```python
|
|
116
|
+
# settings.py
|
|
117
|
+
|
|
118
|
+
INSTALLED_APPS = [
|
|
119
|
+
# ... your other apps
|
|
120
|
+
'drf_to_mkdoc',
|
|
121
|
+
'drf_spectacular', # Required for schema generation
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
# Required for OpenAPI schema generation
|
|
125
|
+
REST_FRAMEWORK = {
|
|
126
|
+
'DEFAULT_SCHEMA_CLASS': 'drf_to_mkdoc.utils.schema.AutoSchema',
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
SPECTACULAR_SETTINGS = {
|
|
130
|
+
'TITLE': 'Your API',
|
|
131
|
+
'DESCRIPTION': 'Your API description',
|
|
132
|
+
'VERSION': '1.0.0',
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
# DRF to MkDocs specific settings
|
|
136
|
+
DRF_TO_MKDOC = {
|
|
137
|
+
'DJANGO_APPS': [
|
|
138
|
+
'users',
|
|
139
|
+
'products',
|
|
140
|
+
# ... list all apps you want to document
|
|
141
|
+
],
|
|
142
|
+
}
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### 3. Create MkDocs Configuration
|
|
146
|
+
|
|
147
|
+
Create an `mkdocs.yml` file in your project root. You can start with the [default configuration](docs/mkdocs.yml) and customize it.
|
|
148
|
+
|
|
149
|
+
### 4. Build Your Documentation
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
python manage.py build_docs
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
For more detailed instructions, see the full [Installation and Setup Guide](docs/installation.md).
|
|
156
|
+
|
|
157
|
+
## Usage and Customization
|
|
158
|
+
|
|
159
|
+
### Building Your Documentation
|
|
160
|
+
|
|
161
|
+
To build the entire documentation site, run the following command. This will generate a static site in your `site/` directory.
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
python manage.py build_docs
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
For more granular control, `DRF to MkDocs` provides several commands, such as `build_endpoint_docs` and `build_model_docs`.
|
|
168
|
+
|
|
169
|
+
### Serving Docs with Django
|
|
170
|
+
|
|
171
|
+
You can serve your documentation directly from your Django application, protecting it with Django's authentication system. This is ideal for private or internal APIs.
|
|
172
|
+
|
|
173
|
+
For a complete guide, see [Serving Docs with Django](docs/serving_docs_with_django.md).
|
|
174
|
+
|
|
175
|
+
### Customizing the OpenAPI Schema
|
|
176
|
+
|
|
177
|
+
`DRF to MkDocs` allows you to override and extend the auto-generated OpenAPI schema by providing a custom JSON file. This gives you fine-grained control over the final documentation, enabling you to add examples, descriptions, or even custom endpoints.
|
|
178
|
+
|
|
179
|
+
For more details, refer to the [Customizing Endpoints](docs/customizing_endpoints.md) guide.
|
|
180
|
+
|
|
181
|
+
### Best Practices
|
|
182
|
+
|
|
183
|
+
For better project organization, we recommend creating a separate `docs_settings.py` for documentation-specific configurations and using the `--settings` flag:
|
|
184
|
+
|
|
185
|
+
```bash
|
|
186
|
+
python manage.py build_docs --settings=my_project.docs_settings
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
This keeps your production settings clean and your documentation configuration isolated.
|
|
190
|
+
|
|
191
|
+
## Configuration
|
|
192
|
+
|
|
193
|
+
You can customize the behavior of `DRF to MkDocs` by configuring the `DRF_TO_MKDOC` dictionary in your settings file.
|
|
194
|
+
|
|
195
|
+
| Key | Description | Default |
|
|
196
|
+
| -------------------------------- | ------------------------------------------------------------------------------ | ------------------------------------- |
|
|
197
|
+
| `DJANGO_APPS` (required) | A list of Django app names to process. | `[]` |
|
|
198
|
+
| `DOCS_DIR` | The base directory where documentation will be generated. | `'docs'` |
|
|
199
|
+
| `ER_DIAGRAMS_DIR` | The directory for ER diagrams, relative to `DOCS_DIR`. | `'er_diagrams'` |
|
|
200
|
+
| `FIELD_GENERATORS` | Custom field value generators for creating better examples. | `{}` |
|
|
201
|
+
| `ENABLE_AI_DOCS` | A flag to enable AI-powered documentation features. | `False` |
|
|
202
|
+
| `PATH_PARAM_SUBSTITUTE_FUNCTION` | A custom function for substituting path parameters in URLs. | `None` |
|
|
203
|
+
| `PATH_PARAM_SUBSTITUTE_MAPPING` | A mapping for substituting common path parameters (e.g., `{'pk': 1}`). | `{}` |
|
|
204
|
+
|
|
205
|
+
## How It Works
|
|
206
|
+
|
|
207
|
+
`DRF to MkDocs` operates in a few stages:
|
|
208
|
+
|
|
209
|
+
1. **Model Introspection**: It deeply analyzes your Django models, mapping out their fields, relationships (like ForeignKeys and ManyToManyFields), and metadata.
|
|
210
|
+
2. **Schema Generation**: It uses `drf-spectacular` to generate a detailed OpenAPI schema for your API endpoints.
|
|
211
|
+
3. **Template Rendering**: It renders Jinja2 templates for each endpoint, model, and ER diagram, creating Markdown files.
|
|
212
|
+
4. **MkDocs Build**: Finally, it invokes MkDocs to build a static HTML site from the generated Markdown files.
|
|
213
|
+
|
|
214
|
+
This process ensures that your documentation is always an accurate and comprehensive reflection of your codebase.
|
|
215
|
+
|
|
216
|
+
## Contributing
|
|
217
|
+
|
|
218
|
+
Contributions are welcome! Whether it's a bug report, a new feature, or an improvement to the documentation, we appreciate your help. To ensure code quality, we use **CoderabbitAI** for automated code reviews on all pull requests.
|
|
219
|
+
|
|
220
|
+
Please see our [Contributing Guidelines](CONTRIBUTING.md) to get started.
|
|
221
|
+
|
|
222
|
+
### Development Setup
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
git clone https://github.com/Shayestehhs/drf-to-mkdoc.git
|
|
226
|
+
cd drf-to-mkdoc
|
|
227
|
+
pip install -e ".[dev]"
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
## License
|
|
231
|
+
|
|
232
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
drf_to_mkdoc/__init__.py,sha256=IbTW5uKQvJRG9ncHRuk_AGKHPn4ruxs5LqDpUFgUhws,180
|
|
2
2
|
drf_to_mkdoc/apps.py,sha256=-NrC_dRr6GmLmNQhkNh819B7V1SS4DYDv5JOR0TtuJM,560
|
|
3
3
|
drf_to_mkdoc/conf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
drf_to_mkdoc/conf/defaults.py,sha256=
|
|
5
|
-
drf_to_mkdoc/conf/settings.py,sha256=
|
|
4
|
+
drf_to_mkdoc/conf/defaults.py,sha256=5qbjvHvhhkQChRdy3tJvGRoJ1uXzBfoiHf71kt3a3XI,1072
|
|
5
|
+
drf_to_mkdoc/conf/settings.py,sha256=sxg3VIlhUkcxL1g-21E3FSuwqH4MfL9C3m2QwGw5rqA,5499
|
|
6
6
|
drf_to_mkdoc/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
drf_to_mkdoc/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
drf_to_mkdoc/management/commands/build_docs.py,sha256=k2N8i7sNWPJGVzUSdkDu47FleCSjIxClRq1dWBHwhjQ,4057
|
|
@@ -14,12 +14,13 @@ drf_to_mkdoc/management/commands/update_doc_schema.py,sha256=TtHVQxnVpB_VELRkVcd
|
|
|
14
14
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/endpoints-filter.js,sha256=KtfWroqsXg-wwmk36hpoH--M9WIW85EFNGeswMjFu4g,6138
|
|
15
15
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/field-sections-loader.js,sha256=kSR_CDZTjRtsow1dDd6JN5I5rJjvnv10XmTItExdGas,1001
|
|
16
16
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/query-parameters-loader.js,sha256=W_ITwF2UwvODJBzcSQBdJ--upVFYXcOler8i0jqsabI,635
|
|
17
|
+
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/settings-modal.js,sha256=_hnF6mrLUa7L-n64jV4ZKqCpS1PvTtdrwGd1fWB1dRY,13665
|
|
17
18
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/field-extractor.js,sha256=f_QTpuQgJprmoVqyT5HfnfFTH4q5rWzio3Rt0wYsHNE,8580
|
|
18
|
-
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/form-manager.js,sha256=
|
|
19
|
+
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/form-manager.js,sha256=I5Ri04i6h9HHl6HQ7CEi3UFYb0b3Wnj6Qny-tdMKet0,21711
|
|
19
20
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/main.js,sha256=W0Vv9jdCturToACs_wapZ37ux0nRXy1d3GqfXq-0NuI,1821
|
|
20
21
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/modal.js,sha256=IUg33Er2cF6qzIbxgnvlj8C_fSjNariyfFd3zswu3wU,14238
|
|
21
22
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/query-parameters-extractor.js,sha256=3b6XshRFdf5TeZNktgxEBenEFWTTEsKjYZll0xMUv3Q,3542
|
|
22
|
-
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/request-executor.js,sha256=
|
|
23
|
+
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/request-executor.js,sha256=lBKP-GbUyXKhIGS1q0V0GxeJueRHTjfaDorIgB-LClg,12565
|
|
23
24
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/response-modal.js,sha256=D8Xd9rEAJpMPExVxSmJ7PaQXCmIfRPhyv6t93A0AP0w,5671
|
|
24
25
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/suggestions.js,sha256=WOXppK1HgYFDbVkCvchBKxL8rc_974roJAxZE2EBdDo,4396
|
|
25
26
|
drf_to_mkdoc/static/drf-to-mkdoc/javascripts/try-out/tabs.js,sha256=WwAjbisNap0lOQ3pZyWkW0G7hXvy_gFjHMCCPUu50a8,2791
|
|
@@ -30,12 +31,13 @@ drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/badges.css,sha256=gti54y-
|
|
|
30
31
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/base.css,sha256=K9lEjO-TEaUsFCaiuBwqDGrrjIJP8oBDh7igBGRTD3g,1839
|
|
31
32
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/endpoint-content.css,sha256=1EKHfDeOSpNJe6l3mHzsBlLqLVCJn_1TKtEVfV7Dp88,3452
|
|
32
33
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/endpoints-grid.css,sha256=Ct4H_ma3tC_1ogw9IeSNmUDZFJwzQWjCM6GomNXV8ig,4115
|
|
33
|
-
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/filter-section.css,sha256=
|
|
34
|
+
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/filter-section.css,sha256=h-pDsu1JgIvrbryySUrW-2wG_-teVllUa4xmQlb9ZFM,4502
|
|
34
35
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/fixes.css,sha256=MIPiwWXkSMt5I_q6jN6X5CvWTBmq1CERKZffhvf3sKM,720
|
|
35
36
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/layout.css,sha256=dyoTUJ5Y8njxdWE6t2G3nRS-bT0BT04UMat8K6yW2y4,637
|
|
36
37
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/loading.css,sha256=C_wZjMw5Cs2inpg892S0_E7_m5bT8BwZfVBRQfvIcKw,712
|
|
37
38
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/responsive.css,sha256=mzR4tB3XrCg6Ih-X5GEzXzZoSR0R0AEKArRIZ7LqiGU,1672
|
|
38
39
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/sections.css,sha256=xdrO6vUpthFFN1ESummoGuG5MPtE2d2lPsBOWuv-T6o,705
|
|
40
|
+
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/settings-modal.css,sha256=LdKdftP6kIxvgx5FHaoH4GlLuFJLZ8Frl5Ahj2Q9FIY,12653
|
|
39
41
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/stats.css,sha256=0cDD8s63r6zQid_O1schNvfIwys1Y526xO6-B6s4Lxc,667
|
|
40
42
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/tags.css,sha256=dOw13qsvVjx9cibzgzXlOutXVosNp6LzFfEFKvumG8w,1785
|
|
41
43
|
drf_to_mkdoc/static/drf-to-mkdoc/stylesheets/endpoints/theme-toggle.css,sha256=kaG0KZXa2uYmyIJfl4hd30Tj4pvDijJKthUXQ9WovJs,7839
|
|
@@ -64,9 +66,10 @@ drf_to_mkdoc/templates/endpoints/detail/path_parameters.html,sha256=M7OPUg88e3bw
|
|
|
64
66
|
drf_to_mkdoc/templates/endpoints/detail/query_parameters.html,sha256=PlkL3HDiyvwEcDC-QFTc4xunV32TzGX5yyqhSS0YyOY,879
|
|
65
67
|
drf_to_mkdoc/templates/endpoints/detail/request_body.html,sha256=oDMymuZyAbWF2aDAvd-jyrRxTLM3fOZgYM3UpTRDbKo,235
|
|
66
68
|
drf_to_mkdoc/templates/endpoints/detail/responses.html,sha256=j5TayLw3r3BCM2ZN0lvO4Tv9Wf-xViG6a-c8-LzeeUI,297
|
|
67
|
-
drf_to_mkdoc/templates/endpoints/list/base.html,sha256=
|
|
69
|
+
drf_to_mkdoc/templates/endpoints/list/base.html,sha256=L1Y42pxIrXHgTiIY6axWomCRja6EBd-5-JX_yFTuQ7U,657
|
|
68
70
|
drf_to_mkdoc/templates/endpoints/list/endpoint_card.html,sha256=PesI9Dlt2kAU1AKcMNGUzIA3lzGcncX-Na0HYiwbR28,1114
|
|
69
|
-
drf_to_mkdoc/templates/endpoints/list/filter_section.html,sha256=
|
|
71
|
+
drf_to_mkdoc/templates/endpoints/list/filter_section.html,sha256=LMf-JdfW0vW_8SOaaMa3PBjo1JOK7_21fxOHaJAFqI0,625
|
|
72
|
+
drf_to_mkdoc/templates/endpoints/list/settings_modal.html,sha256=BFLgNT-BlxUHmRpTqqZmCgmN045VI1VEWe-Cdq9ueQA,6275
|
|
70
73
|
drf_to_mkdoc/templates/endpoints/list/filters/app.html,sha256=vjY0GGg1UGKKb2JAIaw-kCWkoWiA7rQzvifa7pObPXU,225
|
|
71
74
|
drf_to_mkdoc/templates/endpoints/list/filters/method.html,sha256=B9WHuuScIF45QRGv1wZVocCKMPUvyuEDg_gMaE02NXc,410
|
|
72
75
|
drf_to_mkdoc/templates/endpoints/list/filters/path.html,sha256=ZKq50BJu9AYdjiY2TXxhM8c8ivz6M8J_aZIC_q2gVvE,180
|
|
@@ -81,18 +84,18 @@ drf_to_mkdoc/templates/model_detail/meta.html,sha256=idbnQhV1dT_zLQDD3jZ21vXqLjC
|
|
|
81
84
|
drf_to_mkdoc/templates/model_detail/methods.html,sha256=QZzp8sGKxuyM6_6GXDNnpKUJw0n_cF5CljklduyALTo,143
|
|
82
85
|
drf_to_mkdoc/templates/model_detail/relationships.html,sha256=GK7mip_-_4qxxM7MGmV3HXqiV6X9QkeBtz7oy4xZs4Q,796
|
|
83
86
|
drf_to_mkdoc/templates/try-out/fab.html,sha256=_LdcSS0kroedCrWDg44frNIAA1x2RCYa8RHgZiKL434,2158
|
|
84
|
-
drf_to_mkdoc/templates/try-out/form.html,sha256=
|
|
87
|
+
drf_to_mkdoc/templates/try-out/form.html,sha256=Psn3sd__HsiIzFTzcP3JjNaJuU_Iz74sJyRLWjySTrM,11190
|
|
85
88
|
drf_to_mkdoc/templates/try-out/main.html,sha256=SbSS989mhcJ46DwAKePjdCnpL1KuCDG8LcuERvRgh1U,144
|
|
86
89
|
drf_to_mkdoc/templates/try-out/modal.html,sha256=G3Ye6DntMVVYUnmbwkrf-YcYmw7AxtCAzPUZUFlsUe8,2782
|
|
87
90
|
drf_to_mkdoc/templates/try-out/response-modal.html,sha256=mjt1bud07Y3BXp7716mQMlrv8xGRaQr4W2XRNKJWwGA,5980
|
|
88
91
|
drf_to_mkdoc/templatetags/custom_filters.py,sha256=b_0ExGgBKUIlNkJ8nXlc6mrhhiUUxtdq9thXH-yzEq4,3761
|
|
89
92
|
drf_to_mkdoc/utils/__init__.py,sha256=6dFTb07S6yIf-INMy0Mlgf5purNir687ZU9WZtITh4k,68
|
|
90
|
-
drf_to_mkdoc/utils/endpoint_detail_generator.py,sha256=
|
|
91
|
-
drf_to_mkdoc/utils/endpoint_list_generator.py,sha256=
|
|
93
|
+
drf_to_mkdoc/utils/endpoint_detail_generator.py,sha256=toZ3JWlVHtsYPJLG8ZDvLYtfsbNr3P-YEINKpOElwQ4,28391
|
|
94
|
+
drf_to_mkdoc/utils/endpoint_list_generator.py,sha256=OpfeJmcZsSts52Rv5nmb0M_y60aJQ3F2spAo73i5RGk,3706
|
|
92
95
|
drf_to_mkdoc/utils/er_diagram_generator.py,sha256=9X4L2XPVSKwxHZQspOSMg7TacAzImeXGgYPzhlsL-U8,7962
|
|
93
96
|
drf_to_mkdoc/utils/model_detail_generator.py,sha256=_ac2PYSzSwRUgUn-J-nmg7mfQGn8SU_4vkMpMRIxgEU,2619
|
|
94
97
|
drf_to_mkdoc/utils/model_list_generator.py,sha256=Ki-CwIYKmUbPm3_jUPLPosPfppyVLrZMkqbuPPO3Ycw,1988
|
|
95
|
-
drf_to_mkdoc/utils/schema.py,sha256=
|
|
98
|
+
drf_to_mkdoc/utils/schema.py,sha256=vVLnnVt3ANaHSAdrsjOEfkakZZufeR5PUSuo2dyR4vU,10311
|
|
96
99
|
drf_to_mkdoc/utils/ai_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
100
|
drf_to_mkdoc/utils/ai_tools/enums.py,sha256=K39bJjHgXwNst2NL6z-5bztW3ZU5iCxg2b0KEodD6eM,238
|
|
98
101
|
drf_to_mkdoc/utils/ai_tools/exceptions.py,sha256=yFauOtuSRGRnQt41u2qCMvWEbN0eblgKwXuH-GX3Wbk,634
|
|
@@ -109,8 +112,8 @@ drf_to_mkdoc/utils/commons/path_utils.py,sha256=Pi9g1xXDPsRzmn4kTeNSVtXG9v6n1h2Z
|
|
|
109
112
|
drf_to_mkdoc/utils/commons/schema_utils.py,sha256=1mQxzo08J6tlVmTIJ0hCQ6wCZUWMuV82POhLWUfOYtI,7567
|
|
110
113
|
drf_to_mkdoc/utils/extractors/__init__.py,sha256=BvC8gKOPVI9gU1Piw0jRhKQ2ER5s1moAxgq7ZYkJWNI,86
|
|
111
114
|
drf_to_mkdoc/utils/extractors/query_parameter_extractors.py,sha256=xELPYI6tcqfkxOa475JPMaxRzRGUX--Z9oYRlKgXb7w,7964
|
|
112
|
-
drf_to_mkdoc-0.3.
|
|
113
|
-
drf_to_mkdoc-0.3.
|
|
114
|
-
drf_to_mkdoc-0.3.
|
|
115
|
-
drf_to_mkdoc-0.3.
|
|
116
|
-
drf_to_mkdoc-0.3.
|
|
115
|
+
drf_to_mkdoc-0.3.2.dist-info/licenses/LICENSE,sha256=3n9_ckIREsH8ogCxWW6dFsw_WfGcluG2mHcgl9i_UU0,1068
|
|
116
|
+
drf_to_mkdoc-0.3.2.dist-info/METADATA,sha256=16ftaO5R-V2txHW3mh2tsG-Q25LaxGwd6b01o1yjlyw,11692
|
|
117
|
+
drf_to_mkdoc-0.3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
118
|
+
drf_to_mkdoc-0.3.2.dist-info/top_level.txt,sha256=ZzJecR6j_tvLZiubUBEgawHflozC4DQy9ooNf1yDJ3Q,13
|
|
119
|
+
drf_to_mkdoc-0.3.2.dist-info/RECORD,,
|