{"id":30179767,"url":"https://github.com/linuxscout/qalsadi-web","last_synced_at":"2025-08-12T06:21:31.043Z","repository":{"id":306715542,"uuid":"1026995044","full_name":"linuxscout/qalsadi-web","owner":"linuxscout","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-27T05:42:02.000Z","size":43,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-27T07:28:32.732Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linuxscout.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-27T04:46:31.000Z","updated_at":"2025-07-27T05:42:06.000Z","dependencies_parsed_at":"2025-07-27T07:38:48.764Z","dependency_job_id":null,"html_url":"https://github.com/linuxscout/qalsadi-web","commit_stats":null,"previous_names":["linuxscout/qalsadi-web"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/linuxscout/qalsadi-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxscout%2Fqalsadi-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxscout%2Fqalsadi-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxscout%2Fqalsadi-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxscout%2Fqalsadi-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxscout","download_url":"https://codeload.github.com/linuxscout/qalsadi-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxscout%2Fqalsadi-web/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270011357,"owners_count":24511936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-12T06:21:29.748Z","updated_at":"2025-08-12T06:21:31.021Z","avatar_url":"https://github.com/linuxscout.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qalsadi Web Interface\n\n🔤 **Qalsadi Web UI** is a simple and interactive web interface for the [Qalsadi Arabic Morphological Analyzer](https://github.com/linuxscout/qalsadi), built using [Flask](https://flask.palletsprojects.com/). It provides tools for morphological analysis, tokenization, stemming, lemmatization, and more — all from your browser.\n\n\n\n## Demo \n\nComing soon: [Tahadz.com](http://tahadadz.com/qalsadi)\n\n## 🚀 Features\n\n- 🔍 Morphological analysis of Arabic text (using [`Qalsdai morphological analyzer and lemmalizer`](http://github.com/linuxscout/qalsadi))\n- 📑 Support for output in table, CSV, JSON, and XML formats\n- ⌨️ Extra text processing actions:\n  - Stemming (using [`Tashaphye light stemmer`](http://github.com/linuxscout/tashaphyne))\n  - Tokenization (using [`pyarabic`](https://github.com/linuxscout/pyarabic))\n  - Lemmatization (using [`Qalsdai morphological analyzer and lemmalizer`](http://github.com/linuxscout/qalsadi))\n  - Strip Tashkeel (using [`pyarabic`](https://github.com/linuxscout/pyarabic))\n  - Sorting tokens\n  - Generate random Arabic text (using  [`arrand Arabic text generation مكتبة الرند`](https://github.com/linuxscout/Arrand-arabic-random-text))\n- 📥 Upload Arabic text files\n- 🗂️ Profile-based result display (main, all, root, lemma…)\n\n---\n\n## 🧰 Requirements\n\n- Install dependencies:\n\n```bash\npip install -r requirements.txt\n```\n\n------\n\n## 🖥️ Usage\n\nRun the web application:\n\n```bash\npython web/app.py\n```\n\nVisit in your browser:\n\n```\nhttp://127.0.0.1:5000/\n```\n\n------\n\n## 🧪 Example Actions\n\n- **تحليل صرفي**: Use Qalsadi analyzer to extract morphological features.\n- **تجذيع**: Use Tashaphye to stem each word.\n- **تأصيل**: Extract the lemma using Qalsadi.\n- **تفريق Tokens**: Tokenize Arabic sentences.\n- **حذف التشكيل**: Strip diacritics using PyArabic.\n- **نص عربي عشوائي**: Generate random Arabic text using `arrandom`.\n\n------\n\n## 📁 Project Structure\n\n```text\nqalsadi-web/\n├── docs\n├── Makefile\n├── README.md\n├── requirements.txt\n├── web\n│   ├── app.py\n│   ├── __init__.py\n│   ├── static\n│   │   └── style.css\n│   └── templates\n│       ├── about.html\n│       ├── base.html\n│       ├── index.html\n│       └── docs.html\n└── tests\t\t\t\t# test folder\n    ├── output\n    ├── samples\n    │   └── text.txt\n    └── test_unit_web.py        \n```\n\n------\n\n## 📜 License\n\nThis project is open-source and released under the GPL v3 License.\n\n------\n\n## ✨ Acknowledgements\n\n- Built with ❤️ using [Flask](https://flask.palletsprojects.com/)\n- Powered by [Qalsadi](https://github.com/linuxscout/qalsadi), [PyArabic](https://github.com/linuxscout/pyarabic), [Tashaphye](https://github.com/linuxscout/tashaphye), and [arrandom](https://github.com/linuxscout/arrandom)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxscout%2Fqalsadi-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxscout%2Fqalsadi-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxscout%2Fqalsadi-web/lists"}