You can run the async code by importing
AsyncQStash from qstash
and awaiting the methods.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
AsyncQStash from qstash
and awaiting the methods.from qstash import QStash
client = QStash("<QSTASH-TOKEN>")
signing_key = client.signing_key.get()
print(signing_key.current, signing_key.next)
from qstash import QStash
client = QStash("<QSTASH-TOKEN>")
new_signing_key = client.signing_key.rotate()
print(new_signing_key.current, new_signing_key.next)
Was this page helpful?