Metadata-Version: 2.4
Name: bizutl
Version: 0.2.0
Summary: A high-performance Python utility suite for digital professionals, featuring file exploration, e-stat API integration, and universal document conversion.
Project-URL: Homepage, https://codeberg.org/yellow-x-black/bizutl
Project-URL: Repository, https://codeberg.org/yellow-x-black/bizutl
Project-URL: Issues, https://codeberg.org/yellow-x-black/bizutl/issues
Author-email: yellow-x-black <yellow-x-black@noreply.codeberg.org>
License: MIT
License-File: LICENSE
Keywords: bizutl,business utility,cli,gui,python,uv
Requires-Python: >=3.12
Requires-Dist: cryptography>=46.0.5
Requires-Dist: feedparser>=6.0.12
Requires-Dist: httpx>=0.28.1
Requires-Dist: markitdown[docx,pdf,pptx,xlsx]>=0.1.5
Requires-Dist: numpy>=2.4.2
Requires-Dist: pandas>=3.0.1
Requires-Dist: pillow>=12.1.1
Requires-Dist: polars>=1.38.1
Requires-Dist: pyarrow>=23.0.1
Requires-Dist: pypdf>=6.7.5
Requires-Dist: pypdfium2>=5.5.0
Requires-Dist: pyside6>=6.10.2
Requires-Dist: tabulate>=0.9.0
Description-Content-Type: text/markdown


## 📂 System Architecture


The `bizutl` suite is designed with a clean separation of concerns, ensuring high performance and modularity.

<p align="center">
    <img src="./docs/assets/logo_social_preview.svg", alt="Bizutl logo", width="200">
</p>

***File explorer***

<p align="center">
   <img src="./docs/assets/logo_file_explorer.svg", alt="File explorer logo", width="200">
</p>

***File to markdown***

<p align="center">
   <img src="./docs/assets/logo_file_to_markdown.svg", alt="File to markdown logo", width="200">
</p>

***Japan stats api***

<p align="center">
   <img src="./docs/assets/logo_japan_stats_api.svg", alt="Japan stats api logo", width="200">
</p>

***Office to pdf***

<p align="center">
   <img src="./docs/assets/logo_office_to_pdf.svg", alt="Office to pdf logo", width="200">
</p>

***Pdf editor***

<p align="center">
   <img src="./docs/assets/logo_pdf_editor.svg", alt="Pdf editor logo", width="200">
</p>

```text

bizutl/

├── LICENSE
├── README.md
├── bizutl
│   ├── config
│   ├── file_explorer / # Foundational navigation & keyword search (Recursive)
│   ├── file_to_markdown / # Universal file-to-markdown utility
│   ├── japan_stats_api / # High-performance e-stat integration (asyncio)
│   ├── launcher
│   │   ├── bizutl_cli.py / # Unified CLI Entry Point
│   │   └── bizutl_gui.py / # Unified GUI Entry Point
│   ├── office_to_pdf / # Office document conversion (Libre/soffice)
│   └── pdf_editor / # PDF viewing and editing (pypdf)
├── docs
│   └── assets / # Logo
├── pyproject.toml
├── tests / # Global test suite
└── uv.lock
```
