Git Product home page Git Product logo

Comments (5)

furgoose avatar furgoose commented on June 28, 2024

It's in a very early state at the moment. What errors are you getting? And what version of python?

from pocket-casts.

darkzbaron avatar darkzbaron commented on June 28, 2024

Hey, it looks like I went too fast. It is working I used the wrong version of python. Good catch!,

from pocket-casts.

darkzbaron avatar darkzbaron commented on June 28, 2024

hey, congrats on your progress. I was about to ask you if there was the possibility to update podcast status but it seems like it is something you already thought about.

I am just having some difficulty with the synthax. Would you mind providing me with an example on how to use
pocket. update_starred(podcast, episode, starred)?

Thanks,Jonathan

from pocket-casts.

furgoose avatar furgoose commented on June 28, 2024

The easiest way to use update_starred is with the getters and setters of the episode class, which call the method behind the scenes e.g.

>>> import pocketcasts
>>> p = pocketcasts.Pocketcasts(user, password)
# Just getting a podcast episode to star
>>> podcast = p.get_featured()[0]
>>> episode = p.get_podcast_episodes(podcast)[0]
>>> episode.starred
False
>>> episode.starred = True
>>> episode.starred
True

If you did want to use the method, the syntax is using a pocketcasts.Podcast class, a pocketcasts.Episode class and a boolean.

from pocket-casts.

darkzbaron avatar darkzbaron commented on June 28, 2024

from pocket-casts.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.