Skip to main content

A flake8 plugin that helps you write tidier imports.

Project description

Flake8 Tidy Imports

https://img.shields.io/pypi/v/flake8-tidy-imports.svg https://img.shields.io/travis/adamchainz/flake8-tidy-imports.svg

A flake8 plugin that helps you write tidier imports.

  • Free software: ISC license

Installation

Install from pip with:

pip install flake8-tidy-imports

It will then automatically be run as part of flake8; you can check it has been picked up with:

$ flake8 --version
2.4.1 (pep8: 1.7.0, pyflakes: 0.8.1, flake8-tidy-imports: 1.0.0, mccabe: 0.3.1) CPython 2.7.11 on Darwin

Options

banned-modules

An equals-delimited map of modules to messages to include about them, in rule I201 (see below). Whilst it can be passed on the commandline, it’s much easier to configure it in your config file, such as setup.cfg - for example:

[flake8]
banned-modules = mock = Use unittest.mock!
                 urlparse = Use six.moves.urllib.parse!

Rules

Currently this plugin has two rules.

I200: Unnecessary import alias

Complains about unnecessary import aliasing of three forms:

  • import foo as foo -> import foo

  • import foo.bar as bar -> from foo import bar

  • from foo import bar as bar -> from foo import bar

The message includes the suggested rewrite (which may not be correct at current), for example:

$ flake8 file.py
file.py:1:1: I200 Unnecessary import alias - rewrite as 'from foo import bar'.

I201: Banned module ‘foo’ imported

Complains about importing of banned modules. This might be useful when refactoring code, for example when moving from Python 2 to 3. By default there are no modules banned - you should configure them with banned-modules as described above in ‘Options’.

The message includes a user-defined part that comes from the configuration. For example:

$ flake8 file.py
file.py:1:1: I201 Banned module 'mock' imported - Use unittest.mock instead.

History

Pending Release

  • New release notes here

1.0.2 (2016-07-04)

  • Fixed I201 rule to detect banned imports like from x import y.

1.0.1 (2016-07-01)

  • I201 rule that allows you to configure complaining about certain modules being imported, e.g. if you are moving from Python 2 to 3 you could stop urlparse being imported in favour of six.moves.urllib.parse.

1.0.0 (2016-01-23)

  • First release on PyPI.

  • I200 rule that complains about unnecessary import aliasing, e.g. from foo import bar as bar.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flake8-tidy-imports-1.0.2.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

flake8_tidy_imports-1.0.2-py2.py3-none-any.whl (6.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file flake8-tidy-imports-1.0.2.tar.gz.

File metadata

File hashes

Hashes for flake8-tidy-imports-1.0.2.tar.gz
Algorithm Hash digest
SHA256 ea06941905bf62eec6ce360d4e898b11b4643d1f460102d2fd6cd21919cef6a8
MD5 a2683ce968731d47fe955489fb6cde83
BLAKE2b-256 ef634eeaeee31c743926382e172e4144c460a6f213f2b9afdfa260d491e0d599

See more details on using hashes here.

File details

Details for the file flake8_tidy_imports-1.0.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for flake8_tidy_imports-1.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1a5ac21f01b85b62aebe84f5f5e6d147212090c1d5ff71cf9b9dc4ef3e4713bd
MD5 2e5b9f6e119aca8286a77ba73c4b3390
BLAKE2b-256 071b29bbce74e249e844c4f1a24170866138d8ca4c2a5eafdf4c4d2ceda60f72

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page