Back to Paddleocr

PaddleOCR official API SDKs

api_sdk/README.md

3.7.01.7 KB
Original Source

PaddleOCR official API SDKs

English | 简体中文

This directory contains source-adjacent maintainer files for the PaddleOCR official API SDKs. The SDKs call hosted PaddleOCR official API services; they do not run local PaddleOCR inference or load local models.

The official user documentation:

Maintainer Files

FilePurpose
typescript/README.mdPackage-level README for the TypeScript SDK.
go/README.mdPackage-level README for the Go SDK.

The Python SDK is part of the main paddleocr package.

Package Locations

LanguageSource locationUser docs
Python../paddleocrPython SDK
TypeScripttypescriptTypeScript SDK
GogoGo SDK

Validation

Run these from the PaddleOCR repo root directory:

bash
# Python
python -m pytest tests/api_client/

# TypeScript
cd api_sdk/typescript
npm run lint
npm test

# Go
cd ../go
go test ./...