Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

I'm trying to get list of vms that are running on some specific hypervisor from openstack api, so here python request. import openstack openstack.enable_logging(debug=True) conn = openstack.connect(...
saibug's user avatar
  • 1
0 votes
1 answer
316 views

I'm building a React app that uses a Python backend to handle the API calls. I just keep getting errors when I try to access the API data. The credentials (hardcoded but removed) are double-checked ...
Chris Shields's user avatar
2 votes
1 answer
220 views

In the past I used available_floating_ip to create a new floating ip and attach it to an instance or use an existing non-attached floating ip and attach it to an instance. For some reason the latter ...
Natan's user avatar
  • 1,141
0 votes
1 answer
1k views

Currently I am using (of course with more elaborate variables): conn = openstack.connect( load_yaml_config=False, load_envvars=False, auth_url=AL, ...
Natan's user avatar
  • 1,141
0 votes
1 answer
257 views

from xmlrpc.client import Boolean from sqlalchemy import TIMESTAMP, Column, Integer, String from sqlalchemy.sql.expression import text from .database import Base class Post(Base): __tablename__ = ...
Amandeep Singh's user avatar
0 votes
1 answer
662 views

I am new to OpenStack. I have gone through the document as https://docs.openstack.org/nova/wallaby/user/filter-scheduler.html suggests. But I am not getting how and where to put the code. Do I need to ...
Swetank Subham's user avatar
1 vote
0 answers
42 views

So I've this python program, non-GUI, just runs in the terminal, and I was wondering if I could style it, say with html and/or css, to make it look like a gui, well, just to add graphics and stuff ...
manuel's user avatar
  • 46
0 votes
1 answer
1k views

Hello guys and I hope you're having a great day. I have a question about using Openstack API in Python. I'm using python-novaclient for getting server details and flavor details. And I want to get the ...
blizzy's user avatar
  • 55
0 votes
1 answer
148 views

Hello guys while trying to make a simple script i have encountered an error and i've scratched google's head and mine but didn't find a solution . So the problem is anytime i run this code i get a ...
Dan Dan's user avatar
0 votes
0 answers
139 views

This error I am getting while entering http://127.0.0.1:8000/api/student/ this URL My Database : posts/models.py from django.db import models class Student(models.Model): lname = models.CharField(...
Boxer Robert's user avatar
  • 1,219
-3 votes
1 answer
476 views

I'm a newbie in using API. I just want to get the data from API and store it in a database. I know there are many libraries/packages in python to extract the data from specific API (for example Google ...
Nihal Mudhiraj's user avatar
0 votes
1 answer
323 views

I want to first source the admin rc file and then need to automate the tenant create using python(openstack) amd new to this..please help me out
userpp's user avatar
  • 1
0 votes
1 answer
2k views

I want to send the output to a postgres database directly! is that possible of i have to convert it first to another format! any idea!! curl -sG https://peeringdb.com/api/netixlan --data-urlencode ...
Drik Drik's user avatar
0 votes
1 answer
430 views

I have a python API that hits a URL and receives a JSON. There is a table that contains order data Order_id ZipCode delivery_date total The json returned by the API contains the city and state ...
Firstname's user avatar
  • 365
0 votes
1 answer
714 views

I've been trying to create an OpenStack image informing the Kernel Id and Ramdisk Id, using the OpenStack Unified SDK (https://github.com/openstack/python-openstacksdk), but without success. I know ...
Vini.g.fer's user avatar
0 votes
1 answer
135 views

I want to know how I can get logs from simulated temperature and humidity sensor in ibmbluemix quickstart device. I can only see that it is done using java script. I couldnt find a place to write my ...
Gowtham Balachandhiran's user avatar
1 vote
1 answer
10k views

I want to get every tweet of the HousingWire on Twitter (https://twitter.com/HousingWire). I understood how to authenticate into the twitter account but how I can get the tweet of HousingWire? I ...
neha's user avatar
  • 347
0 votes
1 answer
323 views

I want to create a server within OpenStack nova. The first step is to create a volume from an image: volume = cinder.volumes.create(5, name="test", imageRef=some_id, ...) The volume will then for ...
Andreas Florath's user avatar