gitextract_dvork362/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-bug_report.yml │ │ ├── 2-feature_request.yml │ │ └── config.yml │ └── workflows/ │ ├── develop-pre-release.yml │ ├── main-ci.yml │ └── main-release.yml ├── .gitignore ├── .pylintrc ├── .run/ │ └── pydevd_pycharm.run.xml ├── .scripts/ │ └── md-to-bb.py ├── .version ├── GEMINI.md ├── LICENSE ├── Makefile ├── Pipfile ├── README.md ├── TODO.md ├── __init__.py ├── about.txt ├── action.py ├── config.py ├── dummy_device/ │ ├── .driveinfo.calibre │ ├── .metadata.calibre │ ├── Carroll, Lewis/ │ │ ├── Alice's Adventures in Wonderland - Lewis Carroll.epub │ │ └── Alice's Adventures in Wonderland - Lewis Carroll.sdr/ │ │ ├── metadata.epub.lua │ │ └── metadata.epub.lua.old │ └── Thoreau, Henry David/ │ └── Walden, and On The Duty Of Civil Disobedience - Henry David Thoreau.epub ├── dummy_library/ │ ├── Henry David Thoreau/ │ │ └── Walden, and On The Duty Of Civil Disobedience (3)/ │ │ ├── Walden, and On The Duty Of Civil Disobedie - Henry David Thoreau.epub │ │ └── metadata.opf │ ├── Lewis Carroll/ │ │ └── Alice's Adventures in Wonderland (4)/ │ │ ├── Alice's Adventures in Wonderland - Lewis Carroll.epub │ │ └── metadata.opf │ └── metadata_db_prefs_backup.json ├── plugin-import-name-koreader.txt ├── pluginIndexKOReaderSync.txt ├── pytest.ini ├── slpp.py └── tests/ ├── __init__.py ├── conftest.py ├── integration/ │ ├── test_docker_path_resolution.py │ ├── test_integration.py │ ├── test_issue_143_fix.py │ ├── test_issue_143_repro.py │ └── test_uuid_mismatch.py └── unit/ ├── test_bookmarks.py ├── test_md5_logic.py └── test_version.py