Skip to main content

Securely read sql into a pandas dataframe from a remote mysql DB

Project description

Read SQL into a pandas data frame from a remote server

Installation

pip install remote-read-sql

Usage

In this example, remote_read_sql opens an ssh tunnel and connects to the mysql server locally on port 3306. The SQL query is sanitized and passed to pandas read_sql.

After reading the data into the dataframe, the ssh and db connections are closed.

Storing your credentials in files

You should read your credentials from a file or files. Do not write credentials directly in your notebook.

In this example, the ssh credentials are in a ENV file that might look something like this:

SSH_SERVER_IP=server.example.com
SSH_USER=user
SSH_KEY_PATH=~/.ssh/id_rsa
SSH_KEY_PASS=
LOCAL_BIND_PORT=3307
REMOTE_HOST=127.0.0.1
LOCAL_BIND_PORT=3307
REMOTE_DB_PORT=3306

and the mysql credentials are in the my.cnf file and might look like this:

[remote_server]
user=user_readonly
password=password
default-character-set=utf8
host=127.0.0.1
port=3306

Preparing your credentials

Since you may be calling remote_read_sql several times in the same notebook, store the paths to your credentials in a dictionary as a convenience.

# change to your own paths
ssh_config_path = Path("~/.my_ssh_config")
my_cnf_path = Path("~/.my.cnf")
db_name = "my_database"

# combine kwargs into a dictionary
conn_opts = {
    "ssh_config_path": ssh_config_path,
    "my_cnf_path": my_cnf_path,
    "my_cnf_connection_name": "remote_server",
    "db_name": db_name,
}

Running a single query

To run a single query and return a Dataframe, pass the SQL query to remote_read_sql along with your conn_opts from above. The SQL query can be any valid SELECT statement.

# open ssh, open db, read sql into dataframe, close db, close ssh
df = remote_read_sql("SELECT * FROM subject_glucose", **conn_opts)

# inspect the dataframe
df.head()

Running multiple queries

When running remote_read_sql with the SQL query as above, the connection closes immediately after running the SQL statement. If you want to run several SQL queries using the same connection, use remote_read_sql as a context manager. As a context manager, remote_read_sql opens the connection, you run pd.read_sql() for multiple queries within the with statement. Once you leave the with statement, remote_read_sql closes the connection.

For remote_read_sql to work as a context manager, the SQL query is not passed to remote_read_sql:

with  remote_read_sql(**conn_opts) as db_conn:
    # connection db_conn is open
    # read sql
    df_glucose = pd.read_sql("SELECT * FROM subject_glucose", db_conn)
    # read sql
    df_bp = pd.read_sql("SELECT * FROM subject_bp", db_conn)

# connection db_conn is closed
# view your Dataframes
df_glucose.head()
df_bp.head()

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

remote_read_sql-1.1.2.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

remote_read_sql-1.1.2-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file remote_read_sql-1.1.2.tar.gz.

File metadata

  • Download URL: remote_read_sql-1.1.2.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.5

File hashes

Hashes for remote_read_sql-1.1.2.tar.gz
Algorithm Hash digest
SHA256 83898c2354c7238c3a40d577f5c0f7cbfe89ac3e462c9e270da5adaef87ae454
MD5 685fcca14db05505e4fbc9fdd2baf2df
BLAKE2b-256 4cb29d8daa6db865a0a76f19f00cff7f5bd7b407ef2f0335fabfedeabc699f83

See more details on using hashes here.

File details

Details for the file remote_read_sql-1.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for remote_read_sql-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3a6b34d11b8b61e2d257c50a1f08e682586a9e52dcede1c4edc081458a85cda8
MD5 072b2d1642cdf9ef8a4cd595b85e8464
BLAKE2b-256 5e7da35b810d72c7a3c076c390e801f0a453d6d8fa841b7de95b2ac6b23aea36

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page