معرفی شرکت ها


flake8-sqlalchemy-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A flake8 plugin to detect issues with SQLAlchemy code
ویژگی مقدار
سیستم عامل -
نام فایل flake8-sqlalchemy-0.1.0
نام flake8-sqlalchemy
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Mike Fiedler
ایمیل نویسنده miketheman@gmail.com
آدرس صفحه اصلی https://github.com/miketheman/flake8-sqlalchemy
آدرس اینترنتی https://pypi.org/project/flake8-sqlalchemy/
مجوز MIT
# flake8-SQAlchemy [![PyPI current version](https://img.shields.io/pypi/v/flake8-sqlalchemy.svg)](https://pypi.python.org/pypi/flake8-sqlalchemy) [![Python Support](https://img.shields.io/pypi/pyversions/flake8-sqlalchemy.svg)](https://pypi.python.org/pypi/flake8-sqlalchemy) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/miketheman/flake8-sqlalchemy/main.svg)](https://results.pre-commit.ci/latest/github/miketheman/flake8-sqlalchemy/main) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) A flake8 plugin for SQLAlchemy code. ## Installation ```bash pip install flake8-sqlalchemy ``` ## Configuration By default, all checks are enabled. You can disable **all** checks by adding the following to your `setup.cfg`: ```ini [flake8] ignore = SQA ``` or ignore specific checks: ```ini [flake8] ignore = SQA100 ``` ### `SQA100` - `sqlalchemy` import alias Checks that when `sqlalchemy` is imported with an alias, the alias is either `sa` or `db`. #### Bad ```python import sqlalchemy as foo ``` #### Good ```python import sqlalchemy as sa # or import sqlalchemy as db ``` ### `SQA200` - `Column` keyword argument `comment` required When writing a `Column` definition the `comment` keyword argument is required. This provides inline documentation for the column, as well as generating the SQL to add the comment to the database. #### Bad ```python class Users(Base): __tablename__ = "users" id = Column(Integer, primary_key=True) name = Column(String) ``` #### Good ```python class Users(Base): __tablename__ = "users" id = Column(Integer, primary_key=True, comment="User ID from Auth Service") name = Column(String, comment="User name: first, middle, last") ``` ## License This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE.md) file for the full license text. ## Author - [Mike Fiedler](https://github.com/miketheman)


نیازمندی

مقدار نام
>=6.0.0,<7.0.0 flake8


زبان مورد نیاز

مقدار نام
>=3.8.1,<4.0.0 Python


نحوه نصب


نصب پکیج whl flake8-sqlalchemy-0.1.0:

    pip install flake8-sqlalchemy-0.1.0.whl


نصب پکیج tar.gz flake8-sqlalchemy-0.1.0:

    pip install flake8-sqlalchemy-0.1.0.tar.gz