Magically refactor Python
Project description
Sourcery Command Line Interface
Installation and usage
Installation
Sourcery command line interface can be installed by running:
pip install sourcery
Login
Once installed you need to log in with:
sourcery login
which will open up a browser tab and ask for confirmation. This is only needed once per computer.
You can also log in via providing your token:
sourcery login --token YOUR_TOKEN
Usage
To review a file or a directory (recursively) with Sourcery, use the
sourcery review
command:
sourcery review example_file.py
To apply the changes suggested by Sourcery, use the --fix
option:
sourcery review --fix {file_or_directory}
Command Line Options
Sourcery provides a few options for running. You can list them by running
sourcery review --help
sourcery review --help
Usage: sourcery review [OPTIONS] [SRC]...
Review SRC files/directories. Reads from stdin when SRC is -
Options:
--diff TEXT Run only on changed code with diff command (e.g.
"git diff")
--enable TEXT Only run the specified rule or tag. This option
can be used multiple times.
--disable TEXT Skip the specified rule or tag. This option can
be used multiple times.
--check Return exit code 1 if unsolved issues found.
--fix Automatically fix issues where possible.
--config FILE Location of the Sourcery YAML config file. Can be
a file or URL.
--csv Output in CSV format
--verbose Verbose output with explanation and code
snippets.
--summary / --no-summary Flag to determine whether to print a summary of
the review. Default: true.
-h, --help Show this message and exit.
Configuration
Sourcery reads configuration settings from .sourcery.yaml
in the project
directory. Full details are described
here.
Pre-commit Hook
Sourcery works great with pre-commit. Once you
have it installed, add this to the
.pre-commit-config.yaml
in your repository:
repos:
- repo: https://github.com/sourcery-ai/sourcery
rev: v1.23.1b2
hooks:
- id: sourcery
# The best way to use Sourcery in a pre-commit hook:
# * review only changed lines:
# * omit the summary
args: [--diff=git diff HEAD, --no-summary]
To review all changes compared to the main
branch:
args: [--diff=git diff main]
If you want Sourcery to automatically apply the suggested changes,add the
--fix
option:
args: [--diff=git diff HEAD, --fix]
If Sourcery is the first pre-commit hook that you've added to your project,
you'll also need to run pre-commit install
.
Continuous Integration
For the majority of projects, the best usage of Sourcery in the CI is to review only the code of the current PR.
You can use the script below to detect Sourcery violations that are present in
the current code but not in the main
branch:
pip install sourcery
# Store your Sourcery token as a secret in your CI environment.
sourcery login --token $SOURCERY_TOKEN
sourcery review --diff "git diff main" .
Instead of main
, you can pick another branch as well. For example, in GitHub
Actions you can use
--diff="git diff ${{ github.event.pull_request.base.sha }}"
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 Distributions
Built Distributions
Hashes for sourcery_nightly-1.23.1b2-py2.py3-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78b1eaba950c6a77ebf2c159687f8216c2a4e0b5992320fda01b36a8dc83a9eb |
|
MD5 | 74d8b2f49d45097eff4c9294e7476ec9 |
|
BLAKE2b-256 | 14f8b6a35f5223c0580870f511aaf1299fca412c6e00b0481b00214fc2200215 |
Hashes for sourcery_nightly-1.23.1b2-py2.py3-none-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ad32ef321395a92e8ace291ad5951ae29c1107e8df537881c821b4692fb0cc3 |
|
MD5 | 3b498cd52c5cee2d43b5da8b2c53e978 |
|
BLAKE2b-256 | 098f0b9973b6552dc02c7d8d0a76db3a49a942bb975df1d1784e86971c891003 |
Hashes for sourcery_nightly-1.23.1b2-py2.py3-none-macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2f8b8afa65350d31e1eb20597cba2579d488c42233e6ef8ce5e5632d7eaf244 |
|
MD5 | e82501d9992efbf67bd5196428be72b5 |
|
BLAKE2b-256 | 421b0d23a20e4ec61d18bd99e2617cd51cab3c40f8134200a5696112cd2c88bb |