First you need to use abstract functions:
import talib.abstract as ta
instead
import talib as ta
Secondly, make sure you use the correct names:
ta_serie = pd.DataFrame({ 'high': _1_minute_tf.max_price, 'open': _1_minute_tf.open_price, 'close': _1_minute_tf.close_price, 'low': _1_minute_tf.min_price })
Finally, enjoy: ta.SAR(ta_serie, window) will give you what you expected.
source share