Transformation: Format the Table
Explore how to transform and format data tables in Elixir projects by creating custom print functions. Learn to manage output cleanly for command-line interfaces and test table formatting effectively using Elixir's CaptureIO feature.
We'll cover the following...
We'll cover the following...
Create formatted table
All that’s left from our design is to create the formatted table. The following would be a nice interface:
def process({user, project, count}) do
Issues.GithubIssues.fetch(user, project)
|> decode_response()
|> ...