openapi-core/openapi_core/schema/specs.py

9 lines
193 B
Python
Raw Normal View History

2021-04-27 21:39:28 +00:00
from __future__ import division
from openapi_core.schema.servers import get_server_url
2021-04-23 11:36:27 +00:00
def get_spec_url(spec, index=0):
servers = spec / 'servers'
return get_server_url(servers / 0)