[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] python bindings?



i'm newish to python and definitely new to the python bindings for
htcondor.  I don't understand the return values

(this is all pseudo code)

for job in schedd.xquery(projection=[]):
  print(job)

the returned values are something like

[ blah = "blah";
  blah = "blah";
  blah = "blah"; ]

what i expected was that 'job' would be a dictionary that i could then
iterate or reference into like a normal key/value hash

i looked over the docs and tutorials, but i think i'm missing
something fundamental here