pysnow
ServiceNow HTTP client library
What it is and what it does
pysnow is a synchronous Python client for ServiceNow's REST API, built on top of requests and requests-oauthlib. It abstracts the HTTP layer and provides a query-builder interface to fetch, create, update, and delete records from ServiceNow tables. The library supports both basic authentication and OAuth, and uses ijson for efficient JSON streaming when handling large responses.
The package is in stable maintenance mode: the author has stated that no new features will be added, and development has shifted to aiosnow, an async alternative. If you are working with an existing ServiceNow integration or maintaining legacy code, pysnow remains functional, but for new projects you may want to evaluate aiosnow or direct REST calls depending on your async requirements.
Use it for:
- Automate incident or change ticket creation and updates from Python scripts or workflows.
- Query ServiceNow tables programmatically to extract data for reporting or integration with other systems.
- Build Python-based automation tools that interact with ServiceNow without writing raw HTTP requests.
- Sync ServiceNow records with external databases or applications via scheduled Python jobs.
- Implement custom ServiceNow integrations in legacy or synchronous Python applications.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
pysnow is a Python HTTP client library for interacting with ServiceNow APIs, providing methods to query, create, update, and delete records in ServiceNow instances.
Yes, if you are maintaining or extending an existing pysnow codebase or need a simple synchronous ServiceNow client for a legacy system. No, if you are starting a new project—the author explicitly recommends aiosnow for new development. The package is dormant (last release 2021-03-06) but has no known vulnerabilities and low install friction. Evaluate whether async support and active maintenance are important for your use case.
Install
pysnow on PyPI
pip
pip install pysnowuv
uv add pysnowpoetry
poetry add pysnowInstalling pysnow
Before you install
Installation is straightforward with low friction—seven common dependencies (requests, oauthlib, requests-oauthlib, six, ijson, python-magic, pytz). However, the package is dormant: last release was 2021-03-06, over 1987 days ago, and the author has moved new development to aiosnow. Maintenance is stated as stable but no new features will be added.
License in practice
MIT license (permissive) means you can use, modify, and distribute pysnow freely with minimal restrictions, provided you include the license notice.
Quickstart
pip install pysnow
from pysnow import Client
client = Client(host='instance.service-now.com', user='username', password='password')
records = client.query(table='incident', query={'state': 'open'})
Requires a ServiceNow instance with API access credentials (host, user, password or OAuth tokens).
Verify before relying
- Whether pysnow works reliably with current ServiceNow API versions and authentication methods.
- Performance characteristics and rate-limiting behavior when handling large result sets.
- Compatibility with Python 3.10+ (classifiers only list up to 3.9).
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 7 — requests, oauthlib, python-magic, requests-oauthlib, six, ijson, pytz |
| Maintenance | dormant — 1,987 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 294,796/month — #7,941 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: pysnow-0.7.17-py2.py3-none-any.whl
Tags
More WWW/HTTP packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
h11h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
httpxHTTPX is a fully featured HTTP client library…
permissive · top 100 on PyPI
httpcoreA minimal low-level HTTP client library that…
permissive · top 100 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
pysncPySnc provides a Python interface to…
permissive · top 15,000 on PyPI
nocodb-simple-clientA Python client library for NocoDB that…
permissive · top 15,000 on PyPI
airtableProvides a Python wrapper around Airtable's…
permissive · top 5,000 on PyPI
salesforce-apiWraps Salesforce's REST and SOAP APIs to…
permissive · top 15,000 on PyPI
infoblox-clientClient library for programmatic interaction…
permissive · top 15,000 on PyPI
PowerPlatform-Dataverse-ClientA Python client library for Microsoft Dataverse…
unclear · top 15,000 on PyPI
splunk-sdkProvides a Python client library for…
permissive · top 5,000 on PyPI
mfa-servicenow-mcpAn MCP server that connects ServiceNow…
permissive · top 15,000 on PyPI
fastapi-usersProvides ready-to-use user registration, login,…
permissive · top 5,000 on PyPI