I receive an Excel file via HttpRequest (not the point) and pass it to the ExecuteStreamCommand in order to get the value of a specific cell (via Python). The problem is that I don't know how to get exactly excel from sys.stdin in order to get the value through pandas or openpyxl.
import sys
print (type (sys.stdin))
In such a construction, the type <class '_io.TextIOWrapper'>
import sys
for line in sys.stdin:
print (type (line))
In this construction, the type <class 'str'> (387 such lines in the output file)
I'm just starting to understand this topic, I started reading articles on python a couple of days ago, on nifi a couple of weeks ago