bstoilov / py3-pinterest

Fully fledged Python Pinterest client
MIT License
293 stars 104 forks source link

load_pin #205

Open MnLgt opened 1 month ago

MnLgt commented 1 month ago

If you're getting the error about 'props' being an invalid key

Change line 727 in Pinterest.py to the following

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