Skip to main content

Flake8 and pylama plugin that checks the ordering of import statements.

Project description

Build Status

A flake8 and Pylama plugin that checks the ordering of your imports.

In general stdlib comes first, then 3rd party, then local packages, and that each group is individually alphabetized, see Configuration section for details.

It will not check anything else about the imports. Merely that they are grouped and ordered correctly.

This plugin is under somewhat active development and is heavily influenced by the personal preferences of the developers of cryptography. Expect seemingly random changes and configuration changes as we figure out how it should work.

Warnings

This package adds 3 new flake8 warnings

  • I100: Your import statements are in the wrong order.

  • I101: The names in your from import are in the wrong order.

  • I201: Missing newline between sections or imports.

Configuration

You will want to set the application-import-names option to a comma separated list of names that should be considered local to your application. These will be used to help categorise your import statements into the correct groups. Note that relative imports are always considered local.

import-order-style controls what style the plugin follows (cryptography is the default):

  • cryptography - see an example

  • google - style described in Google Style Guidelines, see an example

  • smarkets - style as google only with import statements before from X import … statements, see an example

  • pep8 - style that only enforces groups without enforcing the order within the groups

Limitations

Currently these checks are limited to module scope imports only. Conditional imports in module scope will also be ignored.

Classification of an imported module is achieved by checking the module against a stdlib list and then if there is no match against the application-import-names list. Only if neither of the lists contain the imported module will it be classified as third party.

I201 only checks that groups of imports are not consecutive and only takes into account the first line of each import statement. This means that multi-line from imports, comments between imports and so on may cause this error not to be raised correctly in all situations. This restriction is due to the data provided by the stdlib ast module.

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-import-order-0.9.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

flake8_import_order-0.9-py2.py3-none-any.whl (12.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file flake8-import-order-0.9.tar.gz.

File metadata

File hashes

Hashes for flake8-import-order-0.9.tar.gz
Algorithm Hash digest
SHA256 daa0aa966807f5d0e5913c9a66c320b4e45483607da9908e992ed18a218badf0
MD5 88bb3a9eb6ddec9057c6c6c3a500dd58
BLAKE2b-256 908d92ea57e7527102227dbb1bf203cdd1bf5e26a699557ca1e303862396b7bc

See more details on using hashes here.

Provenance

File details

Details for the file flake8_import_order-0.9-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for flake8_import_order-0.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 dd70128808c3f94b44841f398a638413dd416ecaeb1ae0820315b0adb3e42657
MD5 8919dd99192e9f209cfe19f44012fb83
BLAKE2b-256 b7a58bcc5ef91d2cb7725949f2da3dbc710aefff654e5778d9d20f169e909e98

See more details on using hashes here.

Provenance

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