Please read the DISCLAIMER.md before using this software. It outlines that the author disclaims all liability and prohibits any illegal use or actions against NATO and France’s interests.
BIWY is a satirical Python-based monitoring tool created for fun and educational purposes. It humorously aims to detect potential geopolitical crises by analyzing unusual spikes in pizza orders near the Pentagon area. The project leverages OpenStreetMap data via the Overpass API and uses time series anomaly detection to identify significant deviations in pizza order patterns.
| Date (UTC) | Event |
|---|---|
| 2025‑06‑22 | US attack on three Iranian nuclear sites |
This project is licensed under the MIT License. See the LICENSE file for details.
- Ubuntu or Debian-based Linux system
- Python 3.6+
systemdfor service management
-
Clone the repository:
git clone https://github.com/mateocallec/biwy.git cd biwy -
Run the setup script to install dependencies:
sudo chmod +x ./setup.sh ./setup.sh
-
Make sure your main script (e.g.,
biwy.py) is executable:chmod +x biwy.py
To run BIWY continuously and automatically start on boot, create a systemd service:
-
Create a service file at
/etc/systemd/system/biwy.servicewith the following content (adjust paths as needed):[Unit] Description=BIWY Geopolitical Crisis Monitoring Service After=network.target [Service] User=yourusername WorkingDirectory=/path/to/BIWY ExecStart=/usr/bin/python3 /path/to/BIWY/biwy.py Restart=always RestartSec=10 [Install] WantedBy=multi-user.target
-
Reload
systemdto recognize the new service:sudo systemctl daemon-reload
-
Enable the service to start at boot:
sudo systemctl enable biwy.service -
Start the service immediately:
sudo systemctl start biwy.service
-
Check the status of the service:
sudo systemctl status biwy.service
Logs will be written to the log file defined in your script (e.g., logs.txt).
- Make sure your Python script paths and user permissions are set correctly in the service file.
- The service will automatically restart if it crashes or the server reboots.
Developed by Matéo Florian Callec.
Feel free to fork, contribute, or open issues!
