awesome-slugify: A Flexible Python Slugify Function
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
awesome-slugify is a powerful and flexible Python library designed for converting text into clean, URL-friendly slugs. It offers extensive customization options, including separators, case conversion, and length limits. The library also supports unique slug generation and comes with predefined configurations for various languages and use cases.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
awesome-slugify is a highly flexible Python library designed for converting text into clean, URL-friendly slugs. It provides robust functionality to transform various text inputs into consistent formats, handling special characters, spaces, and case sensitivity with ease. This library is ideal for generating slugs for URLs, filenames, or any other context requiring sanitized string representations.
Installation
Installing awesome-slugify is straightforward using pip:
pip install awesome-slugify
Examples
Here are some examples demonstrating the versatility of awesome-slugify:
from slugify import slugify, Slugify, UniqueSlugify
from slugify import slugify_url, slugify_filename
from slugify import slugify_ru, slugify_de
# Basic usage
slugify('Any text') # 'Any-text'
# Customization
slugify('Any text', to_lower=True) # 'any-text'
# Using Slugify class for persistent options
custom_slugify = Slugify(to_lower=True)
custom_slugify('Any text') # 'any-text'
custom_slugify.separator = '_'
custom_slugify('Any text') # 'any_text'
# Generating unique slugs
unique_slug_gen = UniqueSlugify()
unique_slug_gen('Any text') # 'any-text'
unique_slug_gen('Any text') # 'any-text-1'
# Predefined slugify functions
slugify_filename('?r?ft ?2.txt') # Draft_2.txt
slugify_url('?r?ft ?2.txt') # draft-2-txt
# Custom pretranslation
my_slugify = Slugify()
my_slugify.separator = '.'
my_slugify.pretranslate = {'?': 'i', '?': 'love'}
my_slugify('? ? ????') # I.love.borshch
# Language-specific slugification
slugify_ru('? ? ????') # Ya-borsch
slugify_de('ÜBER Über slugify') # UEBER-Ueber-slugify
Why Use It
awesome-slugify stands out due to its extensive customization options and powerful features:
- Flexibility: Offers fine-grained control over slug generation with parameters like
to_lower,max_length,separator,capitalize,pretranslate,safe_chars, andstop_words. - Unique Slug Generation: The
UniqueSlugifyclass ensures that generated slugs are unique, which is crucial for database entries or file systems. - Predefined Configurations: Comes with ready-to-use slugifiers for common scenarios, such as
slugify_urlandslugify_filename, and supports various languages like Russian, German, and Greek. - Custom Unique Checker: Allows integration with external systems, such as databases, to verify slug uniqueness.
- Easy Integration: Simple API makes it easy to incorporate into any Python project.
Links
- GitHub Repository: https://github.com/voronind/awesome-slugify
- PyPI Package: https://pypi.python.org/pypi/awesome-slugify
Related repositories
Similar repositories that may be relevant next.

Open Index: A Deterministic Memory Layer for Your AI Agents
September 16, 2026
Open Index is a powerful tool for building domain-specific, accurate, and structured data that AI agents can effectively operate on. It enables the creation of a "brain," a searchable and continuously improving context graph tailored to any domain. This system ensures agents have access to reliable, up-to-date information, enhancing their capabilities and decision-making processes.
tooltrim: Drastically Reduce LLM Agent Tool Output Tokens, Improve Accuracy
September 16, 2026
tooltrim provides drop-in compression for LLM agent tool outputs, drastically cutting tokens while often improving answer accuracy. This provider-agnostic solution offers content-aware compression, faithfulness benchmarks, and seamless integration with popular frameworks or as an OpenAI-compatible proxy.

AgentShield: Python Firewall for AI Agent Spend Control
September 16, 2026
AgentShield is a pure Python library designed to prevent runaway AI agents from exceeding budget limits. It offers 10 composable spend rules, evaluated in under 1ms, providing robust cost control. Although its core development has transitioned to sipi.bot, the AgentShield Python package remains available for existing users and its test fixtures are open-source.

DA-Forge: Streamlining Declarative Agent Creation for Copilot Notebooks
September 12, 2026
DA-Forge is a Python-based tool by Microsoft designed to automate the creation and deployment of Declarative Agents for Copilot Notebooks. It significantly reduces the manual effort and time required to set up AI assistants with specific grounding references, transforming an 85-minute process into just a few minutes. This tool is essential for developers and researchers working with Copilot Notebooks and Declarative Agents.
Source repository
Open the original repository on GitHub.
17 counted GitHub visits