I have a Json string:
{"spatialReference":{"wkid":102100},"geometryType":"esriGeometryPolygon","features":[{"geometry":{"rings":[[[-13945398.575078921,7313414.186040432],[-13945392.60343609,7313379.550512001],[-13945410.518364588,7313360.142672794],[-13945433.509189496,7313387.313647684],[-13945398.575078921,7313414.186040432]]],"spatialReference":{"wkid":102100}}},{"geometry":{"rings":[[[-13945451.424117994,7313427.025072522],[-13945426.641800238,7313432.399551072],[-13945432.314860929,7313413.588876149],[-13945449.035460861,7313412.991711865],[-13945451.424117994,7313427.025072522]]],"spatialReference":{"wkid":102100}}}]}
How do I save this string as a new .json file using python? I probably need to create a new empty .json file and then populate it with the string.
Thanks!