nvpy


Namenvpy JSON
Version 2.3.0 PyPI version JSON
download
home_pagehttps://github.com/cpbotha/nvpy
SummaryA cross-platform simplenote-syncing note-taking app inspired by Notational Velocity.
upload_time2023-09-24 16:59:47
maintaineryuuki0xff
docs_urlNone
authorCharl P. Botha
requires_python
licenseBSD
keywords simplenote note-taking tkinter nvalt markdown
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====
nvPY
====

nvpy is a simplenote-syncing note-taking tool inspired by Notational
Velocity (and a little bit by nvALT too) on OSX and ResophNotes on
Windows. It is significantly uglier, but it is cross-platform.  Yes,
you heard right, you can run this on Linux (tested), Windows (tested)
and OS X (lightly tested).

It was written by Charl Botha, who needed a simplenote client on Linux and doesn't mind ugliness (that much). Sjaak Westdijk has contributed significantly to the codebase since right after the 0.8.5 release.
Since nvPY v1.0.0, it is maintained by `yuuki0xff <https://github.com/yuuki0xff>`_.

* nvpy lives happily at https://github.com/cpbotha/nvpy
* For news and discussion, join the `public nvpy google group <https://groups.google.com/d/forum/nvpy>`_ or subscribe to its `RSS topic feed <https://groups.google.com/group/nvpy/feed/rss_v2_0_topics.xml>`_.

DISCLAIMER
==========
If nvpy blows up your computer, loses your job or just deletes all
your notes, I am NOT liable for anything. Also see the liability
clause at the end of the new BSD licence text in the COPYRIGHT file.

That being said, I use nvpy daily on my own precious notes database
and it hasn't disappointed me (yet).

Screenshots and screencasts
===========================

* Screenshot taken shortly before the 0.9.7 release (clam theme, droid font):

.. image:: https://lh3.googleusercontent.com/DvOXzSgUnzO_kUiKS8UdcF0F9DsF3v6MBRCiUMIT472FtSvlMGqU3AEr1XwT2ERmTQh5RcKraZvdtnnScWhtqZlQd-KQDnVwmbTtPWx8uWpAI1OJHsf0fhXlbB5rRnp2iakM7xwi1IO4_-CWno4LRIqsTf7g5Bvu6BogQshWeAYyZQlsn7i5vD7OqljS7UcEc9EcQy2WLao0uiWCB38RVWSaq4eWFWxJnxV_MaFV5fs9lTvkGC78pq9u2Z4-eTdjqzj6X-ZzLOPZTQZc7g-pyTkFIIa2_pZNUBW0-y1IqYJxM4eDLYcu6PPt4VlHPCN9rvkLN6xYUJLdaz0SIo8X9ezPLHvIuI41SiiIn1wZnrr9rfgFGocstzOMt-A5QzZ8gTkXuAHucrZdmg5Xe4upqvCZGztpc4bgwEyvx132Ua4Zk2utBUgLAh3rp3D1GR0J5R_-W0iBJsn2gsQaFGUJf4zB-bD6HszWkTJ7AAcV0TogR4CQE1757tcZIKPxdOPSwFuMGGq-xeIhHYyGa7dYE_xbkhqIeE3AIpJ7dRpTN5AxIlTzQg5WYF8TEw7pdu6P9YpYcw=w873-h470-no

* Screencast of nvpy's inter-note linking (May 27, 2012): http://youtu.be/NXuVMZr31SI
* Screencast of nvpy's gstyle search mode (October 18, 2012): http://youtu.be/dzILoLC5vRM
* `Picasa Web album containing various screenshots over time <https://picasaweb.google.com/102438662851504788261/NvpyPublic?authuser=0&feat=directlink>`_.

A note on automatic syncing
===========================

* When nvPY starts up, it automatically performs a full sync. When you start it up for the first time, this can take quite a while. On subsquent startups, it's much faster, as it maintains its own database on disk.
* While running, nvPY automatically and continuously saves and syncs any changes to disk and to simplenote. You don't have to do anything besides typing your notes.
* If you edit the same note simultaneously in nvPY and for example the web interface, these changes will be merged as you work.
* If you add or delete notes from a completely different location, nvPY will not pick this up until your next full sync. In the future, this will also happen automatically.
* In short: You usually don't have to worry about syncing and saving, simplenote takes care of this. If you have any more questions, please post them in the `nvpy google group <https://groups.google.com/d/forum/nvpy>`_.

