I need to get the some part of the text from below text with python.
original_text ="{"info":{"satname":"SPACE STATION","satid":00000,"transactionscount":0},"positions":[{"satlatitude":-50.00807313,"satlongitude":-37.47024176,"sataltitude":435.04,"azimuth":178.02,"elevation":-47.22,"ra":132.83647708,"dec":-72.05784906,"timestamp":1589984178},{"satlatitude":-49.98953872,"satlongitude":-33.37828456,"sataltitude":445.03,"azimuth":135.94,"elevation":-47.13,"ra":132.83937425,"dec":-62.01268023,"timestamp":1559981179}]}"
Expected outout is : "{"info":{"satname":"SPACE STATION","satid":00000,"transactionscount":0},"positions":[{"satlatitude":-50.00807313,"satlongitude":-37.47024176,"sataltitude":435.04,"azimuth":178.02,"elevation":-47.22,"ra":132.83647708,"dec":-72.05784906,"timestamp":1589984178}"
My code is:
import re
result = re.match(r'^{\"info\":.+\{', original_text)
print(result)
I'm getting None as output. This reg patterns woks in regex101.com. What is the mistake I have done