skillfed

openplantbook-sdk

Open Plantbook SDK for Python

openplantbook-sdk v0.6.1 102.0K downloads/30d#12,898 on PyPI1
Permissive license "MIT" AGING released

What it is and what it does

openplantbook-sdk is a Python client library for the Open Plantbook API, a web service that provides plant information including details and search functionality. It wraps the HTTP API in async-first Python methods, requiring registration and API credentials from the Open Plantbook website to authenticate requests.

The SDK is built on aiohttp for async HTTP communication and supports optional language localization via ISO 639-1 language codes. It targets Python 3.9 and above and is designed for developers integrating plant data into applications—typical use involves instantiating an OpenPlantBookApi client with credentials, then calling async methods to fetch plant details or search results.

Use it for:

  • Build a gardening app that looks up plant care requirements and metadata by plant name
  • Integrate plant identification and information into a home automation or IoT system
  • Create a plant database search interface with multi-language support for international users
  • Populate a plant catalog or reference tool with current data from Open Plantbook

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Python SDK for querying the Open Plantbook API to retrieve plant details and search plant information with optional language localization.

Yes, if you need to query Open Plantbook data and have valid API credentials. The low install friction, permissive license, and active (if infrequent) maintenance make it a straightforward choice for that specific use case. No, if you need a plant database that does not require external API registration or if you are unsure whether Open Plantbook's API meets your data or availability requirements.

Install

openplantbook-sdk on PyPI

pip

pip install openplantbook-sdk

uv

uv add openplantbook-sdk

poetry

poetry add openplantbook-sdk

Installing openplantbook-sdk

Before you install

Low install friction with only two runtime dependencies (aiohttp and json-timeseries). The package is aging—last updated 197 days ago—but the repository remains active and not archived, suggesting maintenance is infrequent rather than abandoned.

License in practice

MIT license is permissive, allowing use in commercial and private projects with minimal restrictions.

Quickstart

pip install openplantbook-sdk

from openplantbook_sdk import OpenPlantBookApi
import asyncio

async def main():
    api = OpenPlantBookApi("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET")
    details = await api.async_plant_detail_get("abelia chinensis", lang="en")
    print(details["display_pid"])

asyncio.run(main())

Requires valid Open Plantbook API credentials (client ID and secret) obtained by registering on the Open Plantbook website.

Verify before relying

  • Whether API credentials from Open Plantbook are freely available or require paid subscription
  • Current state of Open Plantbook API stability and uptime
  • Whether json-timeseries dependency is actually used by the SDK or is a metadata artifact

Package facts

License "MIT" (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 2 — aiohttp, json-timeseries
Maintenance aging — 197 days since the last release
Last repo commit
First released
Downloads 102,016/month — #12,898 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: openplantbook_sdk-0.6.1-py3-none-any.whl

Keywords: json, timeseries, iot, jts

Intended Audience :: DevelopersOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.9

Tags

plant database api clientopen plantbook sdkplant details lookupplant search apiasync plant information retrieval
plant-dataasync-api-client

More WWW/HTTP packages