Metadata-Version: 2.3
Name: ebookwords
Version: 1.1.0
Summary: Add your description here
Author: Olav Landsverk
Author-email: Olav Landsverk <olav.landsverk@gmail.com>
Requires-Dist: fastapi[standard]>=0.128.0
Requires-Dist: jinja2>=3.1.6
Requires-Dist: lxml>=6.0.2
Requires-Dist: nh3>=0.3.2
Requires-Dist: platformdirs>=4.5.1
Requires-Dist: python-multipart>=0.0.22
Requires-Dist: sqlmodel>=0.0.32
Requires-Dist: uvicorn>=0.40.0
Requires-Python: >=3.14
Description-Content-Type: text/markdown

# ebookwords

## Architecture

```mermaid
graph LR
  config[config]
  subgraph interface[interface]
      webapp[webapp]
  end
  subgraph core[core]
      manager[book_manager]
  end
  subgraph adapter[adapter]
      parser[book_parser]
      extractor[book_extractor]
      db[db]
  end

  webapp --> config
  webapp --> manager

  manager --- split[ ]:::empty
  split --> parser
  split --> extractor
  split --> db

  classDef empty width:0px,height:0px;
```
