Quick-start

Installing PyTupli

You can install PyTupli using pip:

pip install pytupli

Or if you’re using Poetry:

poetry add pytupli

For local development in editable mode, navigate to the package directory and run:

poetry install

Optional Dependencies

PyTupli has several optional dependency groups that can be installed based on your needs:

  • Server Components: To install dependencies for running the PyTupli server:

    poetry install --with server
    
  • Documentation: To build the documentation:

    poetry install --with docs
    
  • Testing: To run tests:

    poetry install --with tests
    

You can combine multiple groups:

poetry install --with server,docs,tests