--- id: netsuite version: "0.12.0" license: MIT license_treatment: permissive maintenance: aging --- # netsuite — Make async requests to NetSuite SuiteTalk SOAP/REST Web Services and Restlets License: permissive · Maintenance: aging · Downloads: 198.6K/mo ## 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 above — 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 pip install netsuite uv add netsuite 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_current - Install friction: low - Maintenance: aging - Downloads: 198.6K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags netsuite api client, async netsuite integration, netsuite soap rest, netsuite erp connector, netsuite suitalk, netsuite restlet client, netsuite web services, erp-integration, async-http, oauth [View on SkillFed](https://skillfed.io/packages/netsuite) · [View on PyPI](https://pypi.org/project/netsuite/)