Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
abelardopardo committed Aug 16, 2023
2 parents 9cd58b6 + b445dfe commit c432745
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ontask/dataops/pandas/database.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Functions to manipulate Pandas DataFrames and related operations."""
from typing import Dict, List, Mapping, Optional
from urllib import parse

import pandas as pd
import sqlalchemy
Expand Down Expand Up @@ -55,7 +56,7 @@ def create_db_engine(**kwargs):
dial=kwargs.get('dialect'),
drv=kwargs.get('driver'),
usr=kwargs.get('username'),
pwd=kwargs.get('password'),
pwd=parse.quote(kwargs.get('password')),
h=kwargs.get('host'),
dbname=kwargs.get('dbname'))

Expand Down

0 comments on commit c432745

Please sign in to comment.