You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/jentic-openapi-transformer-redocly/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# jentic-openapi-transformer-redocly
2
2
3
-
A Python library that provides OpenAPI document bundling functionality using [Redocly CLI](https://redocly.com/docs/cli/). This package is part of the Jentic OpenAPI Tools ecosystem and implements the transformer strategy pattern for bundling OpenAPI documents by resolving external references.
3
+
A Python library that provides OpenAPI document bundling functionality using [Redocly CLI](https://redocly.com/docs/cli/). This package is part of the Jentic OpenAPI Tools ecosystem and implements the transformer backend pattern for bundling OpenAPI documents by resolving external references.
4
4
5
5
## Features
6
6
@@ -32,10 +32,10 @@ npm install -g @redocly/cli
32
32
### Basic Usage
33
33
34
34
```python
35
-
from jentic.apitools.openapi.transformer.redocly importRedoclyBundler
35
+
from jentic.apitools.openapi.transformer.bundler.backends.redocly importRedoclyBundlerBackend
36
36
37
37
# Create a bundler instance
38
-
bundler =RedoclyBundler()
38
+
bundler =RedoclyBundlerBackend()
39
39
40
40
# Bundle an OpenAPI document from a file path
41
41
result = bundler.bundle("/path/to/your/openapi.yaml")
Copy file name to clipboardExpand all lines: packages/jentic-openapi-transformer-redocly/src/jentic/apitools/openapi/transformer/bundler/backends/redocly/__init__.py
0 commit comments