Python tool to find and list requirements of a Python project
Project description
Requirements Detector
Status
About
requirements-detector
is a simple Python tool which attempts to find and list the requirements of a Python project.
When run from the root of a Python project, it will try to ascertain which libraries and the versions of those libraries that the project depends on.
It uses the following methods in order, in the root of the project:
- Parse
setup.py
(if this is successful, the remaining steps are skipped) - Parse
pyproject.yoml
(if atool.poetry.dependencies
section is found, the remaining steps are skipped) - Parse
requirements.txt
orrequirements.pip
- Parse all
*.txt
and*.pip
files inside a folder calledrequirements
- Parse all files in the root folder matching
*requirements*.txt
orreqs.txt
(so for example,pip_requirements.txt
would match, as wouldrequirements_common.txt
)
Usage
detect-requirements [path]
If path
is not specified, the current working directory will be used.
Output
The output will be plaintext, and match that of a pip requirements file, for example:
Django==1.5.2
South>=0.8
anyjson
celery>=2.2,<3
Usage From Python
>>> import os
>>> from requirements_detector import find_requirements
>>> find_requirements(os.getcwd())
[DetectedRequirement:Django==1.5.2, DetectedRequirement:South>=0.8, ...]
If you know the relevant file or directory, you can use from_requirements_txt
, from_setup_py
or from_requirements_dir
directly.
>>> from requirements_detector import from_requirements_txt
>>> from_requirements_txt("/path/to/requirements.txt")
[DetectedRequirement:Django==1.5.2, DetectedRequirement:South>=0.8, ...]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file requirements_detector-1.3.2.tar.gz
.
File metadata
- Download URL: requirements_detector-1.3.2.tar.gz
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.11.1 readme-renderer/43.0 requests/2.32.3 requests-toolbelt/1.0.0 urllib3/2.2.3 tqdm/4.66.5 importlib-metadata/8.5.0 keyring/25.4.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af5a3ea98ca703d14cf7b66751b2aeb3656d02d9e5fc1c97d7d4da02b057b601 |
|
MD5 | ce1ce2713b47bd8065228033fcbcd54e |
|
BLAKE2b-256 | aeeab654d7fd76455adaf734a29dcd68026fde31059dbeb99af05e4e15fc5258 |
File details
Details for the file requirements_detector-1.3.2-py3-none-any.whl
.
File metadata
- Download URL: requirements_detector-1.3.2-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.11.1 readme-renderer/43.0 requests/2.32.3 requests-toolbelt/1.0.0 urllib3/2.2.3 tqdm/4.66.5 importlib-metadata/8.5.0 keyring/25.4.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7595a32a21e5273dd54d3727bfef4591bbb96de341f6d95c9671981440876ee |
|
MD5 | 69237538947a5bdcdf2d921676136b1d |
|
BLAKE2b-256 | 5d4b1f4cd2279b6b72b84a3db3bcd7bd408e44dbd56afd1b8bcb9cbfa824cf5c |