Giter Club home page Giter Club logo

Comments (4)

koalalorenzo avatar koalalorenzo commented on July 28, 2024

Can you explain better what kind of issue you have?
the get_events should return a list of events. I don't understand the problem!

LMK 👍

from python-digitalocean.

github-golinux avatar github-golinux commented on July 28, 2024

Hey Thank you for looking into this, yes my issue is the following, when I execute this piece of code:

#Checking the status of the droplet

events = droplet.get_events()

for event in events:
event.load()
#Once it shows 100, droplet is up and running
print event.percentage

**** END CODE

This for loop only executes one time since there is only one event in the list. So the percentage never gets to 100, since it never iterates through any other events. I also checked by calling a sleep function and then calling status and that never changes to active either.

from python-digitalocean.

koalalorenzo avatar koalalorenzo commented on July 28, 2024

You should do something like this:

events = droplet.get_events()
for event in events:
    while True:
        time.sleep(1)
        event.load()
        if 100 in event.percentage:
            print event.percentage
            break

In that way you should be able to wait until the event is complete.

from python-digitalocean.

github-golinux avatar github-golinux commented on July 28, 2024

Ok, that worked after I modified this line by the following:

if '100' in event.percentage:

Great. Thank you for all of the hints, I learned a little more about python, debugging and installing modules.
Many Thanks Lorenzo. Happy Holidays

from python-digitalocean.

Related Issues (20)

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.