We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bfe759 commit 0190344Copy full SHA for 0190344
docs/django.rst
@@ -267,6 +267,19 @@ your settings.
267
'immediate': False,
268
}
269
270
+Getting the Huey Instance
271
+^^^^^^^^^^^^^^^^^^^^^^^^^
272
+
273
+If you want to interact with Huey APIs that are not exposed through ``djhuey``
274
+explicitly, you can get the actual ``Huey`` instance in the following way:
275
276
+.. code-block:: python
277
278
+ from huey.contrib.djhuey import HUEY as huey
279
280
+ # E.g., get the underlying Storage instance.
281
+ storage = huey.get_storage()
282
283
Configuration Examples
284
^^^^^^^^^^^^^^^^^^^^^^
285
0 commit comments