Identifiers

Python Package Name (PEP 508)

Validate Python distribution package names per PEP 508: letters, digits, dots, underscores, hyphens.

Try it in RegexPro →

Available in

Pattern

regexengine-agnostic
^[A-Za-z0-9](?:[A-Za-z0-9._\-]*[A-Za-z0-9])?$

Raw source: ^[A-Za-z0-9](?:[A-Za-z0-9._\-]*[A-Za-z0-9])?$

How it works

Starts and ends with alphanumeric. Allows `_`, `.`, `-` in the middle. The single-char form (just an alphanumeric) is also valid. PEP 508 / PEP 503 normalize all of `_`, `.`, `-` to a single `-` for matching, but the underlying name on PyPI may use any.

Examples

Input

requests

Matches

  • requests

Input

django-rest-framework

Matches

  • django-rest-framework

Input

_invalid

No match

Common use cases

  • pip / poetry / uv config validation
  • PyPI package-name availability checks
  • Migration tooling between requirements formats
  • Auto-completion in package managers

Related patterns