Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
PyEXASOL is the officially supported Python connector for Exasol. It helps to handle massive volumes of data commonly associated with this DBMS.
You may expect significant performance improvement over ODBC in a single process scenario involving pandas.
PyEXASOL provides API to read & write multiple data streams in parallel using separate processes, which is necessary to fully utilize hardware and achieve linear scalability. With PyEXASOL you are no longer limited to a single CPU core.
Install PyEXASOL:
pip install pyexasol[pandas]
Run basic query:
import pyexasol
C = pyexasol.connect(dsn='<host:port>', user='sys', password='exasol')
stmt = C.execute("SELECT * FROM EXA_ALL_USERS")
for row in stmt:
print(row)
Load data into pandas.DataFrame
:
import pyexasol
C = pyexasol.connect(dsn='<host:port>', user='sys', password='exasol', compression=True)
df = C.export_to_pandas("SELECT * FROM EXA_ALL_USERS")
print(df.head())
You may set up local config to store your personal Exasol credentials and connection options:
import pyexasol
C = pyexasol.connect_local_config('my_config')
stmt = C.execute("SELECT CURRENT_TIMESTAMP")
print(stmt.fetchone())
Connect to Exasol SAAS using OpenID token for authentication:
import pyexasol
C = pyexasol.connect(dsn='<host:port>', user='sys', refresh_token='<token>')
stmt = C.execute("SELECT * FROM EXA_ALL_USERS")
for row in stmt:
print(row)
Vitaly Markov, 2018 — 2022
Enjoy!
Exasol 2023 — Today
FAQs
Exasol python driver with extra features
We found that pyexasol demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.