Incluye: backend Node.js/Express, visualización 3D (Three.js/3d-force-graph), scrapers Wikipedia/noticias/imágenes, analizador Qwen3-VL, pipeline maestro con systemd timer, fixes de seguridad (NoSQL injection, XSS, ReDoS, port binding) y documentación técnica completa en docs/. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
231 B
Python
Executable file
10 lines
231 B
Python
Executable file
from pandas import DataFrame
|
|
from obsei.sink.pandas_sink import PandasSink, PandasSinkConfig
|
|
|
|
# initialize pandas sink config
|
|
sink_config = PandasSinkConfig(
|
|
dataframe=DataFrame()
|
|
)
|
|
|
|
# initialize pandas sink
|
|
sink = PandasSink()
|