معرفی شرکت ها


ezodbc-0.2.4


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

easy and secure ODBC connections for analysis with Pandas. No more hard-coded credentials or any of those darn environment variables!
ویژگی مقدار
سیستم عامل -
نام فایل ezodbc-0.2.4
نام ezodbc
نسخه کتابخانه 0.2.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Brandon Donelan
ایمیل نویسنده brandon.donelan@outlook.com
آدرس صفحه اصلی https://github.com/brontomerus/ezodbc
آدرس اینترنتی https://pypi.org/project/ezodbc/
مجوز MIT
<div align="center"> <img src="https://github.com/Brontomerus/ezodbc/blob/master/imgs/logo.jpg" alt="logo"/> </div> <br/> <div align="center"> <!-- Python version --> <a href="https://pypi.python.org/pypi/ezodbc"> <img src="https://img.shields.io/badge/python-3.x-blue.svg?style=for-the-badge" alt="PyPI version"/> </a> <!-- PyPi --> <a href="https://pypi.org/project/ezodbc/"> <img src="https://img.shields.io/pypi/v/ezodbc.svg?style=for-the-badge" alt="pypi" /> </a> <!-- License --> <a href="https://opensource.org/licenses/MIT"> <img src="https://img.shields.io/badge/license-BSD-green.svg?style=for-the-badge" alt="license"/> </a> </div> <br/> # ezodbc ezodbc is a package built for anyone using pandas with a database. ezodbc aims to make it easier, smoother, and more secure to access databases via python by creating a SQLAlechemy engine object to facilitate the connection. and combining that with a GUI based on the tkinter library to provide a simple and intuitive way to enter the required information. Passwords, usernames, and other sensitive information is not saved anywhere (but potentially your own computer in a future release to bypass having to enter it each time). Below is a list of the databases and connectors supported. | Database | ODBC Connector | |:---------------------------|:----------------:| | **Microsoft SQL Server** | pyodbc, pymssql | | **MySQL** | MySQLdb | | **Postgres** | psycopg2 | | **SQLite** | sqlite3 | ## Installation To install, you must have python 3.6+. Particularly, you will also need [Build Tools](https://www.microsoft.com/en-us/download/details.aspx?id=58317) installed for some odbc connector libraries, namely mysqlclient. If this gives you trouble, attempt to install those libraries individually as it may provide you with more context on a given issue. `pip install ezodbc` To reduce installation overhead, ezodbc does not automatically download connectors for you. To use the library successfully and depending on what database you have, you must also install your desired python library for connecting to the database. Below are the options you have: __Microsoft SQL Server__: `pip install pymssql` or `pip install pyodbc` __MySQL__: `pip install mysqlclient` __Postgres__: `pip install psycopg2` __SQLite__: sqlite3 is a python standard library. No need to pip install. ## Getting Started The purpose of ezodbc is to provide users with a more seamless experience with pandas while using a database connection to pull data, most often using the [pd.read_sql()](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_sql.html) method to retrieve that data. When you connect to a database that other users are also in, you run the possibility of accidently creating some sort of issue within the database itself as well as accidentally exposing the database to risk by leaving user credentials and hostname information hard-coded. Before the only way to avoid that was with environment variables, which might be confusing to any newer programmers out there - but now there is another... ezodbc! An example of a simple use case, compared with that of regular useage of the connectors: ```python import sqlalchemy import pandas as pd from ezodbc import ez # both sql and timeout are optional with ezodbc - see below def with_ezodbc() -> pd.DataFrame: df = ez().run_query() return df HOSTNAME = '127.0.0.1:3306' # host:port ... another example would le my.database.local:3306 if there is a DNS DB = 'myDatabaseName' USER = 'my_username' PASSWORD = 'my_password' SQL = """SELECT * FROM [schema.tablename]""" TIMEOUT = 60 # This is pretty much the minimum you can get with the connector def without_ezodbc(user: str, password: str, hostname: str, db_name: str, sql: str, timeout: int = 30) -> pd.DataFrame: connection_string = 'mysql://'+user+':'+password+'@'+hostname+'/'+db_name engine = sqlalchemy.create_engine(connection_string, connect_args={'connect_timeout': 30}}) with engine.connect() as connection: df = pd.read_sql(sql, connection) return df ``` During execution, you'll see a window pop-up for you to then enter the required information. The window looks like this: <br/> <div align="center"> <img src="https://github.com/Brontomerus/ezodbc/blob/master/imgs/popup.JPG" alt="pop-up"/> </div> <br/> ## Fields & Their Usage There are several selections and entries you must make to properly use ezodbc: __Save Profile Toggle__ - Select whether to save this profile for future use or not. The file is store unencrypted in the users home directory (similar to that of AWS's boto3 and awscli's .aws configure file) __Database Type (buttons on left)__ - This is to select the type of connector you'd like to use. The default is pymssql, which is the only one which requires the user to have a __Domain__ filled in. 1. __Domain__ - This is refering to the domain of a username. An example is CORP\brandon, where CORP\ is the domain. This can be left black in all cases but with the default, Microsoft SQL Server Free TDS. 2. __Username__ - username for access to the database 3. __Password__ - password for the username to authenticate 4. __Database Connection String__ - Host:Port ... in some cases, host will be an IP address, and sometimes it will have a DNS and appear as text. _examples_: 127.0.0.1:3306 and my.database.local:3306 5. __Database Name__ - the schema name or database name in the server 6. __Copy/Paste SQL Query__ - the SQL Query you want to run. This is optional if you provide it in the constructor, ie df = ez.data(sql="give me your data plz, mr. database") ## Profiles "It gets annoying to type the information each time, I wish there were a way to easily recycle connection information!"... Do I have some good news for you! Profiles are useful if you would like to save the connection string for future use, and can do so on a secure machine. On the connection dialogue, simply specify that you would like to save the profile. The package will proceed to verify that your entered information is valid by trying to open a connection on the database. If the test connection succeeds, then the profile will be saved. Following entering your connection information, you will be prompted to save that connection string with a new prompt that asks for a profile name. That box will appear as the image below: <br/> <div align="center"> <img src="https://github.com/Brontomerus/ezodbc/blob/master/imgs/save_profile.JPG" alt="save-profile-pop-up"/> </div> <br/> The profiles are saved in your user home directory. That means it would be in a location like `C:/users/YOUR_USER_NAME/.ezodbc/profiles.toml`. Feel free to delete it at any time given you would like to remove all connection strings. To use a previously saved profile, you can specify a profile_name in the ez constructor: ```python from ezodbc import ez # Example assumes I have a "MyDatabase" profile in C:/users/YOUR_USER_NAME/.ezodbc/profiles.toml df = ez(profile_name="MyDatabase", timeout=30).run_query() ``` ## Query timeouts You can declare connection timeouts (seconds) for running your query. To do so, simply create the constructor with the optional "timeout=" parameter. ```python from ezodbc import ez sql_query = """give me your data plz, mr. database""" df = ez(timeout=30).run_query(sql=sql_query) ``` ## Planned Enhancements 1. Basic hashing for the connection string in profiles for added obfuscation 2. Ability to declare more kwargs for connections. Currently only able to declare query timeout 3. Ability to delete user profiles


نیازمندی

مقدار نام
>=1.3.20 SQLAlchemy
>=1.0.0 pandas
- toml
>=3.5.1 pytest
>=2.6.0 pytest-cov


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

مقدار نام
>=3.6.0 Python


نحوه نصب


نصب پکیج whl ezodbc-0.2.4:

    pip install ezodbc-0.2.4.whl


نصب پکیج tar.gz ezodbc-0.2.4:

    pip install ezodbc-0.2.4.tar.gz