
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
parquetframe
Advanced tools
A universal data processing framework with multi-engine support (pandas, Polars, Dask) and multi-format I/O (CSV, JSON, Parquet, ORC, Avro) with intelligent backend selection
High-performance data analytics with AI/ML capabilities
ParquetFrame is a unified data platform combining SQL, time series, geospatial, financial analysis, and AI/ML capabilities - all with familiar DataFrame interfaces.
.ts accessor for resampling, rolling windows.geo accessor for spatial operations.fin accessor for technical indicatorspip install parquetframe
import pandas as pd
import parquetframe as pf
import parquetframe.sql
import parquetframe.time
import parquetframe.finance
# SQL queries
result = pf.sql("SELECT * FROM df WHERE value > 100", df=df)
# Time series
daily = df.ts.resample('1D', agg='mean')
# Financial indicators
rsi = df.fin.rsi('close', 14)
macd = df.fin.macd('close')
import parquetframe.finance
prices = pd.read_csv("stock.csv", index_col='date', parse_dates=True)
prices['SMA_20'] = prices.fin.sma('close', 20)
prices['RSI'] = prices.fin.rsi('close', 14)
import parquetframe.time
sensor_data = df.ts.resample('1H', agg='mean')
smoothed = sensor_data.ts.rolling('24H', agg='mean')
import geopandas as gpd
import parquetframe.geo
cities = gpd.read_file("cities.geojson")
buffered = cities.geo.buffer(1000)
from parquetframe.ai import SimpleRagPipeline
from parquetframe import knowlogy
# Query knowledge graph
formula = knowlogy.get_formula("variance")
# RAG with formula grounding
result = pipeline.run_query("Explain variance", user_context="analyst")
ParquetFrame combines:
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License
Built on top of:
FAQs
A universal data processing framework with multi-engine support (pandas, Polars, Dask) and multi-format I/O (CSV, JSON, Parquet, ORC, Avro) with intelligent backend selection
We found that parquetframe 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.

Security News
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.