macnotesapp icon indicating copy to clipboard operation
macnotesapp copied to clipboard

Work with Apple MacOS Notes.app from the command line. Also includes python interface for scripting Notes.app from your own python code.

Results 24 macnotesapp issues
Sort by recently updated
recently updated
newest added

I'd like to write **tasks** to a **shared** note for sharing, for example, todo.txt tasks with someone.

enhancement

Add `notes export DIRECTORY` to export all or some notes to DIRECTORY: --json: export to JSON --sqlite: export to SQLite DB --txt: export to text --html: export to HTML --attachments:...

enhancement

The rewrite to ScriptingBridge (#17) is almost complete but folders still need AppleScript call so they're really slow. Need to figure out a way to get the note's folder without...

See [this](https://github.com/dogsheep/apple-notes-to-sqlite)

enhancement

Attachments are not currently handled.

enhancement

The `.notes()` method can search by name, account, password_protected, or body and this is implemented by dynamically generated predicates. It would be nice to be able to pass a predicate...

enhancement

This looks like a much better way of interacting with Notes: [PyXA](https://github.com/SKaplanOfficial/PyXA) As an example: ```pycon >>> import PyXA >>> app = PyXA.Application("Notes") >>> print(app.notes().name()) ``` Prints titles of all...

enhancement

If I add a note using `notes -e`: * Actual behavior * the first line is styled as Helvetica, Regular, 12 * subsequent lines are styled as System Font (Default),...

bug

I have this prototyped using markdownify to render the HTML notes to Markdown and Textual to display a TUI. I'd love to have a full Notes UI in the Terminal...

enhancement

The AppleScript interface is well tested but need tests for the CLI

enhancement