You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're getting the error about 'props' being an invalid key
Change line 727 in Pinterest.py to the following
PWS_INITIAL_PROPS instead of PWS_DATA
Remove the 'props' key.
for s in scripts:
if "id" in s.attrs and s.attrs["id"] == "__PWS_INITIAL_PROPS__":
pinJsonData = json.loads(s.contents[0])["initialReduxState"][
"resources"
]["PinResource"]
pinJsonData = pinJsonData[list(pinJsonData.keys())[0]]["data"]
return pinJsonData
The text was updated successfully, but these errors were encountered:
If you're getting the error about 'props' being an invalid key
Change line 727 in Pinterest.py to the following
The text was updated successfully, but these errors were encountered: