| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | .. _broker-ironmq:================== Using IronMQ==================.. _broker-ironmq-installation:Installation============For IronMQ support, you'll need the :pypi:`iron_celery` library:.. code-block:: console    $ pip install iron_celeryAs well as an `Iron.io account <Iron.io>`_. Sign up for free at `Iron.io`_._`Iron.io`: http://www.iron.io/.. _broker-ironmq-configuration:Configuration=============First, you'll need to import the iron_celery library right after youimport Celery, for example:.. code-block:: python    from celery import Celery    import iron_celery    app = Celery('mytasks', broker='ironmq://', backend='ironcache://')You have to specify IronMQ in the broker URL:.. code-block:: python    broker_url = 'ironmq://ABCDEFGHIJKLMNOPQRST:ZYXK7NiynGlTogH8Nj+P9nlE73sq3@'where the URL format is:.. code-block:: text    ironmq://project_id:token@you must *remember to include the "@" at the end*.The login credentials can also be set using the environment variables:envvar:`IRON_TOKEN` and :envvar:`IRON_PROJECT_ID`, which are set automaticallyif you use the IronMQ Heroku add-on.  And in this case the broker URL may only be:.. code-block:: text    ironmq://Clouds------The default cloud/region is ``AWS us-east-1``. You can choose the IronMQ Rackspace (ORD)cloud by changing the URL to:.. code-block:: text    ironmq://project_id:token@mq-rackspace-ord.iron.ioResults=======You can store results in IronCache with the same ``Iron.io`` credentials,just set the results URL with the same syntaxas the broker URL, but changing the start to ``ironcache``:.. code-block:: text    ironcache:://project_id:token@This will default to a cache named "Celery", if you want to change that:.. code-block:: text    ironcache:://project_id:token@/awesomecacheMore Information================You can find more information in the `iron_celery README`_._`iron_celery README`: https://github.com/iron-io/iron_celery/
 |