DOV-Vlaanderen/pydov: v3.0.0 ...

News This version drops support for Python 3.7. This version adds support for Python 3.11. This version is supported on Python 3.8, 3.9, 3.10 and 3.11. Breaking changes pydov3 uses WFS 2.0.0 instead of WFS 1.1.0, as a consequence attribute filters should now use FES2.0 and location filters should now use GML3.2. This change impacts a number of places: query parameter in the pydov.search.abstract.AbstractSearch.search method Attribute query operators, like PropertyIsEqualTo, PropertyIsGreaterThan and so on, should from now on be imported from the owslib.fes2 package instead of the owslib.fes pa... Mehr ...

Verfasser: Huybrechts, Roel
Van Hoey, Stijn
Haest, Pieter Jan
Van De Wauw, Johan
Synaeve, Joris
Vandekerckhove, Guillaume
Paenen, Killian
Desmet, Peter
Trenson, Gilles",Sweco-Begilt,"Van Den Bossche, Joris",Marleenvd,", Shaun
Dokumenttyp: SoftwareSourceCode
Erscheinungsdatum: 2023
Verlag/Hrsg.: Zenodo
Sprache: unknown
Permalink: https://search.fid-benelux.de/Record/base-29274856
Datenquelle: BASE; Originalkatalog
Powered By: BASE
Link(s) : https://dx.doi.org/10.5281/zenodo.7798414

News This version drops support for Python 3.7. This version adds support for Python 3.11. This version is supported on Python 3.8, 3.9, 3.10 and 3.11. Breaking changes pydov3 uses WFS 2.0.0 instead of WFS 1.1.0, as a consequence attribute filters should now use FES2.0 and location filters should now use GML3.2. This change impacts a number of places: query parameter in the pydov.search.abstract.AbstractSearch.search method Attribute query operators, like PropertyIsEqualTo, PropertyIsGreaterThan and so on, should from now on be imported from the owslib.fes2 package instead of the owslib.fes package. E.g.: <code class="lang-python"> # change this from owslib.fes import And, PropertyIsEqualTo # into this from owslib.fes2 import And, PropertyIsEqualTo sort_by parameter in the pydov.search.abstract.AbstractSearch.search method Also the SortBy operator should from now on be imported from the the owslib.fes2 package instead of the owslib.fes package. E.g.: <code class="lang-python"> # change this from ...