• Show this post
    all,
    just spent a hour looking at why my inventory API call isn't picking up new listings made since March 27th, all subsequent lists are showing on the inventory but don't seem to be being picked up on the API call

    print ("List discogs inventory, the most recently listed 25 items")
    payload = {'sort':'listed','sort_order':'desc','per_page':'25'}
    resp = requests.get('https://api.discogs.sie.com/s/coreofthepoodle/inventory',params=payload)
    idict = resp.json()

    for x in idict['listings']:
    print("Discogs listing : ",x.get('id'),": ",x.get('release').get('description'))

    the most recent listing is the last one I added on the 27th (Thursday). Anyone else seeing this ?
    Malc

  • Show this post
    May be a good idea to take a glance at recent forum threads, as well as the giant blue banner across the top of the site, before opening yet another thread

  • Show this post
    apologies, I did look at the threads and the banner, but obviously not read enough, much appreciated

You must be logged in to post.