Save Osintgram Output as JSON Automatically

Osintgram supports plain-text and JSON exports for automation.

Interactive toggle

Osintgram> JSON=y

Now every command writes an artefact:

output/
├── target_info.json
├── target_followers.json
└── target_followings.json

Non-interactive

JSON=y python3 main.py target --command info

Or set the environment variable permanently in your shell profile.

Diagram

  flowchart TD
    A[Command] --> B[JSON toggle]
    B --> C[Output folder]
    C --> D[Automation pipeline]

Combine with FILE=y to also capture plain text logs alongside structured data.