Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Is There Any Better Way To Get Queue By Name Other Then:

is there any better way to get queue by name other then:
` client = APIClient()

queue = [q for q in client.queues.get_all() if q.name == queue_name][0] and, can i somehow know about a given task in the queue.entries ` if its my task?
is there documentation for the api client?

  
  
Posted 2 years ago
Votes Newest

Answers 2


Hi ChubbyLouse32 ,
See here: https://clear.ml/docs/latest/docs/references/api/queues#post-queuesget_all
You can simply do:
client = APIClient() queues = client.queues.get_all(name=queue_name)

  
  
Posted 2 years ago

thanks!

  
  
Posted 2 years ago
517 Views
2 Answers
2 years ago
one year ago
Tags