Popularity
1.1
Stable
Activity
0.0
Stable
6
1
1
Monthly Downloads: 12
Programming language: Elixir
License: Apache License 2.0
Tags:
Miscellaneous
Latest version: v0.1.1
epub_cover_extractor alternatives and similar packages
Based on the "Miscellaneous" category.
Alternatively, view epub_cover_extractor alternatives based on common mentions on social networks and blogs.
-
ex_rated
ExRated, the Elixir OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it. -
ex2ms
:ets.fun2ms for Elixir, translate functions to match specifications -
phone
Elixir phone number parser for numbers in international standard. -
ecto_autoslug_field
Automatically create slugs for Ecto schemas. -
funnel
Streaming Elixir API built upon ElasticSearch's percolation. -
std_json_io
A simple library for Elixir that provides json over STDIO -
bupe
BUPE is a Elixir ePub generator and parser (supports EPUB v3) -
gen_task
Generic Task behavior that helps encapsulate errors and recover from them in classic GenStage workers. -
countriex
All sorts of useful information about every country. A pure elixir port of the ruby Countries gem -
exprint
A printf / sprintf library for Elixir. It works as a wrapper for :io.format. -
Jisho-Elixir
A Japanese dictionary API; a wrapper around Jisho's API (http://jisho.org) -
expool
Extremely simple Process pooling and task submission in Elixir -
ratx
Rate limiter and overload protection for erlang application -
vessel
Elixir MapReduce interfaces with Hadoop Streaming integration -
indicado
Technical indicator library for Elixir with no dependencies. -
egaugex
A simple egauge parser to retrieve and parse data from egauge devices -
mixstar
Elixir Mix task to starring GitHub repository with `mix deps.get`ting dependent library -
ratekeeper
Ratekeeper is a library for scheduling rate-limited actions. -
presentex
Elixir -> HTML/JavaScript based presentation framework intended for showing Elixir code -
mixgraph
An interactive dependency plotter for your Hex Package -
passbook
Elixir library to create Apple Wallet (.pkpass) files -
growl
Simple wrapper for growl, the notification system for OSX -
exfcm
ExFCM is a simple wrapper around Firebase Cloud Messaging
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of epub_cover_extractor or a related project?
Popular Comparisons
README
EpubCoverExtractor
A tool for getting the ebooks covers, the projet is WIP, contributions are welcome.
Installation
Add epub_cover_extractor
to your list of dependencies in mix.exs
:
def deps do
[
{:epub_cover_extractor, "~> 0.1.0"}
]
end
Documentation
The project documentation can be found here on Hex
Quick Start
{:ok, binary} = EpubCoverExtractor.get_cover("book.epub")
{:ok,
<<137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73,
72, 68, 82, 0, 0, 5, 130, 0, 0, 8, 202, 8, 6, 0, 0,
0, 43, 176, 122, 217, 0, 0, 0, 9, 112, 72, 89, 115,
0, 0, 14, 196, 0, 0, 14...>>}
File.write("cover.png", binary)