sourcery-analytics is a library and command-line interface (CLI) for analyzing the code quality of Python packages, modules, or source code.
Project description
Sourcery Analytics
sourcery-analytics
is a command line tool and library for statically analyzing Python code quality.
Get started by installing using pip
:
pip install sourcery-analytics
This will install sourcery-analytics
as a command-line tool.
To identify code quality issues:
sourcery-analytics assess path/to/file.py
Example:
sourcery-analytics assess sourcery_analytics/metrics
sourcery_analytics/metrics/cyclomatic_complexity.py:47: error: working_memory of cyclomatic_complexity is 34 exceeding threshold of 20
Found 1 errors.
To analyze a single Python file, use the analyze
subcommand:
sourcery-analytics analyze path/to/file.py
Example:
sourcery-analytics analyze sourcery_analytics/analysis.py
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓
┃ Method ┃ length ┃ cyclomatic_complexity ┃ cognitive_complexity ┃ working_memory ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩
│ sourcery_analytics.analysis.analyze │ 5 │ 1 │ 0 │ 8 │
│ sourcery_analytics.analysis.analyze_methods │ 4 │ 1 │ 1 │ 12 │
└─────────────────────────────────────────────┴────────┴───────────────────────┴──────────────────────┴────────────────┘
Alternatively, import and run analysis using the library:
from sourcery_analytics import analyze_methods
source = """
def cast_spell(self, spell):
if self.power < spell.power:
raise InsufficientPower
print(f"{self.name} cast {spell.name}!")
"""
analyze_methods(source)
# [{'method_qualname': '.cast_spell', 'method_length': 3, 'method_cyclomatic_complexity': 1, 'method_cognitive_complexity': 1, 'method_working_memory': 6}]
For more, see the docs.
Repoanalysis.com
You can see how hundreds of top projects measure across different code quality metrics and see how your priojects compare at repoanalysis.com
Developed by Sourcery
Sourcery Analytics was originally developed by the team at Sourcery. Sourcery is an automated coding assistant to help Python developers review and improve their code while they work. Sourcery has a built in library of 100+ core rules and you can extend it further to create custom rules for any scenario.
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 sourcery-analytics-1.1.0.tar.gz
.
File metadata
- Download URL: sourcery-analytics-1.1.0.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.9 Linux/5.13.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0e3b698dd52bca402ebc96b05e240d910347d697e0bd68c1c1bd7bc3b79559d |
|
MD5 | 2ecf4d1f48d3f341186c4b7eba69d6fa |
|
BLAKE2b-256 | a04d11d8d1bd512ec6ed0f227476f1cf7301b1afbd24e3334e896577eca60b72 |
File details
Details for the file sourcery_analytics-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: sourcery_analytics-1.1.0-py3-none-any.whl
- Upload date:
- Size: 25.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.9 Linux/5.13.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d43bdd06a319766518329d44064c8ffc88bde890baea027633420a53bf589c07 |
|
MD5 | f9939d8d3938abdd32e7004b363b3dfd |
|
BLAKE2b-256 | 394c0527fbfa9cc9ba1a89ed43e8d2aff33bd6d2d375ded2d479f59c37a82349 |