Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sdball/ex_duck_smart_cell
An Elixir Livebook smart cell for the ExDuck library
https://github.com/sdball/ex_duck_smart_cell
Last synced: 7 days ago
JSON representation
An Elixir Livebook smart cell for the ExDuck library
- Host: GitHub
- URL: https://github.com/sdball/ex_duck_smart_cell
- Owner: sdball
- License: mit
- Created: 2022-08-13T15:46:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-30T18:46:29.000Z (about 2 years ago)
- Last Synced: 2024-10-12T02:26:11.151Z (25 days ago)
- Language: Elixir
- Size: 559 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-livebook - ExDuck - An Elixir Livebook smart cell for the ExDuck library ![Community](https://img.shields.io/badge/Community-green) (SmartCells)
- awesome-livebook - ExDuck - An Elixir Livebook smart cell for the ExDuck library ![Community](https://img.shields.io/badge/Community-green) (SmartCells)
README
# ExDuckSmartCell
An Elixir Livebook smart cell interface for [ExDuck](https://github.com/sdball/ex_duck)
## Installation
ExDuckSmartCell can be installed by adding `ex_duck_smart_cell` to your list of
dependencies in your Livebook setup section:```elixir
Mix.install([
{:ex_duck_smart_cell, "~> 0.1.2"}
])
```Outside of Livebook you can add `ex_duck_smart_cell` to your list of
dependencies in `mix.exs`:```elixir
def deps do
[
{:ex_duck_smart_cell, "~> 0.1.2"}
]
end
```## Documentation
ExDuckSmartCell documentation can be found at
.## Usage
Add this package to your Livebook setup section. Then you'll have an "ExDuck" smart cell available.
Query for a given topic and the results will be displayed in markdown directly in your Livebook and the underlying data map will be assigned to the given variable name.
![ExDuck smart cell showing a query and results for "Elixir Language"](https://github.com/sdball/ex_duck_smart_cell/raw/main/example.png)