Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions france-market-scanner/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# INPI Credentials (required for financial data)
# Create free account at https://data.inpi.fr
INPI_USERNAME=
INPI_PASSWORD=

# BODACC FTPS (optional, for bulk historical data)
# Contact donnees-dila@dila.gouv.fr for access
BODACC_FTPS_USERNAME=
BODACC_FTPS_PASSWORD=

# Optional: Override config defaults
# DATABASE_PATH=data/france_companies.duckdb
# LOG_LEVEL=INFO
56 changes: 56 additions & 0 deletions france-market-scanner/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Data files
data/
*.duckdb
*.duckdb.wal
*.parquet

# Downloads
downloads/

# Logs
logs/
*.log

# Environment
.env
.env.local

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
ENV/
env/
.venv/

# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# Testing
.pytest_cache/
.coverage
htmlcov/
Loading