Skip to content

utopos/kindle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kindle

Elixir package to provide Kindle related functionalites.

Services

  • Parsing MyClippings.txt file
  • "Send to kindle"

Example

clippings= 
"The Selfish Gene\\r\\n\- Your Highlight on Location 1600-1602 | Added on Monday, February 9, 2015 6:33:40 PM\\r\\n\\r\\some highlight\\r\\n==========\\r\\n"\
|> Kindle.parse_clippings()

clippings == [
  {:ok, %Kindle.Clippings.Clipping{
    content: "some highlight", 
    date: ~D[2015-02-09],
    location: nil,
    time: ~T[18:33:40], 
    title: "The Selfish Gene", 
    type: "Highlight", 
    where: "Location 1600-1602"}
  ]

Installation

def deps do
  [
{:kindle, git: "https://github.com/utopos/kindle"}
]
end

If available in Hex, the package can be installed by adding kindle to your list of dependencies in mix.exs:

def deps do
  [
    {:kindle, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/kindle.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages