Regulus is a streamlined Python tool designed to monitor and report changes in U.S. export control regulations. Tailored for compliance professionals, analysts, and policy teams, Regulus automates the tracking of federal register notices, extracts insights from source documents, and highlights new additions over time.
The current stable version of Regulus is regulus.py.
This version includes ECCN extraction, PDF analysis, Excel summary output, and a dashboard with guidance tabs for export compliance professionals.
Older builds and experimental files are available in the archive/ folder.
Export control compliance is critical for organizations working with dual-use technologies, semiconductors, and sensitive trade items. Regulus helps teams stay ahead by automating the monitoring of:
- Bureau of Industry and Security (BIS) Federal Register notices
- Export Administration Regulations (EAR) rule updates
- ECCN classification changes
- (Planned) OFAC sanctions and denied party list entries
- Export compliance teams maintaining accurate, up-to-date documentation
- Classification groups managing ECCN tracking and reporting
- Audit/legal departments needing versioned compliance logs
- Policy analysts following regulatory shifts in technology and trade
- Scrapes BIS Federal Register updates, with Selenium fallback for complex pages
- Extracts text from PDFs linked in register entries
- Applies regex-based parsing to detect:
- Entity List additions
- Final rule summaries
- Compares current results against previous scans
- Outputs:
- Excel reports with tabbed summaries
- Markdown reports highlighting new regulatory changes
- Can be run manually or integrated into a scheduled
cronjob
regulus/
βββ scraper/
β βββ __init__.py # Module initializer
β βββ bis_scraper.py # Static HTML scraper for BIS updates
β βββ bis_scraper2.py # Secondary scraper (variant/test)
β βββ change_tracker.py # Historical diffing & report generation
β βββ regulus1.2.py # Archived v1.2 script
β βββ selenium_scraper.py # Selenium-based fallback scraper
β βββ utils.py # Helper functions
β
β βββ data/
β βββ pdfs/ # Downloaded PDFs
β βββ processed/ # Excel summaries
β βββ raw/ # Raw CSV outputs
β
βββ main.py # Optional entrypoint script
βββ regulus.py # Current production-ready script (v1.5)
βββ regulus_scraper.py # Legacy file with redirect notice
βββ requirements.txt
βββ README.md
βββ .gitignore
βββ archive/ # Archived builds and logs