Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fboucher/myclippingsapiapp
.NET parser for the Amazon Kindle's "My Clippings.txt" file
https://github.com/fboucher/myclippingsapiapp
Last synced: about 2 months ago
JSON representation
.NET parser for the Amazon Kindle's "My Clippings.txt" file
- Host: GitHub
- URL: https://github.com/fboucher/myclippingsapiapp
- Owner: FBoucher
- License: apache-2.0
- Created: 2016-01-03T18:22:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-12-29T15:46:37.000Z (about 4 years ago)
- Last Synced: 2024-05-02T02:37:00.780Z (8 months ago)
- Language: C#
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MyClippingsAPIApp
My Clippings API App is a wrapper around the excellent [EdRyan/KindleClippings](https://github.com/EdRyan/KindleClippings) (.NET parser for the Amazon Kindle's "My Clippings.txt" file)
That will make the library accessible to [Azure LogicApp](https://azure.microsoft.com/services/app-service/logic/?WT.mc_id=dotnet-0000-frbouche).## How to use
Two methodes are currently available:
- AllKindleClippings(string filename)
- KindleClippingsAfter(string filename, string StartDate)### Sample
GET:
http://localhost:46905/KindleClippingsAfter?filename=C:\\temp\\My Clippings.txt&startdate=2016-02-08 6:59:30 AM### Result
[
{
"BookName": "GitHub Pages now faster and simpler with Jekyll 3.0",
"Author": "",
"ClippingType": 1,
"Page": null,
"Location": "40",
"DateAdded": "2016-02-08T06:59:30",
"Text": "important changes annonved for github and jerkel users. And alternatively a note to al Markdown users.[misc.markdown.jerkell.github.kramdown.rouge]",
"BeginningPage": null,
"BeginningLocation": 40
},
{
"BookName": "GitHub Pages now faster and simpler with Jekyll 3.0",
"Author": "",
"ClippingType": 0,
"Page": null,
"Location": "40-40",
"DateAdded": "2016-02-08T06:59:30",
"Text": "process,",
"BeginningPage": null,
"BeginningLocation": 40
},
{
"BookName": "Introducing Insiders Builds",
"Author": "Chris Dias [MSFT]",
"ClippingType": 1,
"Page": null,
"Location": "22",
"DateAdded": "2016-02-08T07:09:39",
"Text": "the Insider preview are back in a more convivial structure.[dev.vscode.visualstudio.insider]",
"BeginningPage": null,
"BeginningLocation": 22
}
]