vonage-users
Vonage Users package
What it is and what it does
vonage-users is a Python SDK subpackage for managing users within Vonage's communications platform. It wraps Vonage's Users API and provides a Pythonic interface to perform standard user lifecycle operations—listing, creating, retrieving, updating, and deleting users. The package models users with support for multiple communication channels (SMS, WhatsApp, and others) and returns results as Pydantic models for type safety and validation.
The package is designed to be used as part of the main vonage package rather than standalone. It depends on vonage-http-client for API communication, vonage-utils for shared utilities, and pydantic for data validation. It supports Python 3.9 through 3.13 and has low installation friction as a pure-Python wheel.
Use it for:
- Bulk import or provision users into a Vonage application with SMS or WhatsApp channels
- Retrieve and display a paginated list of users in a communications platform dashboard
- Update user contact information or channel preferences programmatically
- Delete inactive or test users from a Vonage application
- Manage user properties and metadata as part of a larger communications workflow
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Manages users in Vonage's communications platform via Python, providing methods to list, create, retrieve, update, and delete users with support for multiple communication channels.
Yes, if you are building on the Vonage platform and need to manage users programmatically. The package is actively maintained, has no known vulnerabilities, low install friction, and a permissive license. Install it as part of the main vonage package rather than standalone; verify compatibility with your Vonage integration pattern before adopting.
Install
vonage-users on PyPI
pip
pip install vonage-usersuv
uv add vonage-userspoetry
poetry add vonage-usersInstalling vonage-users
Before you install
Low install friction with a pure-Python wheel. Actively maintained as of 2026-07-20 with 213 repository stars. Three runtime dependencies (vonage-http-client, vonage-utils, pydantic) are standard for this use case.
License in practice
Licensed under Apache Software License (permissive), allowing commercial and private use with minimal restrictions.
Quickstart
from vonage_users import ListUsersRequest, User, Channels, SmsChannel
# List users
users, next_cursor = vonage_client.users.list_users()
# Create a user
user_options = User(
name='my_user_name',
display_name='My User Name',
channels=Channels(sms=[SmsChannel(number='1234567890')])
)
user = vonage_client.users.create_user(user_options)
Requires a vonage_client instance from the main vonage package; this is a subpackage not typically used standalone.
Verify before relying
- Whether this package can be used independently or only as part of the main vonage package
- Rate limits or quotas on user management operations
- Exact behavior and data structure of UserSummary objects returned by list_users
Package facts
| License | not declared (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — vonage-http-client, vonage-utils, pydantic |
| Maintenance | actively maintained — 114 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 336,254/month — #7,466 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: vonage_users-1.2.2-py3-none-any.whl
Tags
More Internet packages
Botocore provides low-level, data-driven access…
permissive · top 100 on PyPI
aiobotocoreProvides an async client for AWS services using…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
filelockProvides a platform-independent file locking…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
googleapis-common-protosProvides common Protocol Buffer message…
permissive · top 100 on PyPI
vonage-accountProvides Python bindings for Vonage's Account…
permissive · top 15,000 on PyPI
vonageVonage provides a unified Python interface to…
permissive · top 15,000 on PyPI
vonage-messagesProvides Python message models and client…
permissive · top 15,000 on PyPI
vonage-smsSends SMS messages via Vonage's API and handles…
permissive · top 15,000 on PyPI
vonage-verifyVonage Verify package provides Python…
permissive · top 15,000 on PyPI
vonage-voiceProvides Python bindings to Vonage's Voice API…
permissive · top 15,000 on PyPI
vonage-applicationManages Vonage applications through a Python…
permissive · top 15,000 on PyPI
vonage-subaccountsProvides Python bindings to Vonage's Subaccount…
permissive · top 15,000 on PyPI
vonage-numbersProvides Python bindings to Vonage's Numbers…
permissive · top 15,000 on PyPI
vonage-identity-insightsProvides Python access to the Vonage Identity…
permissive · top 15,000 on PyPI