openapi-core/openapi_core/schema/specs.py

9 lines
193 B
Python
Raw Permalink Normal View History

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