Question
How can i add droplet under LoadBalaancer using python-digitalocen
Hi all,
I am using python-digitalocen framework .I am trying to access LoadBalancer Module for adding droplets under the loadbalancer but i am not able to do.can anyone help out how can i do this.below is my code and the error i amgetting,
import digitalocean
api_key='api_key'
manager = digitalocean.Manager(token=api_key)
l=digitalocean.Account(token=api_key)
lb=digitalocean.LoadBalancer(token=api_key)
lb.add_droplets([191337309])
Traceback (most recent call last):
File "/home/mypathshala-1/PycharmProjects/digital_ocen/load_balancer.py", line 7, in
lb.add_droplets([191337309])
File "/home/mypathshala-1/PycharmProjects/digital_ocen/venv/lib/python3.8/site-packages/digitalocean/LoadBalancer.py", line 288, in add_droplets
return self.get_data(
File "/home/mypathshala-1/PycharmProjects/digital_ocen/venv/lib/python3.8/site-packages/digitalocean/baseapi.py", line 198, in get_data
raise NotFoundError()
digitalocean.NotFoundError
Can anyone help me out of this,thanks in advance
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×