Skip to main content

ruler501's flake8-import-order plugin.

Project description

flake8-import-order-ruler501

A flake8-import-order ordering definition, defining ruler501's preferred import order style. Originally based on flake8-import-order-grok

The import order enforced by this style is:

  1. __future__
  2. builtins
  3. third-party, grouped separately by package
  4. Application packages by package
  5. Relative imports

All groups of imports require a line break between them, except packages within your application.

All imports must be alphabetical horizontally and vertically. from import groups are on separate lines sorted by constants first, followed by classes, followed by functions (i.e. CAPITAL_CASE, CamelCase, underscore_case).

The names of the application packages can be configured via the application-import-names setting in flake8.

For example, if application-import-names is set to my_project, this import ordering enforces the following ordering:

# coding: utf-8
from __future__ import absolute_import, print_function, unicode_literals  # 1. `__future__`

import io  # 2. Builtins.
import logging
import os
import tarfile

from django.conf import settings  # 3.1 django
from django.utils.http import urlencode

from dns.exception import DNSException, Timeout  # 3.2
from dns.resolver import NXDOMAIN
from dns.resolver import NoAnswer, Resolver

import requests # 3.3 

import ujson #3.4

from my_project.views import MainView  # 4. Application packages.
from my_project.core.enums import Enum
from my_project.utils.download import DOWNLOAD_TIMEOUT
from my_project.utils.download import InvalidURLException
from my_project.utils.download import download_content_url

from .models import Article

Usage

Install the flake8-import-order-ruler501 package using pip, then tell flake8 to use this import order style using the --import-order-style=ruler501 command-line option, or by setting it in setup.cfg. The names of your application package(s) can be set by the application-import-names setting:

[flake8]
import-order-style = ruler501
application-import-names = my_package1, my_package2

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-ruler501-0.18.1.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

flake8_import_order_ruler501-0.18.1-py2.py3-none-any.whl (5.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file flake8-import-order-ruler501-0.18.1.tar.gz.

File metadata

  • Download URL: flake8-import-order-ruler501-0.18.1.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.6.6

File hashes

Hashes for flake8-import-order-ruler501-0.18.1.tar.gz
Algorithm Hash digest
SHA256 fb11dc62d7d0a8163c30f91ebedb7256560ab8858ee2315e3490d7cf68090259
MD5 8fa042b2c6eeee866ca59e090f390964
BLAKE2b-256 a7f6de39afb3ca6239a422c698128af3c497d80d02f09c6269f54e94d911bca0

See more details on using hashes here.

File details

Details for the file flake8_import_order_ruler501-0.18.1-py2.py3-none-any.whl.

File metadata

  • Download URL: flake8_import_order_ruler501-0.18.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.6.6

File hashes

Hashes for flake8_import_order_ruler501-0.18.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bd3423eb44f54e6b6a0b655b71a73f465b5f8ce4b2799380bd16063d27125ce4
MD5 acd84768507d08e57e50fd376921271b
BLAKE2b-256 58c971cd6ee159339dcc06fdce76477b4eaf8145b0d445552877f0a9d10b380d

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