netsuite
Make async requests to NetSuite SuiteTalk SOAP/REST Web Services and Restlets
What it is and what it does
netsuite is an async Python client for integrating with NetSuite's ERP platform via its SuiteTalk APIs. It supports REST Web Services, SOAP APIs, and Restlets, allowing developers to query, create, and update NetSuite records programmatically. The package wraps authentication (OAuth via authlib and oauthlib) and HTTP transport (httpx) with data validation (pydantic), exposing a single async interface across multiple NetSuite API flavors.
The library is designed for applications that need to sync data with NetSuite, automate workflows, or build custom integrations. It supports optional features like faster JSON parsing (orjson) and a command-line interface. The package targets modern Python (3.8–3.12) and is in Beta status, indicating it is usable but may still evolve.
Use it for:
- Sync customer or transaction data between NetSuite and an external system using async batch operations.
- Build a custom REST API that queries NetSuite records on demand without blocking the calling application.
- Automate NetSuite workflows by creating or updating records in response to external events.
- Integrate NetSuite with a data pipeline or ETL tool that requires async HTTP capabilities.
- Develop a CLI tool to manage NetSuite data from the command line using the optional CLI feature.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Async client for NetSuite's SuiteTalk SOAP, REST Web Services, and Restlets APIs, enabling programmatic integration with NetSuite ERP systems.
Yes, if you need to integrate with NetSuite and require async I/O. The package has low install friction, permissive licensing, and no known vulnerabilities. However, the 893-day release gap combined with aging maintenance status suggests caution: verify that it supports your NetSuite API version and monitor the repository for active development before committing to production use.
Install
netsuite on PyPI
pip
pip install netsuiteuv
uv add netsuitepoetry
poetry add netsuiteInstalling netsuite
Before you install
Low friction installation with pure-Python wheels. Maintenance is aging—last release was 893 days ago (2024-03-04), though the repository remains active with a recent commit (2025-06-02) and modest community engagement (119 stars).
License in practice
MIT license is permissive; you can use, modify, and distribute this package freely in commercial or private projects with minimal restrictions.
Quickstart
pip install netsuite
import asyncio
from netsuite import NetSuiteClient
async def main():
client = NetSuiteClient(account='account_id', consumer_key='key', consumer_secret='secret')
# Make async requests to NetSuite APIs
asyncio.run(main())
Requires Python 3.8 or later. NetSuite account credentials (account ID, consumer key, consumer secret) are needed for authentication.
Verify before relying
- Whether the 893-day gap since last release indicates active maintenance or stalled development despite recent repo activity.
- Current compatibility with recent NetSuite API versions and whether breaking changes have occurred.
- Performance characteristics and throughput limits for async request handling.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.8) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — authlib, httpx, pydantic, oauthlib |
| Maintenance | aging — 893 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 198,639/month — #9,723 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: netsuite-0.12.0-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
netsuitesdkA Python SDK that wraps NetSuite's SOAP web…
permissive · top 15,000 on PyPI
onvif-zeep-asyncAsync Python client for ONVIF IP cameras using…
permissive · top 15,000 on PyPI
salesforce-apiWraps Salesforce's REST and SOAP APIs to…
permissive · top 15,000 on PyPI
Salesforce-FuelSDKProvides Python bindings to Salesforce…
permissive · top 15,000 on PyPI
polarionProvides a Python client for interacting with…
permissive · top 15,000 on PyPI
Salesforce-FuelSDK-SansProvides Python bindings to Salesforce…
permissive · top 15,000 on PyPI
slack-sdkProvides Python bindings for Slack's Web API,…
permissive · top 1,000 on PyPI
zeepZeep is a Python SOAP client that handles SOAP…
permissive · top 1,000 on PyPI
suds-jurkoProvides a lightweight SOAP client for calling…
copyleft · top 15,000 on PyPI
slackclientProvides Python interfaces to Slack's Web API…
permissive · top 5,000 on PyPI