Registry / http-networking / pybiolib

pybiolib

JSON →
library1.3.489pypypi✓ verified 88d ago

BioLib Python Client for accessing BioLib platform services. Current version 1.3.489, actively maintained with frequent releases.

pip install pybiolib
INSTALL
IMPORT
SIG · PYBIOLIB
P
pybiolib
http-networkingpythonv1.3.489
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

biolib
✓ import biolib
✗ from pybiolib import biolib
PyPI package name differs from import name

Initialize BioLib client, list tools, and run a tool.

import biolib # Set your API token (get from BioLib dashboard) biolib.api_key = os.environ.get('BIOLIB_API_KEY', '') # Create a session session = biolib.Session() # List available tools tools = session.list_tools() print(tools) # Run a tool result = session.run('tool_id', inputs={'param': 'value'}) print(result)
biolib --version
Debug
Known issues
breakingIn version 1.3+, the import path changed from pybiolib to biolib. Old imports will fail.
fix
Use 'import biolib' instead of 'import pybiolib'.
affects: >=1.3.0
gotchaAPI key must be set before creating a Session. Setting it afterward has no effect.
fix
Set biolib.api_key immediately after import.
affects: all
deprecatedThe old session initialization method biolib.Session(api_key='...') is deprecated. Use biolib.api_key assignment instead.
fix
Set biolib.api_key = 'your_key', then session = biolib.Session().
affects: >=1.2.0
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'pybiolib'
Importing with the wrong module name.
fix
Use 'import biolib' (not 'import pybiolib').
biolib.exceptions.AuthenticationError: Invalid API key
API key not set or incorrect.
fix
Generate a valid API key from BioLib dashboard and set it: biolib.api_key = 'your_key_here'.
Upgrade
Version history
1.3.489latest on PyPI · released May 8, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources