macnotesapp
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.
I'd like to write **tasks** to a **shared** note for sharing, for example, todo.txt tasks with someone.
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:...
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...
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...
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...
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),...
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...