processes.py
being put there, for example?
@tomkralidis I have prepared the release 0.23:
geopython/OWSLib#744
Please cut a release 0.23.0. It has a fix for the wcs timeout issue:
geopython/OWSLib#738
>>> from owslib.ogcapi.records import Records
>>> r=Records('https://apps.titellus.net/ogcapi/')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/tkralidi/Dev/OWSLib/OWSLib/owslib/ogcapi/records.py", line 23, in __init__
super().__init__(url, json_, timeout, headers, auth)
File "/Users/tkralidi/Dev/OWSLib/OWSLib/owslib/ogcapi/features.py", line 23, in __init__
super().__init__(url, json_, timeout, headers, auth)
File "/Users/tkralidi/Dev/OWSLib/OWSLib/owslib/ogcapi/__init__.py", line 65, in __init__
self.title = response['title']
KeyError: 'title'
>>> r=Records('https://a
r.collection_items(‘main’)
and so on
>>> from owslib.ogcapi.records import Records
>>> r=Records('https://apps.titellus.net/ogcapi/‘) # traverse the dict here for the collection name you are interested in
>>> r.collection_items('main')