notolog


Namenotolog JSON
Version 1.0.8 PyPI version JSON
download
home_pagehttps://notolog.app
SummaryNotolog - Python Markdown Editor
upload_time2024-12-08 20:35:44
maintainerNone
docs_urlNone
authorVadim Bakhrenkov
requires_python<=3.13,>=3.9
licenseMIT
keywords notolog python markdown editor ai llm text notes
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            <!-- {"notolog.app": {"created": "2023-12-25 18:59:43.806614", "updated": "2024-12-05 23:55:09.820720"}} -->
# Notolog

[![PyPI - Version](https://img.shields.io/pypi/v/notolog)](https://pypi.org/project/notolog/) [![GitHub License](https://img.shields.io/github/license/notolog/notolog-editor)](https://github.com/notolog/notolog-editor/blob/master/LICENSE) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/notolog)](https://pypi.org/project/notolog/) [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/notolog/notolog-editor/tests.yaml)](https://github.com/notolog/notolog-editor/actions/workflows/tests.yaml) [![Conda Version](https://img.shields.io/conda/vn/conda-forge/notolog)](https://anaconda.org/conda-forge/notolog) [![PyPI - Downloads](https://img.shields.io/pypi/dm/notolog)](https://pypistats.org/packages/notolog)

Notolog is an open-source Markdown Editor licensed under the MIT License, combining simplicity with a wide range of tools and an integrated AI assistant. Developed entirely in Python using PySide6, it helps you tackle everyday programming challenges while offering an opportunity to deepen your Markdown skills.


## Instant Setup

Using pip:
```sh
pip install notolog
```

Via conda:
```sh
conda install notolog -c conda-forge
```

To start 🚀 the app, simply run:
```
notolog
```

---

![Notolog - Python Markdown Editor - UI Example](https://raw.githubusercontent.com/notolog/notolog-editor/main/docs/notolog-ui-examples.png)

## Features

- **Markdown Support**:
    - Text editor equipped with exclusive Markdown syntax highlighting and extended syntax support.
    - Line numbers adapt to each line's height, enhancing readability.
    - Viewer for precise text rendering, utilizing the integrated Python Markdown library.
    - Processes both multi-line and single-line code blocks, along with custom parsing for `details` and `summary` blocks.
- **AI Assistant**: Provides a chat-style dialogue, supporting both the OpenAI API and on-device local LLM options.
- **Accessibility**: Features adjustable font sizes and descriptive elements to enhance usability.
- **Auto-Save**: Automatically saves changes to prevent data loss.
- **Enhanced Search**:
    - Offers in-file content search with optional case sensitivity.
    - Quick file search within the file tree to efficiently filter results.
- **Encryption**: Provides secure AES-128 encryption with Fernet for files (optional).
- **Meta-Headers**: Securely stores essential file information within HTML-comment-formatted meta-headers.
- **Multi-Language**: Supports multiple languages out of the box.
- **Customizable UI**: Includes a variety of color themes to keep the UI fancy.
- **TODO Highlighting**: Marks @todo statements for efficient task management.


## Translations

Notolog supports multiple languages out of the box, enhancing its accessibility globally. In addition to English, here are the currently supported languages:

- 简体中文 (Chinese Simplified)
- Nederlands (Dutch)
- Suomi (Finnish)
- Français (French)
- ქართული (Georgian)
- Deutsch (German)
- Ελληνικά (Greek)
- हिन्दी (Hindi)
- Italiano (Italian)
- 日本語 (Japanese)
- 한국어 (Korean)
- Latina (Latin)
- Português (Portuguese)
- Русский (Russian)
- Español (Spanish)
- Svenska (Swedish)
- Türkçe (Turkish)


## Themes

Notolog offers several themes to customize the UI:

* **Default**: Every app should have a default theme.
* **Calligraphy**: Inspired by the art of calligraphy, this theme resembles a rice paper sheet marked with black ink.
* **Nocturne**: A dark-themed UI that plays a jazz nocturne at night.
* **Noir Dark**: This theme's name says it all - mystery and style in every pixel.
* **Spooky**: Embrace the spooky season with vivid Halloween-themed colors.
* **Strawberry**: The most playful theme, reminiscent of strawberry jam.

Below is a glimpse of the UI, featuring the settings window:

![Notolog - Python Markdown Editor - UI Example](https://raw.githubusercontent.com/notolog/notolog-editor/main/docs/notolog-ui-settings.png)

## Installation

Ensure **Python 3.9 or higher** is installed. For more details, visit [python.org](https://python.org).

Using a virtual environment is recommended to avoid version conflicts. From Python 3.6, venv is the recommended method to create virtual environments. For more information check [Creation of virtual environments](https://docs.python.org/3/library/venv.html). Alternatively, you can execute the Notolog source code and set up virtual environment with your favorite Python code editor.

### Install with pip

Create and activate a virtual environment:
```sh
python3 -m venv notolog_env
source notolog_env/bin/activate  # macOS and Linux systems
notolog_env\Scripts\activate  # Windows
```

Install Notolog using pip:
```sh
pip install notolog
```

Starting the app is as simple as running:
```sh
notolog
```

The app includes a 'Check for Updates' option accessible through the main menu under 'Help'. Where applicable, run the following command to update Notolog to the latest version: `pip install notolog --upgrade`

<details>
<summary>How to install venv on Linux systems 🔧 </summary>

While Python itself usually comes pre-installed on many Linux distributions, including Ubuntu, some distributions may not include the venv module by default. Therefore, you need to install it separately using the package manager before you can use it to create virtual environments.

**Ubuntu/Debian**
```sh
sudo apt-get update
sudo apt-get install python3-venv
```

**Fedora**
```sh
sudo dnf install python3-venv
```

**CentOS/RHEL**
```sh
sudo yum install python3-venv
```
</details>

### Install via conda-forge

Create and activate a new environment:
```sh
conda create -n notolog_env python=3.11
conda activate notolog_env
```

Then, execute the installation command:
```sh
conda install notolog -c conda-forge
```

This will fetch and install the latest version of Notolog compatible with Python 3.9 or newer from the [conda-forge packages](https://anaconda.org/conda-forge/notolog).

Run Notolog:
```sh
notolog
```

Just activate the environment and run the app next time.

### Install from Source

1. Clone the GitHub repository:
```sh
git clone https://github.com/notolog/notolog-editor.git
```

2. Navigate to the project directory:
```sh
cd notolog-editor
```

3. Create and activate a virtual environment:
```sh
python3 -m venv notolog_env
source notolog_env/bin/activate  # macOS and Linux systems
notolog_env\Scripts\activate  # Windows
```

4. Install dependencies:
```sh
pip install .
```

5. Start Notolog using:
```sh
python -m notolog.app
```


## Tests and Test Coverage

To minimize installation overhead and streamline dependency management, dependencies required solely for testing are isolated in test-specific requirements.

To install these dependencies, run: `python dev_install.py test`. The `tomli` package is required to execute this script; you can install it using `pip install tomli`.

This approach helps manage test dependencies independently from the main application dependencies, ensuring a cleaner and more manageable setup.

<details>
<summary>Run Tests</summary>

To execute all available tests:
```sh
pytest
```

To run tests from a specific file:
```sh
pytest tests/test_pkg_integration.py
```
</details>

<details>
<summary>Run Tests with Coverage Reports</summary>

To run all tests with a coverage report:
```sh
pytest tests/ --cov=notolog --cov-report=term
```

Alternatively, to exclude UI tests from execution:
```sh
pytest tests/ --cov=notolog --cov-report=term --ignore=tests/ui_tests/
```
</details>


## Dev Tools

To maintain high standards of code quality and ensure comprehensive test coverage, we utilize several development tools. Flake8, which combines PyFlakes, pycodestyle, and McCabe's complexity checker, is employed to enforce code quality, manage code complexity, and ensure adherence to PEP 8 style conventions.

To install these dependencies, run: `python dev_install.py dev`. The `tomli` package is required to execute this script; you can install it using `pip install tomli`.


## Build Tools

Make sure `poetry-core` and `build` are installed:
```
pip install poetry-core build
```

The following command generates distribution packages. Specifically, it creates both a source distribution and a wheel distribution:
```
python -m build
```


## Contributing

If you encounter any issues or would like to contribute to the project, please don't hesitate to [open an issue](https://github.com/notolog/notolog-editor/issues) or submit a [pull request](https://github.com/notolog/notolog-editor/pulls) on the project's [GitHub page](https://github.com/notolog/notolog-editor).


## License

Notolog is open-source software licensed under the MIT License, which provides flexibility and freedom to use, modify, and distribute the software. To comply with the license when redistributing this software or derivative works, you must include a copy of the original MIT License, found in the [LICENSE](https://github.com/notolog/notolog-editor/blob/main/LICENSE) file.


## Third-Party Acknowledgements

This project uses third-party libraries and components, each subject to its own license. Additional dependencies may be installed as necessary. For details on licensing, see [ThirdPartyNotices.md](https://github.com/notolog/notolog-editor/blob/main/ThirdPartyNotices.md).


## AI Integration Disclaimers

### OpenAI API

**Disclaimer**: This project integrates the OpenAI API 'as is' and is independent, not affiliated with OpenAI. The creators disclaim any liability for misuse or resulting consequences.

**Usage**: Users are required to supply their own API keys and adhere to the [OpenAI API reference](https://platform.openai.com/docs/api-reference) guidelines.

**Security**: Proper management of API keys is essential for maintaining the security of your data. Ensure that API keys are stored and handled securely to prevent unauthorized access.

### ONNX Runtime GenAI

**Disclaimer**: The 'On Device LLM' module uses ONNX Runtime to enable generative AI features and is not associated with Microsoft or ONNX Runtime.

### Python Bindings for llama.cpp

**Disclaimer**: The 'Module llama.cpp' module in this application utilizes the Python Bindings for llama.cpp to facilitate LLM inference with models in GGUF format. This module is independently developed and is not officially connected to either the llama-cpp-python or the llama.cpp projects.


## Security Disclaimer

### File Encryption

- **Details**: Notolog uses PBKDF2HMAC for key derivation and Fernet (AES-128 CBC mode) for encryption. Future updates may enhance encryption strength.

### File Meta-Headers

- **Privacy by Design**: Essential information is stored in HTML-comment-formatted meta-headers to preserve essential data.

### Data Integrity and Security

- **Auto-Save Feature**: Automatically saves changes to minimize data loss.
- **Password Protection**: Strong password practices are recommended to protect access to encrypted files.

### Legal and Compliance

- **Open Source Compliance**: Licensed under the MIT License. Users are responsible for ensuring that their use of the software complies with applicable local laws and regulations.
- **Liability**: Developers disclaim liability for misuse or non-compliance with legal and regulatory standards.


## Trademark Disclaimer

All trademarks, registered trademarks, product names, and company names or logos mentioned herein are the property of their respective owners. References to these trademarks in any documentation, code, or API communications are for identification purposes only and do not imply endorsement or affiliation.


## Support Us

If you find Notolog useful, consider giving it a star 🌟 on the [GitHub page](https://github.com/notolog/notolog-editor). This helps others discover the project and contributes to its growth. Thank you for your support!

---
_This README.md file has been carefully crafted and edited using the Notolog editor itself._

            

Raw data

            {
    "_id": null,
    "home_page": "https://notolog.app",
    "name": "notolog",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<=3.13,>=3.9",
    "maintainer_email": null,
    "keywords": "notolog, python, markdown, editor, ai, llm, text, notes",
    "author": "Vadim Bakhrenkov",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/28/c7/d9c831a05cd747acec7c7c42646de16abaeb9224d8195f63bd5754a3433c/notolog-1.0.8.tar.gz",
    "platform": null,
    "description": "<!-- {\"notolog.app\": {\"created\": \"2023-12-25 18:59:43.806614\", \"updated\": \"2024-12-05 23:55:09.820720\"}} -->\n# Notolog\n\n[![PyPI - Version](https://img.shields.io/pypi/v/notolog)](https://pypi.org/project/notolog/) [![GitHub License](https://img.shields.io/github/license/notolog/notolog-editor)](https://github.com/notolog/notolog-editor/blob/master/LICENSE) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/notolog)](https://pypi.org/project/notolog/) [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/notolog/notolog-editor/tests.yaml)](https://github.com/notolog/notolog-editor/actions/workflows/tests.yaml) [![Conda Version](https://img.shields.io/conda/vn/conda-forge/notolog)](https://anaconda.org/conda-forge/notolog) [![PyPI - Downloads](https://img.shields.io/pypi/dm/notolog)](https://pypistats.org/packages/notolog)\n\nNotolog is an open-source Markdown Editor licensed under the MIT License, combining simplicity with a wide range of tools and an integrated AI assistant. Developed entirely in Python using PySide6, it helps you tackle everyday programming challenges while offering an opportunity to deepen your Markdown skills.\n\n\n## Instant Setup\n\nUsing pip:\n```sh\npip install notolog\n```\n\nVia conda:\n```sh\nconda install notolog -c conda-forge\n```\n\nTo start \ud83d\ude80 the app, simply run:\n```\nnotolog\n```\n\n---\n\n![Notolog - Python Markdown Editor - UI Example](https://raw.githubusercontent.com/notolog/notolog-editor/main/docs/notolog-ui-examples.png)\n\n## Features\n\n- **Markdown Support**:\n    - Text editor equipped with exclusive Markdown syntax highlighting and extended syntax support.\n    - Line numbers adapt to each line's height, enhancing readability.\n    - Viewer for precise text rendering, utilizing the integrated Python Markdown library.\n    - Processes both multi-line and single-line code blocks, along with custom parsing for `details` and `summary` blocks.\n- **AI Assistant**: Provides a chat-style dialogue, supporting both the OpenAI API and on-device local LLM options.\n- **Accessibility**: Features adjustable font sizes and descriptive elements to enhance usability.\n- **Auto-Save**: Automatically saves changes to prevent data loss.\n- **Enhanced Search**:\n    - Offers in-file content search with optional case sensitivity.\n    - Quick file search within the file tree to efficiently filter results.\n- **Encryption**: Provides secure AES-128 encryption with Fernet for files (optional).\n- **Meta-Headers**: Securely stores essential file information within HTML-comment-formatted meta-headers.\n- **Multi-Language**: Supports multiple languages out of the box.\n- **Customizable UI**: Includes a variety of color themes to keep the UI fancy.\n- **TODO Highlighting**: Marks @todo statements for efficient task management.\n\n\n## Translations\n\nNotolog supports multiple languages out of the box, enhancing its accessibility globally. In addition to English, here are the currently supported languages:\n\n- \u7b80\u4f53\u4e2d\u6587 (Chinese Simplified)\n- Nederlands (Dutch)\n- Suomi (Finnish)\n- Fran\u00e7ais (French)\n- \u10e5\u10d0\u10e0\u10d7\u10e3\u10da\u10d8 (Georgian)\n- Deutsch (German)\n- \u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac (Greek)\n- \u0939\u093f\u0928\u094d\u0926\u0940 (Hindi)\n- Italiano (Italian)\n- \u65e5\u672c\u8a9e (Japanese)\n- \ud55c\uad6d\uc5b4 (Korean)\n- Latina (Latin)\n- Portugu\u00eas (Portuguese)\n- \u0420\u0443\u0441\u0441\u043a\u0438\u0439 (Russian)\n- Espa\u00f1ol (Spanish)\n- Svenska (Swedish)\n- T\u00fcrk\u00e7e (Turkish)\n\n\n## Themes\n\nNotolog offers several themes to customize the UI:\n\n* **Default**: Every app should have a default theme.\n* **Calligraphy**: Inspired by the art of calligraphy, this theme resembles a rice paper sheet marked with black ink.\n* **Nocturne**: A dark-themed UI that plays a jazz nocturne at night.\n* **Noir Dark**: This theme's name says it all - mystery and style in every pixel.\n* **Spooky**: Embrace the spooky season with vivid Halloween-themed colors.\n* **Strawberry**: The most playful theme, reminiscent of strawberry jam.\n\nBelow is a glimpse of the UI, featuring the settings window:\n\n![Notolog - Python Markdown Editor - UI Example](https://raw.githubusercontent.com/notolog/notolog-editor/main/docs/notolog-ui-settings.png)\n\n## Installation\n\nEnsure **Python 3.9 or higher** is installed. For more details, visit [python.org](https://python.org).\n\nUsing a virtual environment is recommended to avoid version conflicts. From Python 3.6, venv is the recommended method to create virtual environments. For more information check [Creation of virtual environments](https://docs.python.org/3/library/venv.html). Alternatively, you can execute the Notolog source code and set up virtual environment with your favorite Python code editor.\n\n### Install with pip\n\nCreate and activate a virtual environment:\n```sh\npython3 -m venv notolog_env\nsource notolog_env/bin/activate  # macOS and Linux systems\nnotolog_env\\Scripts\\activate  # Windows\n```\n\nInstall Notolog using pip:\n```sh\npip install notolog\n```\n\nStarting the app is as simple as running:\n```sh\nnotolog\n```\n\nThe app includes a 'Check for Updates' option accessible through the main menu under 'Help'. Where applicable, run the following command to update Notolog to the latest version: `pip install notolog --upgrade`\n\n<details>\n<summary>How to install venv on Linux systems \ud83d\udd27 </summary>\n\nWhile Python itself usually comes pre-installed on many Linux distributions, including Ubuntu, some distributions may not include the venv module by default. Therefore, you need to install it separately using the package manager before you can use it to create virtual environments.\n\n**Ubuntu/Debian**\n```sh\nsudo apt-get update\nsudo apt-get install python3-venv\n```\n\n**Fedora**\n```sh\nsudo dnf install python3-venv\n```\n\n**CentOS/RHEL**\n```sh\nsudo yum install python3-venv\n```\n</details>\n\n### Install via conda-forge\n\nCreate and activate a new environment:\n```sh\nconda create -n notolog_env python=3.11\nconda activate notolog_env\n```\n\nThen, execute the installation command:\n```sh\nconda install notolog -c conda-forge\n```\n\nThis will fetch and install the latest version of Notolog compatible with Python 3.9 or newer from the [conda-forge packages](https://anaconda.org/conda-forge/notolog).\n\nRun Notolog:\n```sh\nnotolog\n```\n\nJust activate the environment and run the app next time.\n\n### Install from Source\n\n1. Clone the GitHub repository:\n```sh\ngit clone https://github.com/notolog/notolog-editor.git\n```\n\n2. Navigate to the project directory:\n```sh\ncd notolog-editor\n```\n\n3. Create and activate a virtual environment:\n```sh\npython3 -m venv notolog_env\nsource notolog_env/bin/activate  # macOS and Linux systems\nnotolog_env\\Scripts\\activate  # Windows\n```\n\n4. Install dependencies:\n```sh\npip install .\n```\n\n5. Start Notolog using:\n```sh\npython -m notolog.app\n```\n\n\n## Tests and Test Coverage\n\nTo minimize installation overhead and streamline dependency management, dependencies required solely for testing are isolated in test-specific requirements.\n\nTo install these dependencies, run: `python dev_install.py test`. The `tomli` package is required to execute this script; you can install it using `pip install tomli`.\n\nThis approach helps manage test dependencies independently from the main application dependencies, ensuring a cleaner and more manageable setup.\n\n<details>\n<summary>Run Tests</summary>\n\nTo execute all available tests:\n```sh\npytest\n```\n\nTo run tests from a specific file:\n```sh\npytest tests/test_pkg_integration.py\n```\n</details>\n\n<details>\n<summary>Run Tests with Coverage Reports</summary>\n\nTo run all tests with a coverage report:\n```sh\npytest tests/ --cov=notolog --cov-report=term\n```\n\nAlternatively, to exclude UI tests from execution:\n```sh\npytest tests/ --cov=notolog --cov-report=term --ignore=tests/ui_tests/\n```\n</details>\n\n\n## Dev Tools\n\nTo maintain high standards of code quality and ensure comprehensive test coverage, we utilize several development tools. Flake8, which combines PyFlakes, pycodestyle, and McCabe's complexity checker, is employed to enforce code quality, manage code complexity, and ensure adherence to PEP 8 style conventions.\n\nTo install these dependencies, run: `python dev_install.py dev`. The `tomli` package is required to execute this script; you can install it using `pip install tomli`.\n\n\n## Build Tools\n\nMake sure `poetry-core` and `build` are installed:\n```\npip install poetry-core build\n```\n\nThe following command generates distribution packages. Specifically, it creates both a source distribution and a wheel distribution:\n```\npython -m build\n```\n\n\n## Contributing\n\nIf you encounter any issues or would like to contribute to the project, please don't hesitate to [open an issue](https://github.com/notolog/notolog-editor/issues) or submit a [pull request](https://github.com/notolog/notolog-editor/pulls) on the project's [GitHub page](https://github.com/notolog/notolog-editor).\n\n\n## License\n\nNotolog is open-source software licensed under the MIT License, which provides flexibility and freedom to use, modify, and distribute the software. To comply with the license when redistributing this software or derivative works, you must include a copy of the original MIT License, found in the [LICENSE](https://github.com/notolog/notolog-editor/blob/main/LICENSE) file.\n\n\n## Third-Party Acknowledgements\n\nThis project uses third-party libraries and components, each subject to its own license. Additional dependencies may be installed as necessary. For details on licensing, see [ThirdPartyNotices.md](https://github.com/notolog/notolog-editor/blob/main/ThirdPartyNotices.md).\n\n\n## AI Integration Disclaimers\n\n### OpenAI API\n\n**Disclaimer**: This project integrates the OpenAI API 'as is' and is independent, not affiliated with OpenAI. The creators disclaim any liability for misuse or resulting consequences.\n\n**Usage**: Users are required to supply their own API keys and adhere to the [OpenAI API reference](https://platform.openai.com/docs/api-reference) guidelines.\n\n**Security**: Proper management of API keys is essential for maintaining the security of your data. Ensure that API keys are stored and handled securely to prevent unauthorized access.\n\n### ONNX Runtime GenAI\n\n**Disclaimer**: The 'On Device LLM' module uses ONNX Runtime to enable generative AI features and is not associated with Microsoft or ONNX Runtime.\n\n### Python Bindings for llama.cpp\n\n**Disclaimer**: The 'Module llama.cpp' module in this application utilizes the Python Bindings for llama.cpp to facilitate LLM inference with models in GGUF format. This module is independently developed and is not officially connected to either the llama-cpp-python or the llama.cpp projects.\n\n\n## Security Disclaimer\n\n### File Encryption\n\n- **Details**: Notolog uses PBKDF2HMAC for key derivation and Fernet (AES-128 CBC mode) for encryption. Future updates may enhance encryption strength.\n\n### File Meta-Headers\n\n- **Privacy by Design**: Essential information is stored in HTML-comment-formatted meta-headers to preserve essential data.\n\n### Data Integrity and Security\n\n- **Auto-Save Feature**: Automatically saves changes to minimize data loss.\n- **Password Protection**: Strong password practices are recommended to protect access to encrypted files.\n\n### Legal and Compliance\n\n- **Open Source Compliance**: Licensed under the MIT License. Users are responsible for ensuring that their use of the software complies with applicable local laws and regulations.\n- **Liability**: Developers disclaim liability for misuse or non-compliance with legal and regulatory standards.\n\n\n## Trademark Disclaimer\n\nAll trademarks, registered trademarks, product names, and company names or logos mentioned herein are the property of their respective owners. References to these trademarks in any documentation, code, or API communications are for identification purposes only and do not imply endorsement or affiliation.\n\n\n## Support Us\n\nIf you find Notolog useful, consider giving it a star \ud83c\udf1f on the [GitHub page](https://github.com/notolog/notolog-editor). This helps others discover the project and contributes to its growth. Thank you for your support!\n\n---\n_This README.md file has been carefully crafted and edited using the Notolog editor itself._\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Notolog - Python Markdown Editor",
    "version": "1.0.8",
    "project_urls": {
        "Changelog": "https://github.com/notolog/notolog-editor/blob/main/CHANGELOG.md",
        "Homepage": "https://notolog.app",
        "IssueTracker": "https://github.com/notolog/notolog-editor/issues",
        "Repository": "https://github.com/notolog/notolog-editor"
    },
    "split_keywords": [
        "notolog",
        " python",
        " markdown",
        " editor",
        " ai",
        " llm",
        " text",
        " notes"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4b059f2b9851b536c1c107ec94bb12f6965ca473c53a2f2bb3313fbe072e54b",
                "md5": "18b7c156d355c2add1c7a758e79598fc",
                "sha256": "dec27b682433c96d0a145bf9b366153eed7dfa30395d61ab1942a77748f7291d"
            },
            "downloads": -1,
            "filename": "notolog-1.0.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "18b7c156d355c2add1c7a758e79598fc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<=3.13,>=3.9",
            "size": 2771581,
            "upload_time": "2024-12-08T20:35:42",
            "upload_time_iso_8601": "2024-12-08T20:35:42.584409Z",
            "url": "https://files.pythonhosted.org/packages/b4/b0/59f2b9851b536c1c107ec94bb12f6965ca473c53a2f2bb3313fbe072e54b/notolog-1.0.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28c7d9c831a05cd747acec7c7c42646de16abaeb9224d8195f63bd5754a3433c",
                "md5": "07ce1e69b1b780a940f4ec14a989197b",
                "sha256": "dc4200ad93dbcf19eef0a7e579358b5023309c2e03da74754f2c5fcd7146cd2e"
            },
            "downloads": -1,
            "filename": "notolog-1.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "07ce1e69b1b780a940f4ec14a989197b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<=3.13,>=3.9",
            "size": 2585388,
            "upload_time": "2024-12-08T20:35:44",
            "upload_time_iso_8601": "2024-12-08T20:35:44.909179Z",
            "url": "https://files.pythonhosted.org/packages/28/c7/d9c831a05cd747acec7c7c42646de16abaeb9224d8195f63bd5754a3433c/notolog-1.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-08 20:35:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "notolog",
    "github_project": "notolog-editor",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "notolog"
}
        
Elapsed time: 0.40365s