<div dir="ltr"><div>Hello,</div><div><br></div><div>I'm trying to make this python 3 code with OwsLib working.</div><div>In particular, I'm searching a road with the name starting by "VIA F.", but QGIS Server returns me a road named VIA MATTEOTTI...<br></div><div><br></div><div>Does QGIS Server support PropertyIsLike in WFS?<br></div><div><br></div><div><br></div><div>#!/usr/bim/python3<br></div><div>from owslib.wfs import WebFeatureService<br>from owslib.etree import etree<br>from owslib.fes import PropertyIsEqualTo, PropertyIsLike, BBox<br><br>wfs = WebFeatureService(url='<a href="https://cartografia.comunelavis.it/wms/cbase">https://cartografia.comunelavis.it/wms/cbase</a>')<br><br>filt = PropertyIsLike(propertyname='nome_via', literal='VIA F.%', wildCard='%', matchCase=False)<br>filterxml = etree.tostring(filt.toXML()).decode("utf-8")<br><br>feature = wfs.getfeature(typename=['Civici'], maxfeatures=1, filter=filterxml)<br>gml = etree.parse(feature)</div><div>print(etree.tostring(gml))<br></div></div>