Installation
============

See the `nvPY installation guide <https://github.com/cpbotha/nvpy/blob/master/docs/installation.rst>`_.

How to run for the first time
=============================

Create a file called .nvpy.cfg in your home directory that looks like
the following::

    [nvpy]
    sn_username = your_simplenote_username
    sn_password = your_simplenote_password

If you installed this via pip install, you should now be able to start
the application by typing "nvpy". The first time you run it, it will take
a while as it downloads all of your simplenote notes. Subsequent runs
are much faster as it uses the database it stores in your home directory.

If you prefer to run from your git clone, you can just invoke python on nvpy.py, or on the nvpy package directory.

The `example nvpy.cfg <https://github.com/cpbotha/nvpy/blob/master/nvpy/nvpy-example.cfg>`_ shows how you can configure the font 
family and size, the widget theme (!) configure nvpy to save and load notes as clear text, disable simplenote syncing, and so forth.

Making nvpy slightly less ugly on Linux
=======================================

On Linux, I set the nvpy ttk theme to ``clam`` (instead of ``default``; the example
config above has more information about themes), and I select nicer fonts. The
relevant config options are as follows::

    theme = clam
    font_family = droid sans mono
    font_size = 12
    list_font_size = 12

On Debian systems, you have to install the ``fonts-droid`` package to be able to
select the attractive ``droid sans mono`` font. ``ubuntu mono`` is also good and
should work out of the box on Ubuntu installations.

Let us know on the Google group if you have suggestions for further decreasing
the level of ugliness!

Theme Customization
===================

nvPY was prepared two themes.  You can apply it by editing `nvpy.cfg`.

**Light Theme**: ::

    # Colors (light theme)
    text_color = black
    selected_note_color = light blue
    note_info_color = dark gray
    highlight_note_info_color = light yellow
    url_color = blue
    background_color = white
    highlight_background_color = yellow

.. image:: ./images/light-theme.png

**Dark Theme**: ::

    # Colors (dark theme)
    text_color = white
    selected_note_color = #04a
    note_info_color = light gray
    highlight_note_info_color = #440
    url_color = #08f
    background_color = black
    highlight_background_color = #440

.. image:: ./images/dark-theme.png

If you dont like it, it would be better to customize the theme as your like.
Let's change some options based on the above theme.
Options are accept 3 formats:

