معرفی شرکت ها


dbdeclare-0.0.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Declarative layer for your database.
ویژگی مقدار
سیستم عامل -
نام فایل dbdeclare-0.0.1
نام dbdeclare
نسخه کتابخانه 0.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Raaid Arshad
ایمیل نویسنده raaid@protonmail.com
آدرس صفحه اصلی https://raaidarshad.github.io/dbdeclare/
آدرس اینترنتی https://pypi.org/project/dbdeclare/
مجوز MIT
# DbDeclare <!-- [![Release](https://img.shields.io/github/v/release/raaidarshad/dbdeclare)](https://img.shields.io/github/v/release/raaidarshad/dbdeclare) --> [![Python version](https://img.shields.io/badge/python_version-3.11-blue)](https://github.com/psf/black) [![License](https://img.shields.io/github/license/raaidarshad/dbdeclare)](https://img.shields.io/github/license/raaidarshad/dbdeclare) [![PyPI](https://img.shields.io/pypi/v/dbdeclare?color=%2334D058&label=pypi%20package)](https://pypi.org/project/dbdeclare/) A declarative layer for your database, built on [SQLAlchemy](https://github.com/sqlalchemy/sqlalchemy). The code is [on GitHub](https://github.com/raaidarshad/postgres-declare). The docs are [hosted on GitHub pages](https://raaidarshad.github.io/dbdeclare/). The project is published on [PyPI](https://pypi.org/project/dbdeclare/). ## Overview ### What is it? DbDeclare is a Python package that helps you create and manage entities in your database cluster, like databases, roles, access control, and (eventually) more. It aims to fill the gap between SQLAlchemy (SQLA) and infrastructure as code (IaC). ### Why use it? DbDeclare does what SQLA does but for database entities beyond tables and columns. You can: - Declare desired state in Python - Avoid maintaining raw SQL - Tightly integrate your databases, roles, access control, and more with your tables Future versions will have more features, and you will be able to: - Have version control over database changes (like [Alembic](https://github.com/sqlalchemy/alembic)) - Define upgrades/downgrades without explicitly defining the changes (like [autogen](https://alembic.sqlalchemy.org/en/latest/autogenerate.html)) Additionally, DbDeclare is: - Typed: Type-checking done via [mypy](https://mypy.readthedocs.io/en/stable/) - Thoroughly commented: There are docstrings for every method and class - Well-tested: Though this is a new package under active development, solid test coverage is a high priority Running SQL scripts before SQLA and after IaC can be messy and hard to maintain. If you prefer to have databases, roles, and the like declared alongside your infrastructure, then there are great tools available for that, like Terraform and Pulumi's providers for Postgres and MySQL. So if you want it tied to that, great! But if, like me, you want it closer to your application code and alongside SQLA, this tool likely makes more sense for you. ## Requirements This requires a recent version of Python. Works with Python 3.11 or higher. We recommend [pyenv](https://github.com/pyenv/pyenv) to install any versions of Python you need and don't currently have installed. This also requires a compatible driver/package for your database of choice, like [psycopg](https://www.psycopg.org/) for Postgres. You'll also need a functioning cluster to interact with (the example below shows a way to do so via Docker). SQLAlchemy is a dependency and will be installed when you install DbDeclare. DbDeclare works with SQLAlchemy 2.0.0 or higher. ## Installation DbDeclare is published on [PyPI](https://pypi.org/project/dbdeclare/). You can install it with `pip` or any tool that uses `pip` under the hood. This is typically installed in a [virtual environment](https://docs.python.org/3/library/venv.html). ``` > pip install db-declare ``` ## Example Here is a simple Postgres example. We will create a database and a user, and make sure the user can connect to the database. You need a Postgres cluster/instance and a python environment. If needed, an easy way to spin up a Postgres instance is with [Docker](https://www.docker.com/), specifically the [official Postgres image](https://hub.docker.com/_/postgres): ``` > docker run --rm --name postgres -e POSTGRES_PASSWORD=postgres -p 127.0.0.1:5432:5432/tcp postgres ``` This spins up a Postgres instance with the default database name of `postgres`, an admin user of `postgres` with the password `postgres`, on port `5432`. Assuming you have a Python environment set up, DbDeclare installed, and psycopg installed (`pip install psycopg`), you can create a database and a user that can connect to it like this: ```Python from sqlalchemy import create_engine from dbdeclare.controller import Controller from dbdeclare.data_structures import GrantOn, Privilege from dbdeclare.entities import Database, Role def main() -> None: # declare the database falafel_db = Database(name="falafel") # declare the user Role( name="hungry_user", login=True, # (1)! password="fakepassword", # (2)! grants=[GrantOn(privileges=[Privilege.CONNECT], on=[falafel_db])], # (3)! ) # create engine with admin user and default database engine = create_engine(url="postgresql+psycopg://postgres:postgres@127.0.0.1:5432/postgres") # (4)! # create all entities and grant all privileges Controller.run_all(engine=engine) if __name__ == "__main__": main() ``` 1. Make sure this role can log in (make it a user) 2. Provide a password for the user to log in with 3. Specify that this user can connect to the `falafel` database 4. The engine to run DbDeclare must have admin privileges, so we use the `postgres` user here After running this script, you should be able to access the `falafel` database as `hungry_user`. You can try it out with `psql` (if you don't have it installed, find it [here](https://www.timescale.com/blog/how-to-install-psql-on-mac-ubuntu-debian-windows/)). In a separate shell from where the docker run command is running, you can run: ``` > psql -h 127.0.0.1 -p 5432 -U hungry_user -d falafel password for user hungry_user: *** falafel=> ``` Voila! Check out the [user guide](https://raaidarshad.github.io/dbdeclare/guide) for more involved use cases. ## Contributing Check out development, testing, and contributing guidance [here](https://raaidarshad.github.io/dbdeclare/contributing). ## License This project is licensed under the terms of the [MIT license](https://github.com/raaid/dbdeclare/blob/main/LICENSE).


نیازمندی

مقدار نام
>=2.0.0,<3.0.0 sqlalchemy


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

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


نحوه نصب


نصب پکیج whl dbdeclare-0.0.1:

    pip install dbdeclare-0.0.1.whl


نصب پکیج tar.gz dbdeclare-0.0.1:

    pip install dbdeclare-0.0.1.tar.gz