Metadata-Version: 2.1
Name: rab_the_bit
Version: 0.0.2
Summary: A wrapper around Kombu to use RabbitMQ, specialy on docker images
Home-page: https://github.com/vliz-be-opsci/py-rabbit
License: MIT
Author: Vlaams Instituut voor de Zee (VLIZ), João Santos
Author-email: jotaflame@gmail.com
Requires-Python: >=3.8.1,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: kombu
Project-URL: Repository, https://github.com/vliz-be-opsci/py-rabbit
Description-Content-Type: text/x-rst

rab_the_bit
===================================

A wrapper around Kombu to use RabbitMQ, specialy on docker images

Started on 2023-08-18


Features (Optional)
--------------------

- List some features
- From this repository

Installation
------------
To install rab_the_bit, follow these steps:

    1. Clone the repository: ``git clone https://github.com/vliz-be-opsci/py-rabbit.git``
    2. Navigate to the project directory: ``cd rab_the_bit``
    3. Install the required dependencies: ``make init``
    4. (Optional) Install additional dependencies for development: ``make init-dev``

Usage
-----
Here's an example of how to use rab_the_bit:

.. code-block:: python

    import rab_the_bit

    # Implement a code example



For more detailed information on the usage of rab_the_bit, refer to the `official documentation <https://open-science.vliz.be/rab_the_bit/>`.



Contributing
------------

We welcome contributions from the community to enhance rab_the_bit. If you'd like to contribute, please follow these guidelines:

    1. Fork the repository and create a new branch for your feature or bug fix.
    2. Make your changes and ensure that the code adheres to the project's coding style.
    3. Write unit tests to cover your changes and ensure they pass.
    4. Submit a pull request with a clear description of your changes and the problem they solve.

For more information on contributing to Pykg2tbl, please refer to the `contribution guidelines </CONTRIBUTING.rst>`.


Getting Started
---------------
Start using this project with poetry


.. code-block:: bash

    $ make init       # install dependencies
    $ make init-dev   # includes the previous + adds dependencies for developers

Build Docs

.. code-block:: bash

    $ make docs


Developers
----------

Run Tests

.. code-block:: bash

    $ make test                                                   # to run all tests
    $ PYTEST_LOGCONF=debug-logconf.yml python tests/test_demo.py  # to run a specific test with specific logging
    $ make test-coverage                                          # to run all tests and check the test coverage


Check the code-style and syntax (flake8, black, isort)

.. code-block:: bash

    $ make check



