skillfed

urlpath

Object-oriented URL from urllib.parse and pathlib

urlpath v2.0.0 133.7K downloads/30d#11,499 on PyPI23
Permissive license MIT AGING released

What it is and what it does

URLPath is a Python library that wraps URL strings in an object-oriented interface modeled after pathlib.PurePath, treating URLs as hierarchical paths. It lets you decompose URLs into components (scheme, netloc, username, password, hostname, port, path, query, fragment), navigate and manipulate them using familiar path operators (/ for joining, .parent for going up), and rebuild URLs with modified parts using methods like with_scheme(), with_query(), and with_fragment().

Beyond path operations, URLPath integrates requests to let you call HTTP verbs (get, post, put, patch, delete) directly on URL objects, and provides a "jailed" mode to restrict path traversal outside a root URL. It handles query strings as both raw strings and as form field tuples, and preserves trailing slashes. The package targets developers who want to work with URLs programmatically without manually parsing and reconstructing URL strings.

Use it for:

  • Build URLs dynamically by composing path segments and query parameters using pathlib-like operators instead of string concatenation.
  • Extract and modify individual URL components (hostname, port, credentials, query fields) without regex or manual parsing.
  • Make HTTP requests directly from URL objects using get(), post(), put(), patch(), delete() methods.
  • Restrict URL navigation to a root domain using jailed mode to prevent accidental traversal to external hosts.
  • Normalize and compare URLs by treating them as structured objects with predictable component access.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

URLPath extends pathlib.PurePath to treat URLs as filesystem-like objects, letting you manipulate URL components (scheme, netloc, path, query, fragment) using familiar path operations and make HTTP requests directly from URL objects.

Yes, if you work with URLs programmatically and prefer object-oriented manipulation over string parsing. The low install friction, permissive MIT license, and stable API make it a safe dependency. The aging maintenance status (last release 305 days ago) is not a blocker for a mature library with no known vulnerabilities, but monitor the repository for critical fixes. Not necessary if you only build URLs occasionally or are already comfortable with urllib.parse.

Install

urlpath on PyPI

pip

pip install urlpath

uv

uv add urlpath

poetry

poetry add urlpath

Installing urlpath

Before you install

Low install friction: pure Python wheel with only two runtime dependencies (requests and charset-normalizer). Maintenance signal is aging—last release was 305 days ago, though the repository remains active and the package has been stable since its 2015 initial release.

License in practice

MIT license is permissive; you can use, modify, and distribute URLPath freely in commercial and private projects with minimal restrictions.

Quickstart

pip install urlpath

from urlpath import URL

url = URL('https://example.com/path?field=value#fragment')
print(url.scheme)  # 'https'
print(url.hostname)  # 'example.com'
print(url.path)  # '/path'
response = url.get()  # Make HTTP GET request

Requires Python 3.9 or later.

Verify before relying

  • Whether optional dependencies (JMESPath, WebOb) are actually used by the package or are legacy references.
  • Performance characteristics when manipulating very large or complex URLs.
  • Whether the jailed mode fully prevents directory traversal attacks or is a convenience feature only.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 2 — charset-normalizer, requests
Maintenance aging — 305 days since the last release
Last repo commit
First released
Downloads 133,666/month — #11,499 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: urlpath-2.0.0-py3-none-any.whl

Keywords: http, pathlib, requests, uri, url, urllib

Development Status :: 5 - Production/StableEnvironment :: Web EnvironmentIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.9Topic :: Internet :: WWW/HTTPTopic :: Software Development :: Libraries :: Python Modules

Tags

url manipulation pathlibobject-oriented url parsingurl path operationshttp requests from url objectsurl component editingurllib alternativeurl query string builder
url-manipulationpathlib-stylehttp-requests

More Python Modules packages