using "find data" aka "extract selection" with python scripting

the python recipe for your question would be:

reader = GetActiveSource() # make sure you define your active reader.

selection=SelectPoints()
selection.QueryString=“propertyX <= 0”
selection.FieldType = ‘POINT’
selection.UpdatePipelineInformation()

mySelection = ExtractSelection(Input=reader, Selection=selection)
mySelection.UpdatePipeline()