Apache Flagon Distill is a python package to support and analyze Flagon UserAle.js logs
.. ..
Apache Flagon Distill =====================
🚨 This repository has been archived and it's contents have moved to https://github.com/apache/flagon
.. image:: https://readthedocs.org/projects/incubator-flagon-distill/badge/?version=distilltoolkitrefactor :target: https://incubator-flagon-distill.readthedocs.io/en/distilltoolkitrefactor/?badge=stable :alt: Documentation Status
This project is a work in progress, prior to an official Apache Software Foundation release. Check back soon for important updates.
Please see our readthedocs.org pages <https://incubator-flagon-distill.readthedocs.io/en/distilltoolkitrefactor/>_ for documentation.
A contribution guide has been provided here <http://flagon.incubator.apache.org/docs/contributing/>_.
Installation
To install and set up the Python project, Distill uses Poetry <https://python-poetry.org/>_, a dependency and package management tool. Poetry simplifies the management of project dependencies and virtual environments, ensuring consistent and reproducible builds.
Prerequisites ~~~~~
Before you begin, make sure you have the following prerequisites installed on your system:
- Python (>= 3.8)
- Poetry (>= 1.0)
.. code-block:: bash
python --version
This will return the version of Python installed on your system. If you do not have Python installed, you can download it from the official website <https://www.python.org/downloads/>. However, we recommend using a Python version manager such as pyenv. You can refer to this guide for setting it up: pyenv guide <https://realpython.com/intro-to-pyenv/>.
You can install Poetry a number of ways (see the Poetry docs <https://python-poetry.org/docs/>_ for all methods). We recommend installing one of the following two ways:
Official Installer:
Linux, macOS, Windows (WSL)
.. code-block:: bash
curl -sSL https://install.python-poetry.org | python3 -
Windows (Powershell)
.. code-block:: bash
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -
pipx:
.. code-block:: bash
pipx install poetry
The above two methods should minimize the chances of dependency conflicts with your system Python (global) installation. Some users have reported issues with Poetry using an incorrect Python environment instead of the project's local virtual environment when using regular pip method. If you run into issues, please refer to the official Poetry docs or Github for more in-depth installation instructions.
Installation Steps ~~~~~~
Follow these steps to set up and install the project:
- Clone the repository:
git clone https://github.com/apache/flagon-distill.git
- Navigate to the project directory:
cd flagon-distill
- Use Poetry to install project dependencies and create a virtual environment:
poetry install This command reads the `pyproject.toml file and installs all required packages into a dedicated virtual environment.
- If you would like to run tests or make changes, install optional dependency groups.
- Run the tests:
.. code-block:: bash make test Remember that you need to activate the virtual environment (step 4) each time you work on the project.
Updating Dependencies ~~~~~
To update project dependencies, you can use the following command:
.. code-block:: bash
poetry update
This command updates the pyproject.toml` file with the latest compatible versions of the packages.
Uninstalling ~~~~
To uninstall the project and its dependencies, simply deactivate the virtual environment (if activated) by typing:
.. code-block:: bash
exit
This will exit the virtual environment. You can then safely delete the project directory.
By following these installation steps, you can easily set up and manage the Python project using Poetry. Enjoy coding!