Skip to content

Instantly share code, notes, and snippets.

@acalejos
Created February 6, 2024 04:55
Show Gist options
  • Save acalejos/61dfed2a0bd29d6990c52a9261399697 to your computer and use it in GitHub Desktop.
Save acalejos/61dfed2a0bd29d6990c52a9261399697 to your computer and use it in GitHub Desktop.
Search for Livebook Smart Cells

Find All Smart Cells

Mix.install([
  {:kino, "~> 0.12"},
  {:req, "~> 0.4"},
  {:req_github_paginate, github: "acalejos/req_github_paginate"}
])

Section

defmodule GitHubAPI do
  def headers(),
    do: %{
      "Accept" => "application/vnd.github+json",
      "Authorization" => "Bearer #{System.fetch_env!("LB_GITHUB_TOKEN")}",
      "X-GitHub-Api-Version" => "2022-11-28"
    }

  def params(),
    do: [
      q: "use Kino.SmartCell in:file language:elixir",
      per_page: 100,
      page: 1
    ]

  def new() do
    Req.new(base_url: "https://api.github.com") |> ReqGitHubPaginate.attach()
  end

  def _get_all(request, params) do
    resp =
      Req.get!(
        request,
        url: "/search/code",
        params: params,
        headers: headers()
      )

    if Keyword.has_key?(resp.headers["link"], :next) do
      {_, params} = Map.pop(resp.headers["link"][:next], "url")
      resp.body["items"] ++ _get_all(request, params)
    else
      resp.body["items"]
    end
  end

  def get_all(request) do
    _get_all(request, params())
  end
end
items = GitHubAPI.new() |> GitHubAPI.get_all()
nil
for repo <- items, repo["repository"]["owner"]["login"] != "livebook-dev" do
  [
    name: repo["repository"]["name"],
    description: repo["repository"]["description"],
    html_url: repo["repository"]["html_url"]
  ]
end
|> Kino.DataTable.new()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment