skillfed

netsuite

Make async requests to NetSuite SuiteTalk SOAP/REST Web Services and Restlets

netsuite v0.12.0 198.6K downloads/30d#9,723 on PyPI119
Permissive license MIT AGING released

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 netsuite

uv

uv add netsuite

poetry

poetry add netsuite

Installing 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

Development Status :: 4 - BetaEnvironment :: Web EnvironmentIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9

Tags

netsuite api clientasync netsuite integrationnetsuite soap restnetsuite erp connectornetsuite suitalknetsuite restlet clientnetsuite web services
erp-integrationasync-httpoauth

More WWW/HTTP packages