OpenGraph [ WIP! ] 

OpenGraph is an Elixir package to parse OpenGraph data from webpages.
Usage
iex(1)> OpenGraph.parse("https://yandex.ru")
{:ok,
%OpenGraphData{description: "Найдётся всё",
image: "https://yastatic.net/morda-logo/i/share-logo-ru.png",
title: "Яндекс", url: "https://yandex.ru"}}
iex(2)>Installation
-
Add
opengraphto your list of dependencies inmix.exs:
def deps do
[{:opengraph, "~> 0.1.0"}]
end-
Ensure
opengraphis started before your application:
def application do
[applications: [:opengraph]]
end