Ink2Text-desktop
ποΈ AI-powered desktop app for converting note photos into clean, editable text, with tools for organizing, refining, and exporting your notes.
File Explorer
- __init__.py
- __init__.py
- note.py
- .gitkeep
- .gitkeep
- __init__.py
- ai_provider.py
- image_preparation.py
- pdf_export.py
- __init__.py
- note_repository.py
- __init__.py
- editor_toolbar.py
- help_dialog.py
- i18n.py
- icons.py
- image_import.py
- image_section.py
- loading_overlay.py
- main_window.py
- menu_select.py
- note_list.py
- onboarding_dialog.py
- pdf_preview.py
- settings_dialog.py
- theme.py
- __init__.py
- __main__.py
- config.py
- main.py
- resources.py
- ink2text.ico
- logoink2text.png
- logoink2text_full.png
- ai-settings.png
- main-window.png
- pdf-preview.png
- note1.png
- note2.png
- note3.png
- note4.png
- note5.png
- README.md
- build_windows_exe.py
- .gitkeep
- test_ai_provider.py
- test_app_config.py
- test_image_import.py
- test_image_preparation.py
- test_note_model.py
- test_note_repository.py
- test_pdf_export.py
- test_repository_structure.py
- .env.example
- LICENSE
- pyproject.toml
- README.md
- README.pl.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details βΌ
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details βΌ
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pytest
View Details βΌ
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
python
View Details βΌ
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
python3
View Details βΌ
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
