
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
sqlalchemy-clickhouse-timezone
Advanced tools
sqlalchemy-clickhouse-timezone
add timezone support
The package is installable through PIP::
pip install sqlalchemy-clickhouse-timezone
setting the environ param to start timezone support
default is '0' using pytz.utc
'CLICKHOUSE_USE_TIMEZONE': '0' => using utc
'CLICKHOUSE_USE_TIMEZONE': '1' => using system timezone
'CLICKHOUSE_USE_TIMEZONE': 'Asia/Shanghai' => using configed Asian/Shanghai
configed
os.environ.setdefault('CLICKHOUSE_USE_TIMEZONE', '0')
os.environ.setdefault('CLICKHOUSE_USE_TIMEZONE', '1')
os.environ.setdefault('CLICKHOUSE_USE_TIMEZONE', 'Asia/Shanghai')
ClickHouse dialect for SQLAlchemy.
The DSN format is similar to that of regular Postgres::
>>> import sqlalchemy as sa
>>> sa.create_engine('clickhouse://username:password@hostname:port/database')
Engine('clickhouse://username:password@hostname:port/database')
It implements a dialect, so there's no user-facing API.
The dialect can be registered on runtime if you don't want to install it as::
from sqlalchemy.dialects import registry
registry.register("clickhouse", "base", "dialect")
FAQs
ClickHouse SQLAlchemy Dialect with timezone support
We found that sqlalchemy-clickhouse-timezone demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.