skillfed

padelpy

A Python wrapper for PaDEL-Descriptor software

padelpy v0.1.17 92.2K downloads/30d#13,465 on PyPI233
Permissive license MIT Active released

What it is and what it does

PaDELPy is a thin Python wrapper around the PaDEL-Descriptor Java engine, a well-established tool for computing molecular descriptors and fingerprints. It exposes PaDEL's command-line interface through Python functions, allowing you to calculate chemical features from SMILES strings, MDL MolFiles, and SDF files without needing to invoke the CLI directly.

The package bundles the PaDEL JAR and dependencies, so no separate download is needed. It provides high-level helpers (`from_smiles`, `from_mdl`, `from_sdf`) that return descriptor values as dictionaries or lists of dictionaries, plus a lower-level `padeldescriptor` function for direct CLI control. It has no Python dependencies beyond the standard library, but requires a Java 8+ runtime on your system PATH.

Use it for:

  • Calculate molecular descriptors for machine learning pipelines in drug discovery or materials science
  • Batch-process SMILES strings or structure files to extract chemical fingerprints for similarity searches
  • Generate both 2D and 3D descriptors with optional tautomer standardization and aromaticity detection
  • Export descriptor results to CSV for downstream analysis in data science workflows
  • Parallelize descriptor computation across multiple molecules using the threads parameter

Worth the install?

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

PaDELPy wraps the PaDEL-Descriptor Java engine to compute molecular descriptors and fingerprints from chemical structures in SMILES, MDL MolFile, and SDF formats.

Yes, if you need PaDEL-Descriptor's specific descriptor set and have Java 8+ available. The package is actively maintained, has no Python dependencies, and integrates cleanly into cheminformatics workflows. Install it if you're already committed to PaDEL's descriptor types; if you're exploring alternatives, consider RDKit or Mordred first, as they have different descriptor engines and dependency profiles.

Install

padelpy on PyPI

pip

pip install padelpy

uv

uv add padelpy

poetry

poetry add padelpy

Installing padelpy

Before you install

Low install friction: pure Python wheel with no runtime dependencies beyond the standard library. Wheels are large (20+ MB) because they bundle the PaDEL JAR and libraries, but installation is straightforward. Repository is active with recent releases.

License in practice

MIT license is permissive, allowing commercial and private use with minimal restrictions. You may use, modify, and distribute this package freely as long as you include the license notice.

Quickstart

pip install padelpy

from padelpy import from_smiles

# Compute descriptors for a molecule
descriptors = from_smiles("CCC")

# Compute descriptors and fingerprints
desc_fp = from_smiles("CCC", fingerprints=True)

Requires Java Runtime Environment (JRE) 8+ on PATH; verify with `java -version`. Python 3.10 or later required.

Verify before relying

  • Performance characteristics and typical runtime for descriptor calculation on large molecule batches
  • Specific descriptor and fingerprint types available beyond PubChem fingerprints mentioned
  • Memory requirements for processing large SDF or MDL files

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 23 days since the last release
Last repo commit
First released
Downloads 92,235/month — #13,465 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: padelpy-0.1.17-py3-none-any.whl

License :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13

Tags

molecular descriptor calculationchemical fingerprints pythonsmiles to descriptorspadel descriptor wrappermolecular feature extractioncheminformatics descriptorssdf mdl file processing
cheminformaticsmolecular-descriptorsjava-wrapper

More Scientific/Engineering packages