Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wojtekmach/req_easyhtml

Req plugin for EasyHTML.
https://github.com/wojtekmach/req_easyhtml

Last synced: 17 days ago
JSON representation

Req plugin for EasyHTML.

Awesome Lists containing this project

README

        

# ReqEasyHTML

[Req](https://github.com/wojtekmach/req) plugin for [EasyHTML](https://github.com/wojtekmach/easyhtml).

## Usage

```elixir
Mix.install([
{:req, "~> 0.4.0"},
{:req_easyhtml, "~> 0.1.0"}
])

req =
(Req.new()
|> ReqEasyHTML.attach())

Req.get!(req, url: "https://elixir-lang.org").body[".entry-summary h5"]
#=>
# #EasyHTML[


# Elixir is a dynamic, functional language for building scalable and maintainable applications.
#
]
```