Quickstart

Installation

For latest official version:

$ pip install --user django-slugify-processor

Or using uv:

$ uv tool install django-slugify-processor

Upgrading:

$ pip install --user --upgrade django-slugify-processor

Or with uv:

$ uv tool upgrade django-slugify-processor

Developmental releases

New versions of django-slugify-processor are published to PyPI as alpha, beta, or release candidates. In their versions you will see notification like a1, b1, and rc1, respectively. 1.10.0b4 would mean the 4th beta release of 1.10.0 before general availability.

  • pip:

    $ pip install --user --upgrade --pre django-slugify-processor
    
  • pipx:

    $ pipx install --suffix=@next 'django-slugify-processor' --pip-args '\--pre' --force
    // Usage: django-slugify-processor@next [args]
    
  • uv tool install:

    $ uv tool install --prerelease=allow django-slugify-processor
    
  • uv:

    $ uv add django-slugify-processor --prerelease allow
    
  • uvx:

    $ uvx --from 'django-slugify-processor' --prerelease allow django-slugify-processor
    

via trunk (can break easily):

  • pip:

    $ pip install --user -e git+https://github.com/tony/django-slugify-processor.git#egg=django-slugify-processor
    
  • pipx:

    $ pipx install --suffix=@master 'django-slugify-processor @ git+https://github.com/tony/django-slugify-processor.git@master' --force
    
  • uv:

    $ uv tool install django-slugify-processor --from git+https://github.com/tony/django-slugify-processor.git
    

Usage

For usage instructions, please refer to the README.