excelstream 0.13.0

High-performance streaming Excel & CSV library - Read/write large XLSX/CSV files with ultra-low memory and Zstd compression
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Example environment configuration for ExcelStream examples
# Copy this file to .env and fill in your actual credentials
# NEVER commit .env to version control!

# PostgreSQL connection string for postgres_streaming.rs example
# Format: postgres://username:password@host:port/database
DATABASE_URL=postgres://your_username:your_password@localhost:5432/your_database

# Example with special characters (use URL encoding):
# If password is "abcd@1234", encode @ as %40:
# DATABASE_URL=postgres://user:abcd%401234@host:5432/db