All Projects → assem-ch → django-swagger-ui

assem-ch / django-swagger-ui

Licence: BSD-3-Clause license
Django swagger UI is a viewer for Swagger YAML files as html.

Programming Languages

HTML
75241 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to django-swagger-ui

AutoTablesForRADServer
Automate REST API Development With Auto Tables For RAD Server
Stars: ✭ 31 (+29.17%)
Mutual labels:  swagger-ui
jekyll-swagger-ui
A Jekyll plugin to integrate Swagger UI into Jekyll site
Stars: ✭ 16 (-33.33%)
Mutual labels:  swagger-ui
cakephp-swagger
Swagger plugin for documenting your CakePHP APIs
Stars: ✭ 61 (+154.17%)
Mutual labels:  swagger-ui
OpenAPI-Viewer
OpenApi viewer Implemented using Vue
Stars: ✭ 93 (+287.5%)
Mutual labels:  swagger-ui
grlc
grlc builds Web APIs using shared SPARQL queries
Stars: ✭ 118 (+391.67%)
Mutual labels:  swagger-ui
cakephp-swagger-bake
Automatically generate OpenAPI, Swagger, and Redoc documentation from your existing CakePHP code.
Stars: ✭ 48 (+100%)
Mutual labels:  swagger-ui
swaggerql
Easily and simply convert SQL database into a REST API with Swagger documentation
Stars: ✭ 40 (+66.67%)
Mutual labels:  swagger-ui
koa2-swagger-ui
Swagger UI as Koa v2 middleware
Stars: ✭ 95 (+295.83%)
Mutual labels:  swagger-ui
example-postgresql
A complete example of a "CRUD" service (UserService) built with Oat++ and using oatpp ORM with PostgreSQL.
Stars: ✭ 24 (+0%)
Mutual labels:  swagger-ui
IGeekFan.AspNetCore.Knife4jUI
support .NET Core3.0+,.NET Standard2.0 Swagger UI knife4j ui,you can use NSwagger or Swashbuckle.AspNetCore in packages
Stars: ✭ 178 (+641.67%)
Mutual labels:  swagger-ui
MsCoreOne
MsCoreOne is a simple Ecommerce with using many technologies such as .NET 5, Entity Framework Core 5, React 16.13 with modern Clean Architecture, Domain-Driven Design, CQRS, SOLID, Identity Server 4, Blazor. It will focus on resolving the problems always see in the process to develop projects.
Stars: ✭ 77 (+220.83%)
Mutual labels:  swagger-ui
openapi-viewer
Browse and test a REST API described with the OpenAPI 3.0 Specification
Stars: ✭ 85 (+254.17%)
Mutual labels:  swagger-ui
kanban-board
Single-click full-stack application (Postgres, Spring Boot & Angular) using Docker Compose
Stars: ✭ 138 (+475%)
Mutual labels:  swagger-ui
jeecg
JEECG是一款基于代码生成器的J2EE快速开发平台,开源界“小普元”超越传统商业企业级开发平台。引领新的开发模式(Online Coding模式(自定义表单) - > 代码生成器模式 - > 手工MERGE智能开发), 可以帮助解决Java项目90%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省人力成本,同时又不失灵活性。具备:表单配置能力(无需编码)、移动配置能力、工作流配置能力、报表配置能力(支持移动端)、插件开发能力(可插拔)
Stars: ✭ 2,090 (+8608.33%)
Mutual labels:  swagger-ui
Ktor-OpenAPI-Generator
Ktor OpenAPI/Swagger 3 Generator
Stars: ✭ 203 (+745.83%)
Mutual labels:  swagger-ui
monero-merchant
Monero Merchant is a RESTful API wrapper for the official Monero wallet RPC. This project is mainly for merchants who hope to accept Monero as payment, which is currently the most robust and privacy-oriented cryptocurrency with extremely low transaction fees.
Stars: ✭ 27 (+12.5%)
Mutual labels:  swagger-ui
swagger-aggregate
Spring Boot app to aggregate multiple service's Swagger api-docs
Stars: ✭ 23 (-4.17%)
Mutual labels:  swagger-ui
net-api
A documented REST API which returns structured data from network devices
Stars: ✭ 73 (+204.17%)
Mutual labels:  swagger-ui
platform
Apinf - Open source API management platform with multi proxy and protocol support
Stars: ✭ 69 (+187.5%)
Mutual labels:  swagger-ui
spring-boot-starter-swagger
Spring Boot Swagger UI Starter
Stars: ✭ 14 (-41.67%)
Mutual labels:  swagger-ui

Django Swagger UI

Django swagger UI is a viewer for Swagger YAML files as html. based on swagger-yaml-to-html.py.

Quick start

  1. Install the lib:

    pip install django-swagger-ui

  1. Add "swagger_ui" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'swagger_ui',
        ...
    ]
    
  2. Include the swagger ui URLconf in your project urls.py like this:

    path('', include('swagger_ui.urls')),
    
  3. Add this variable SWAGGER_YAML_FILE to settings.py pointing to your YAML file

  4. You will find the swagger api documentation in /api-doc/.

screenshots/1.png

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].