skillfed

lazr.restfulclient

A programmable client library that takes advantage of the commonalities among lazr.restful web services.

lazr-restfulclient v4.0.0 478.7K downloads/30d#6,435 on PyPI
Copyleft license LGPL v3 Active released

What it is and what it does

lazr.restfulclient is a Python HTTP client library designed specifically for consuming lazr.restful web services. It sits on top of wadllib (which handles WADL—Web Application Description Language—parsing) and adds higher-level abstractions to simplify working with REST APIs that follow the lazr.restful conventions. The library handles authentication via oauthlib, makes HTTP requests through httplib2, and uses distro for platform detection.

The package is intended for developers building tools or integrations that need to talk to lazr.restful-based services. It abstracts away boilerplate HTTP and authentication logic, letting you work with REST resources as Python objects rather than raw HTTP calls. It supports Python 3.8 through 3.14 and is in production-stable status, making it suitable for production use in projects that depend on lazr.restful APIs.

Use it for:

  • Building command-line tools or scripts that interact with Launchpad or other lazr.restful services.
  • Automating workflows that require programmatic access to REST APIs following lazr.restful conventions.
  • Integrating lazr.restful-based services into larger Python applications without hand-coding HTTP requests.
  • Testing or monitoring lazr.restful web services by consuming their WADL descriptions and making authenticated calls.

Worth the install?

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

A programmable HTTP client library for lazr.restful web services that builds on wadllib to provide standardized access patterns across compatible REST APIs.

Yes, if you need to consume a lazr.restful web service. The library is actively maintained, has low install friction, no known security vulnerabilities, and is in production-stable status. The LGPL v3 copyleft license is standard for this project ecosystem and poses no barrier for most use cases. Install it only if you're actually targeting a lazr.restful API; it's not a general-purpose REST client.

Install

lazr-restfulclient on PyPI

pip

pip install lazr-restfulclient

uv

uv add lazr-restfulclient

poetry

poetry add lazr-restfulclient

Installing lazr.restfulclient

Before you install

Low friction install with a recent release (13 days old) and active maintenance status. Four runtime dependencies (distro, httplib2, oauthlib, wadllib) are all standard libraries with no known complications.

License in practice

Licensed under LGPL v3 (copyleft). You must disclose source code modifications and distribute under the same license if you distribute the package; internal use has no obligation.

Quickstart

pip install lazr-restfulclient

from lazr.restfulclient.client import RestfulClient

client = RestfulClient(service_root_uri, oauth_token=token)

Requires a valid lazr.restful service endpoint and OAuth credentials (token or consumer key/secret) for authentication.

Verify before relying

  • Whether wadllib is actively maintained and whether its stability affects this package's reliability.
  • Performance characteristics when handling large or complex REST API responses.
  • Specific lazr.restful service compatibility requirements beyond the library's own API.

Package facts

License LGPL v3 (copyleft)
Python support supports the current Python release (>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies 4 — distro, httplib2, oauthlib, wadllib
Maintenance actively maintained — 13 days since the last release
First released
Downloads 478,742/month — #6,435 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: lazr_restfulclient-4.0.0-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)Operating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9

Tags

lazr restful client libraryREST API client Pythonwadllib wrapperHTTP client for REST serviceslazr.restful web service client
rest-clientlazr-ecosystemwadl-based

More WWW/HTTP packages