Home
last modified time | relevance | path

Searched refs:get_schema_documents (Results 1 – 5 of 5) sorted by relevance

/dports/www/py-spyne/spyne-2.13.16/spyne/test/interface/
H A Dtest_xml_schema.py42 from spyne.util.xml import get_schema_documents
70 docs = get_schema_documents([SomeObject])
222 docs = get_schema_documents([SomeType])
296 from spyne.util.xml import get_schema_documents
312 elt = get_schema_documents([C], "aa")['tns']
334 elt = get_schema_documents([C])['tns']
362 schema = get_schema_documents([SomeGuy], tns)['tns']
379 schema = get_schema_documents([SomeGuy], tns)['tns']
397 schema = get_schema_documents([SomeGuy], tns)['tns']
413 schema = get_schema_documents([SomeGuy], tns)['tns']
[all …]
/dports/www/py-spyne/spyne-2.13.16/examples/xml/
H A Dschema.py42 from spyne.util.xml import get_schema_documents
59 schema_elts = get_schema_documents([SomeObject], 'some_ns')
H A Dutils.py53 from spyne.util.xml import get_schema_documents
93 docs = get_schema_documents([Punk, Foo, Product])
/dports/www/py-spyne/spyne-2.13.16/spyne/test/util/
H A Dtest_util.py47 from spyne.util.xml import get_schema_documents
145 docs = get_schema_documents([Punk, Foo])
/dports/www/py-spyne/spyne-2.13.16/spyne/util/
H A Dxml.py52 def get_schema_documents(models, default_namespace=None): function