>>> from __future__ import (absolute_import, division, print_function)
>>> from owslib.csw import CatalogueServiceWeb
>>> from owslib import fes

>>> c = CatalogueServiceWeb('https://zbgisws.skgeodesy.sk/zbgiscsw/service.svc/get')

>>> sorted([op.name for op in c.operations])
['DescribeRecord', 'GetCapabilities', 'GetRecordById', 'GetRecords', ...]

>>> grop = c.get_operation_by_name('GetRecords')
>>> grop.name
'GetRecords'

>>> c.getrecords2(typenames='csw:Record gmd:MD_Metadata')
>>> c.results.get('returned') > 0
True
>>> c.results.get('nextrecord') > 0
True
>>> c.results.get('matches') > 0
True

