Skip to content

Instantly share code, notes, and snippets.

@pratik-choudhari
Created February 14, 2022 16:39
Show Gist options
  • Select an option

  • Save pratik-choudhari/a98c2c73978b20461ae9c43ad45014b6 to your computer and use it in GitHub Desktop.

Select an option

Save pratik-choudhari/a98c2c73978b20461ae9c43ad45014b6 to your computer and use it in GitHub Desktop.
from redis import Redis
from rq.job import Job
redis = Redis()
job = Job.fetch('my_job_id', connection=redis)
print(f'Result: {job.result}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment