coding-kitties / flask-swagger-generator

A simple to use flask swagger generator working with the Flask web framework.
MIT License
6 stars 6 forks source link

Issue#7 : Added Support for "path" InputType #30

Closed fizaashraf37 closed 1 year ago

fizaashraf37 commented 1 year ago

Issue#7

User can now add an endpoint for with path input type:

Example:

@blueprint.route('/objects/<path:name>')
def get_object(name):
    return jsonify({'id': 1, 'name': 'test_object_name'}), 201
MDUYN commented 1 year ago

Thanks a lot @fizaashraf37 !