* Hex triplet format (#rrggbb)
* Shorthand hex triplet format (#rgb)
* Color names  (See `color names list <https://www.tcl.tk/man/tcl8.5/TkCmd/colors.htm>`_ and `color chart <https://wiki.tcl.tk/37701>`_)

Note: during customizing the theme we highly recommend setting ``simplenote_sync = 0`` to disable sync.
Because prevent reach the API rate limit by automatic full synchronization at startup.

Keyboard handling
=================

nvPY was designed for lightning-speed note-taking and management with
the keyboard. As you type words in the search bar, the list of notes
found will be refined. In the default search mode ("gstyle"), it finds
notes that contain all the words you enter. For example::

    t:work t:leads python imaging "exact phrase"

Will find all notes tagged with both "work" and "leads" containing the
words "python" and "imaging" (anywhere, and in any order) and the exact
phrase "exact phrase". The default is to search with case-sensitivity.
This can be changed with the CS checkbox. Remember though that
case-sensitivity has a significant effect on search speed.

By editing the config file, or by toggling the search mode option menu,
you can use regular expression search mode. This is of course much more
powerful, but is much slower than gstyle. The difference is noticeable
on large note collections.

Here's a summary of the different shortcut keys that you can use in nvPY:

============= ==========
Key combo     Action
============= ==========
Ctrl-?        Display these key-bindings.
Ctrl-A        Select all text when in the note editor.
Ctrl-C        Copy selected text into the clipboard. If no text is selected, copy the note title.
Ctrl-D        Move note to trash. This can be easily recovered using the simplenote webapp.
Ctrl-F        Start real-time incremental regular expression search. As you type, notes list is filtered. Up / down cursor keys go to previous / next note.
Ctrl-G        Edit tags for currently selected note. Press ESC to return to note editing.
Ctrl-J        Navigate (down) to next note in list. (VIM binding)
Ctrl-K        Navigate (up) to previous note in list. (VIM binding)
Ctrl-M        Render Markdown note to HTML and open browser window.
Ctrl-N        Create new note.
Ctrl-Q        Exit nvPY.
Ctrl-R        Render reStructuredText (reST) note to HTML and open browser window.
Ctrl-S        Force sync of current note with simplenote server. Saving to disc and syncing to server also happen continuously in the background.
Ctrl-Shift-S  Toggle a pinned button.
Ctrl-Y        Redo note edits.
Ctrl-Z        Undo note edits.
Ctrl-SPACE    In search box, autocomplete tag under cursor. Keep on pressing for more alternatives.
Ctrl-+/-      Increase or decrease the font size.
Ctrl-BS       Delete previous word in the note editor.
Ctrl-Delete   Delete next word in the note editor.
ESC           Go from edit mode to search box (and, optionally, in empty search box, exit nvPY).
Ctrl-[        Same as ESC. (VIM binding)
ENTER         Start editing currently selected note. If there's a search string but no notes in the list, ENTER creates a new note with that search string as its title.
============= ==========

Features
========

* Syncs with simplenote.
* Support for simplenote tags and note pinning.
* Partial syncs (whilst notes are being edited) are done by a
  background thread so you can keep on working at light speed.
* Can be used offline, also without simplenote account.
* Search box does realtime gstyle or regular expression searching in all your
  notes. All occurrences of the search string are also
  highlighted in currently active note.
* Markdown rendering to browser.
* Continuous rendering mode: If you activate this before
  starting the markdown rendering, nvpy will render new html of
  the currently open note every few seconds. Due to the refresh
  tag in the generated HTML, the browser will refresh every few
  seconds. MAGIC UPDATES!
* reStructuredText (reST) rendering to browser. Yes, you can use nvPY
  as your reST previewer.
* Automatic hyperlink highlighting in text widget.
* KickAss(tm) inter-note linking with [[note name]]. If note name is
  not found in current list of notes, assumes it's a regular expression
  and sets it in the search bar. See the `screencast <http://youtu.be/NXuVMZr31SI>`_.

Planned features
================

* sqlite storage backend.
* Full(ish) screen mode.
* Prettiness.

Bugs and feedback
=================

* Report bugs with `the github issue tracker <https://github.com/cpbotha/nvpy/issues>`_.
* It's an even better idea to clone, fix and then send me a pull request.
* If you have questions, or would like to discuss nvpy-related matters, please do so via the `nvpy google discussion group / mailing list <https://groups.google.com/d/forum/nvpy>`_.
* If you really like nvpy, you could make me and you even happier by `tipping me with paypal <https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BXXTJ9E97DG52>`_! 

Credits
=======

* Sjaak Westdijk made significant contributions to the code starting after the 0.8.5 release.
* nvpy uses the `fantastic simplenote.py library by mrtazz <https://github.com/mrtazz/simplenote.py>`_.
* The brilliant application icon, a blue mini car (not as fast as the notational velocity rocket, get it?), is by `Cemagraphics <http://cemagraphics.deviantart.com/>`_.
* Thank you very much peeps for the PayPal tips!
  * stfa
  * https://github.com/gudnm
  * stephen powell
  * Robert Munger
  * Jordan McCommons
  * Jan Steinocher
  * T Anderson

Running Tests
=============

Run the following command. ::

    make test

NOTE: While test cases are running, the nvpy window is displayed many times.  It will impede your work.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cpbotha/nvpy",
    "name": "nvpy",
    "maintainer": "yuuki0xff",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "yuuki0xff@gmail.com",
    "keywords": "simplenote note-taking tkinter nvalt markdown",
    "author": "Charl P. Botha",
    "author_email": "cpbotha@vxlabs.com",
    "download_url": "https://files.pythonhosted.org/packages/d1/f6/4cdd70f673f9343363d45c0c7634b7b5dd92b547a06191b83a50ebaca20b/nvpy-2.3.0.tar.gz",
    "platform": null,
    "description": "====\nnvPY\n====\n\nnvpy is a simplenote-syncing note-taking tool inspired by Notational\nVelocity (and a little bit by nvALT too) on OSX and ResophNotes on\nWindows. It is significantly uglier, but it is cross-platform.  Yes,\nyou heard right, you can run this on Linux (tested), Windows (tested)\nand OS X (lightly tested).\n\nIt was written by Charl Botha, who needed a simplenote client on Linux and doesn't mind ugliness (that much). Sjaak Westdijk has contributed significantly to the codebase since right after the 0.8.5 release.\nSince nvPY v1.0.0, it is maintained by `yuuki0xff <https://github.com/yuuki0xff>`_.\n\n* nvpy lives happily at https://github.com/cpbotha/nvpy\n* For news and discussion, join the `public nvpy google group <https://groups.google.com/d/forum/nvpy>`_ or subscribe to its `RSS topic feed <https://groups.google.com/group/nvpy/feed/rss_v2_0_topics.xml>`_.\n\nDISCLAIMER\n==========\nIf nvpy blows up your computer, loses your job or just deletes all\nyour notes, I am NOT liable for anything. Also see the liability\nclause at the end of the new BSD licence text in the COPYRIGHT file.\n\nThat being said, I use nvpy daily on my own precious notes database\nand it hasn't disappointed me (yet).\n\nScreenshots and screencasts\n===========================\n\n* Screenshot taken shortly before the 0.9.7 release (clam theme, droid font):\n\n.. image:: https://lh3.googleusercontent.com/DvOXzSgUnzO_kUiKS8UdcF0F9DsF3v6MBRCiUMIT472FtSvlMGqU3AEr1XwT2ERmTQh5RcKraZvdtnnScWhtqZlQd-KQDnVwmbTtPWx8uWpAI1OJHsf0fhXlbB5rRnp2iakM7xwi1IO4_-CWno4LRIqsTf7g5Bvu6BogQshWeAYyZQlsn7i5vD7OqljS7UcEc9EcQy2WLao0uiWCB38RVWSaq4eWFWxJnxV_MaFV5fs9lTvkGC78pq9u2Z4-eTdjqzj6X-ZzLOPZTQZc7g-pyTkFIIa2_pZNUBW0-y1IqYJxM4eDLYcu6PPt4VlHPCN9rvkLN6xYUJLdaz0SIo8X9ezPLHvIuI41SiiIn1wZnrr9rfgFGocstzOMt-A5QzZ8gTkXuAHucrZdmg5Xe4upqvCZGztpc4bgwEyvx132Ua4Zk2utBUgLAh3rp3D1GR0J5R_-W0iBJsn2gsQaFGUJf4zB-bD6HszWkTJ7AAcV0TogR4CQE1757tcZIKPxdOPSwFuMGGq-xeIhHYyGa7dYE_xbkhqIeE3AIpJ7dRpTN5AxIlTzQg5WYF8TEw7pdu6P9YpYcw=w873-h470-no\n\n* Screencast of nvpy's inter-note linking (May 27, 2012): http://youtu.be/NXuVMZr31SI\n* Screencast of nvpy's gstyle search mode (October 18, 2012): http://youtu.be/dzILoLC5vRM\n* `Picasa Web album containing various screenshots over time <https://picasaweb.google.com/102438662851504788261/NvpyPublic?authuser=0&feat=directlink>`_.\n\nA note on automatic syncing\n===========================\n\n* When nvPY starts up, it automatically performs a full sync. When you start it up for the first time, this can take quite a while. On subsquent startups, it's much faster, as it maintains its own database on disk.\n* While running, nvPY automatically and continuously saves and syncs any changes to disk and to simplenote. You don't have to do anything besides typing your notes.\n* If you edit the same note simultaneously in nvPY and for example the web interface, these changes will be merged as you work.\n* If you add or delete notes from a completely different location, nvPY will not pick this up until your next full sync. In the future, this will also happen automatically.\n* In short: You usually don't have to worry about syncing and saving, simplenote takes care of this. If you have any more questions, please post them in the `nvpy google group <https://groups.google.com/d/forum/nvpy>`_.\n\nInstallation\n============\n\nSee the `nvPY installation guide <https://github.com/cpbotha/nvpy/blob/master/docs/installation.rst>`_.\n\nHow to run for the first time\n=============================\n\nCreate a file called .nvpy.cfg in your home directory that looks like\nthe following::\n\n    [nvpy]\n    sn_username = your_simplenote_username\n    sn_password = your_simplenote_password\n\nIf you installed this via pip install, you should now be able to start\nthe application by typing \"nvpy\". The first time you run it, it will take\na while as it downloads all of your simplenote notes. Subsequent runs\nare much faster as it uses the database it stores in your home directory.\n\nIf you prefer to run from your git clone, you can just invoke python on nvpy.py, or on the nvpy package directory.\n\nThe `example nvpy.cfg <https://github.com/cpbotha/nvpy/blob/master/nvpy/nvpy-example.cfg>`_ shows how you can configure the font \nfamily and size, the widget theme (!) configure nvpy to save and load notes as clear text, disable simplenote syncing, and so forth.\n\nMaking nvpy slightly less ugly on Linux\n=======================================\n\nOn Linux, I set the nvpy ttk theme to ``clam`` (instead of ``default``; the example\nconfig above has more information about themes), and I select nicer fonts. The\nrelevant config options are as follows::\n\n    theme = clam\n    font_family = droid sans mono\n    font_size = 12\n    list_font_size = 12\n\nOn Debian systems, you have to install the ``fonts-droid`` package to be able to\nselect the attractive ``droid sans mono`` font. ``ubuntu mono`` is also good and\nshould work out of the box on Ubuntu installations.\n\nLet us know on the Google group if you have suggestions for further decreasing\nthe level of ugliness!\n\nTheme Customization\n===================\n\nnvPY was prepared two themes.  You can apply it by editing `nvpy.cfg`.\n\n**Light Theme**: ::\n\n    # Colors (light theme)\n    text_color = black\n    selected_note_color = light blue\n    note_info_color = dark gray\n    highlight_note_info_color = light yellow\n    url_color = blue\n    background_color = white\n    highlight_background_color = yellow\n\n.. image:: ./images/light-theme.png\n\n**Dark Theme**: ::\n\n    # Colors (dark theme)\n    text_color = white\n    selected_note_color = #04a\n    note_info_color = light gray\n    highlight_note_info_color = #440\n    url_color = #08f\n    background_color = black\n    highlight_background_color = #440\n\n.. image:: ./images/dark-theme.png\n\nIf you dont like it, it would be better to customize the theme as your like.\nLet's change some options based on the above theme.\nOptions are accept 3 formats:\n\n* Hex triplet format (#rrggbb)\n* Shorthand hex triplet format (#rgb)\n* Color names  (See `color names list <https://www.tcl.tk/man/tcl8.5/TkCmd/colors.htm>`_ and `color chart <https://wiki.tcl.tk/37701>`_)\n\nNote: during customizing the theme we highly recommend setting ``simplenote_sync = 0`` to disable sync.\nBecause prevent reach the API rate limit by automatic full synchronization at startup.\n\nKeyboard handling\n=================\n\nnvPY was designed for lightning-speed note-taking and management with\nthe keyboard. As you type words in the search bar, the list of notes\nfound will be refined. In the default search mode (\"gstyle\"), it finds\nnotes that contain all the words you enter. For example::\n\n    t:work t:leads python imaging \"exact phrase\"\n\nWill find all notes tagged with both \"work\" and \"leads\" containing the\nwords \"python\" and \"imaging\" (anywhere, and in any order) and the exact\nphrase \"exact phrase\". The default is to search with case-sensitivity.\nThis can be changed with the CS checkbox. Remember though that\ncase-sensitivity has a significant effect on search speed.\n\nBy editing the config file, or by toggling the search mode option menu,\nyou can use regular expression search mode. This is of course much more\npowerful, but is much slower than gstyle. The difference is noticeable\non large note collections.\n\nHere's a summary of the different shortcut keys that you can use in nvPY:\n\n============= ==========\nKey combo     Action\n============= ==========\nCtrl-?        Display these key-bindings.\nCtrl-A        Select all text when in the note editor.\nCtrl-C        Copy selected text into the clipboard. If no text is selected, copy the note title.\nCtrl-D        Move note to trash. This can be easily recovered using the simplenote webapp.\nCtrl-F        Start real-time incremental regular expression search. As you type, notes list is filtered. Up / down cursor keys go to previous / next note.\nCtrl-G        Edit tags for currently selected note. Press ESC to return to note editing.\nCtrl-J        Navigate (down) to next note in list. (VIM binding)\nCtrl-K        Navigate (up) to previous note in list. (VIM binding)\nCtrl-M        Render Markdown note to HTML and open browser window.\nCtrl-N        Create new note.\nCtrl-Q        Exit nvPY.\nCtrl-R        Render reStructuredText (reST) note to HTML and open browser window.\nCtrl-S        Force sync of current note with simplenote server. Saving to disc and syncing to server also happen continuously in the background.\nCtrl-Shift-S  Toggle a pinned button.\nCtrl-Y        Redo note edits.\nCtrl-Z        Undo note edits.\nCtrl-SPACE    In search box, autocomplete tag under cursor. Keep on pressing for more alternatives.\nCtrl-+/-      Increase or decrease the font size.\nCtrl-BS       Delete previous word in the note editor.\nCtrl-Delete   Delete next word in the note editor.\nESC           Go from edit mode to search box (and, optionally, in empty search box, exit nvPY).\nCtrl-[        Same as ESC. (VIM binding)\nENTER         Start editing currently selected note. If there's a search string but no notes in the list, ENTER creates a new note with that search string as its title.\n============= ==========\n\nFeatures\n========\n\n* Syncs with simplenote.\n* Support for simplenote tags and note pinning.\n* Partial syncs (whilst notes are being edited) are done by a\n  background thread so you can keep on working at light speed.\n* Can be used offline, also without simplenote account.\n* Search box does realtime gstyle or regular expression searching in all your\n  notes. All occurrences of the search string are also\n  highlighted in currently active note.\n* Markdown rendering to browser.\n* Continuous rendering mode: If you activate this before\n  starting the markdown rendering, nvpy will render new html of\n  the currently open note every few seconds. Due to the refresh\n  tag in the generated HTML, the browser will refresh every few\n  seconds. MAGIC UPDATES!\n* reStructuredText (reST) rendering to browser. Yes, you can use nvPY\n  as your reST previewer.\n* Automatic hyperlink highlighting in text widget.\n* KickAss(tm) inter-note linking with [[note name]]. If note name is\n  not found in current list of notes, assumes it's a regular expression\n  and sets it in the search bar. See the `screencast <http://youtu.be/NXuVMZr31SI>`_.\n\nPlanned features\n================\n\n* sqlite storage backend.\n* Full(ish) screen mode.\n* Prettiness.\n\nBugs and feedback\n=================\n\n* Report bugs with `the github issue tracker <https://github.com/cpbotha/nvpy/issues>`_.\n* It's an even better idea to clone, fix and then send me a pull request.\n* If you have questions, or would like to discuss nvpy-related matters, please do so via the `nvpy google discussion group / mailing list <https://groups.google.com/d/forum/nvpy>`_.\n* If you really like nvpy, you could make me and you even happier by `tipping me with paypal <https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BXXTJ9E97DG52>`_! \n\nCredits\n=======\n\n* Sjaak Westdijk made significant contributions to the code starting after the 0.8.5 release.\n* nvpy uses the `fantastic simplenote.py library by mrtazz <https://github.com/mrtazz/simplenote.py>`_.\n* The brilliant application icon, a blue mini car (not as fast as the notational velocity rocket, get it?), is by `Cemagraphics <http://cemagraphics.deviantart.com/>`_.\n* Thank you very much peeps for the PayPal tips!\n  * stfa\n  * https://github.com/gudnm\n  * stephen powell\n  * Robert Munger\n  * Jordan McCommons\n  * Jan Steinocher\n  * T Anderson\n\nRunning Tests\n=============\n\nRun the following command. ::\n\n    make test\n\nNOTE: While test cases are running, the nvpy window is displayed many times.  It will impede your work.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "A cross-platform simplenote-syncing note-taking app inspired by Notational Velocity.",
    "version": "2.3.0",
    "project_urls": {
        "Homepage": "https://github.com/cpbotha/nvpy"
    },
    "split_keywords": [
        "simplenote",
        "note-taking",
        "tkinter",
        "nvalt",
        "markdown"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1f64cdd70f673f9343363d45c0c7634b7b5dd92b547a06191b83a50ebaca20b",
                "md5": "ceacef0d1421a5ce261b2a02d5615f4f",
                "sha256": "3b9b221b086cec866b71823f18bbe7e691785fb9c9ff84946b97fdf6157e8066"
            },
            "downloads": -1,
            "filename": "nvpy-2.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ceacef0d1421a5ce261b2a02d5615f4f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1285471,
            "upload_time": "2023-09-24T16:59:47",
            "upload_time_iso_8601": "2023-09-24T16:59:47.824768Z",
            "url": "https://files.pythonhosted.org/packages/d1/f6/4cdd70f673f9343363d45c0c7634b7b5dd92b547a06191b83a50ebaca20b/nvpy-2.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-24 16:59:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cpbotha",
    "github_project": "nvpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "nvpy"
}
        
Elapsed time: 0.11534s