Registry / data / sprime

sprime

JSON →
library0.2.2pypypi✓ verified 88d ago

sprime is a biomedical library for screening high-throughput screening data in preclinical drug studies. Current version 0.2.2, requires Python >=3.8, released irregularly.

pip install sprime
INSTALL
IMPORT
SIG · SPRIME
S
sprime
datapythonv0.2.2
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.

sprime
✓ import sprime
✗ from sprime import sprime
sprime is a package; top-level import is correct.

Basic usage: import the package and call compute_sprime.

import sprime # Example: compute S' values (sprime's primary function) result = sprime.compute_sprime(data=...) # data should be a list or array print(result)
Debug
Known issues
breakingv0.2.0 introduced breaking changes for S' values calculated from raw data. Old results are not comparable.
fix
Upgrade to >=0.2.0 and re-run analysis with new API.
affects: <0.2.0
gotchaThe package name 'sprime' is also the top-level module. Do not use 'from sprime import sprime', just import sprime.
fix
Use 'import sprime' or 'from sprime import some_function'.
affects: all
gotchaData format must be numeric array-like (list or numpy array). Passing non-numeric data may cause cryptic errors.
fix
Ensure input data is numeric (e.g., list of floats).
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'sprime'
Package not installed or import used incorrectly.
fix
Run 'pip install sprime' and then 'import sprime'.
TypeError: compute_sprime() missing 1 required positional argument: 'data'
Missing required argument.
fix
Provide a data array: compute_sprime(data=your_data).
Upgrade
Version history
0.2.2latest on PyPI · released Mar 22, 2026
Audit
Dependencies
numpyrequiredCore dependency for numerical operations
pandasrequiredData manipulation and analysis
Agent activity
11 hits · last 30 days
node
8
OpenAI (training)
1
Resources
sprime — pip install sprime · libregistry