tagreader-python
tagreader-python copied to clipboard
A Python package for reading trend data from the OSIsoft PI and Aspen InfoPlus.21 historians
I can not fetch data for tags which contains Swedish characters. I get warnings like below and do not get out any data for requests like `c.read(tags=["åäö"],start_time=start_time, end_time=end_time, ts=1)`: ```...
#120, #29 Tested - passes everything except ODBC on my side. Should fix the two issues referenced.
Hi, I'm working like in this example: c = tagreader.IMSClient(...) >c.search(tag="1")
Demand for new functionality: Example call: df = c.read(['BA:CONC.1'], '05-Jan-2020 08:00:00', '05/01/20 11:30am', 60, read_type=tagreader.ReaderType.LastValid) This should return data with a time step of 60 seconds. At each time step...
tagreader/clients.py:417: FutureWarning: The behavior of array concatenation with empty entries is deprecated. In a future version, this will no longer exclude empty items when determining the result dtype. To retain...
When reading tags that are not of numeric type, the tag is converted to a NaN value. This is due to line 489 of webhandlers.py and can be resolved by...
Hi, was trying to find how to handle LIKE statements in the SQL query via the REST API and came across your great library. I notice that you don't current...