https://github.com/ashottadevosyan/islap
Approximation-Search Tool for The International Sanctions List
https://github.com/ashottadevosyan/islap
algorithms api css flask html javascript python
Last synced: 2 months ago
JSON representation
Approximation-Search Tool for The International Sanctions List
- Host: GitHub
- URL: https://github.com/ashottadevosyan/islap
- Owner: AshotTadevosyan
- Created: 2025-03-24T09:52:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-28T16:12:22.000Z (over 1 year ago)
- Last Synced: 2025-03-28T17:35:13.004Z (over 1 year ago)
- Topics: algorithms, api, css, flask, html, javascript, python
- Language: JavaScript
- Homepage:
- Size: 215 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ISLAP – International Sanctions List Approximation Processing
**ISLAP** is a modular Python project designed to parse and load sanctions data, store it in a local database, and allow advanced name-matching using multiple string similarity algorithms. It supports both automated parsing of XML-based data and interactive searching through a command-line interface.
---
## 📦 Features
- 📂 **Sanctions List Parser**: Converts XML-based watchlists into an SQLite database.
- 🔍 **Search Engine**: Finds similar names using fuzzy string matching.
- 📊 **Scoring Engine**: Ranks matches using multiple algorithms:
- Jaro-Winkler
- Levenshtein Distance
- Soundex
- Combined weighted scoring
- Modular structure for easy maintenance and scaling
---
## 🗂️ Project Structure
ISLAP1/
├── api/
│ └── main.py
├── build/
├── data/
│ └── sanctions.db
│ └── xml_to_sqlite.py
├── frontend/
│ └── src/App.js
├── algorithms/
│ ├── jaro_winkler.py
│ ├── levenshtein.py
│ └── soundex.py
├── search/
│ ├── search_engine.py
│ └── db_loader.py
├── .gitignore
├── README.md
├── requirements.txt
└── render.yaml