This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --============================== | |
| -- Send Keynote Text to Desktop Markdown File | |
| -- Formats the markdown as Marp syntax (a MarkDown presentation format) https://marp.app | |
| -- Based on | |
| -- Writted By: Richard Dooling https://github.com/RichardDooling/ | |
| -- Based on | |
| -- Send Keynote Presenter Notes to Evernote | |
| -- Version 1.0.1 | |
| -- Written By: Ben Waldie <ben@automatedworkflows.com> | |
| -- http://www.automatedworkflows.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Retrieve tag frequency data from a Taguette SQLite database. | |
| Produces: | |
| 1. Overall tag frequency (ordered by count descending) | |
| 2. Tag frequency per document | |
| 3. CSV output to stdout | |
| """ | |
| import argparse |
OlderNewer