plausible /
analytics
Open source, privacy-first web analytics. Lightweight, cookie-free Google Analytics alternative. Self-hosted or cloud.
97/100 healthLoading repository data…
sntran / repository
An Elixir open source and collaborative framework for extracting the data you need from websites. In a fast, simple, yet extensible way. Or just an experiment writing a scraper in Elixir to scratch my own itch. Use at your own risk.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
An open source and collaborative framework for extracting the data you need from websites. In a fast, simple, yet extensible way.
Write the rules to extract the data and let Scrapex do the rest.
Extensible by design, plug new functionality easily without having to touch the core.
Written in Elixir and runs on Linux, Windows, Mac, BSD, and embedded devices.
alias Scrapex.GenSpider
defmodule StackOverflowSpider do
use GenSpider
import Scrapex.Selector
def parse(response, state) do
result = response.body
|> select(".question-summary h3 a")
|> extract("href")
|> Enum.map(fn(href) ->
GenSpider.Response.url_join(response, href)
|> GenSpider.request(&parse_question/1)
|> GenSpider.await
end)
{:ok, result, state}
end
defp parse_question({:ok, response}) do
html = response.body
[title] = html |> select("h1 a") |> extract()
question = html |> select(".question")
[body] = question |> select(".post-text") |> extract
[votes] = question |> select(".vote-count-post") |> extract
tags = question |> select(".post-tag") |> extract
%{title: title, body: body, votes: votes, tags: tags}
end
end
urls = ["http://stackoverflow.com/questions?sort=votes"]
opts = [name: :stackoverflow_spider, urls: urls]
{:ok, spider} = GenSpider.start_link(StackOverflowSpider, [], opts)
questions = GenSpider.export(spider)
#=> "[{} | _]"
GenSpider behaviour.parse/2 callback.parse/2Selected from shared topics, language and repository description—not editorial ratings.
plausible /
Open source, privacy-first web analytics. Lightweight, cookie-free Google Analytics alternative. Self-hosted or cloud.
97/100 healthfirestormforum /
An open-source forum engine, with an Elixir+Phoenix backend and an Elm frontend.
76/100 healthcbh123 /
An open-source satirical social network. shlinkedin.com
77/100 healthriverrun /
No longer maintained - was an Authentication library for Plug-based applications in Elixir
14/100 healthstreamband /
HydraSRT – An Open Source Alternative to Haivision SRT Gateway
78/100 healthandreapavoni /
An attempt to port/rebuild Spree, an open source e-commerce solution, with Elixir and Phoenix.
36/100 health