{"id":13508742,"url":"https://github.com/xou/elixlsx","last_synced_at":"2025-10-21T19:02:03.411Z","repository":{"id":2695121,"uuid":"46763801","full_name":"xou/elixlsx","owner":"xou","description":"An Elixir XLSX writer","archived":false,"fork":false,"pushed_at":"2024-08-07T23:49:10.000Z","size":251,"stargazers_count":300,"open_issues_count":38,"forks_count":120,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-03-20T22:50:47.328Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xou.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-11-24T03:12:15.000Z","updated_at":"2025-03-17T14:46:26.000Z","dependencies_parsed_at":"2024-03-03T14:32:10.598Z","dependency_job_id":"068a4dce-b696-4ff2-be2e-1e5e52780c9a","html_url":"https://github.com/xou/elixlsx","commit_stats":{"total_commits":205,"total_committers":41,"mean_commits":5.0,"dds":0.5073170731707317,"last_synced_commit":"d24fa3843c82cf2a584637544623eb8c0aeea599"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xou%2Felixlsx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xou%2Felixlsx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xou%2Felixlsx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xou%2Felixlsx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xou","download_url":"https://codeload.github.com/xou/elixlsx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246314015,"owners_count":20757453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T02:00:57.784Z","updated_at":"2025-10-21T19:02:03.323Z","avatar_url":"https://github.com/xou.png","language":"Elixir","funding_links":[],"categories":["Office"],"sub_categories":[],"readme":"# Elixlsx\n\n[![Build Status](https://travis-ci.com/xou/elixlsx.svg?branch=master)](https://travis-ci.org/xou/elixlsx)\n[![Module Version](https://img.shields.io/hexpm/v/elixlsx.svg)](https://hex.pm/packages/elixlsx)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/elixlsx/)\n[![Total Download](https://img.shields.io/hexpm/dt/elixlsx.svg)](https://hex.pm/packages/elixlsx)\n[![License](https://img.shields.io/hexpm/l/elixlsx.svg)](https://github.com/xou/elixlsx/blob/master/LICENSE)\n[![Last Updated](https://img.shields.io/github/last-commit/xou/elixlsx.svg)](https://github.com/xou/elixlsx/commits/master)\n\nElixlsx is a writer for the MS Excel OpenXML format (`.xlsx`).\n\nFeatures:\n\n- Multiple (named) sheets with custom column widths \u0026 column heights.\n- (Unicode-)strings, Numbers, Dates\n- Font formatting (size, bold, italic, underline, strike)\n- Horizontal alignment and text wrapping\n- Font and cell background color, borders\n- Merged cells\n\n\n## Installation\n\nAs of version 0.6, elixlsx requires Elixir 1.12 or above.\n\nInstallation via Hex, in `mix.exs`:\n\n```elixir\ndefp deps do\n  [{:elixlsx, \"~\u003e 0.6.0\"}]\nend\n```\n\nVia GitHub:\n\n```elixir\ndefp deps do\n  [{:elixlsx, github: \"xou/elixlsx\"}]\nend\n```\n\n## Usage\n\n1-Line tutorial:\n\n```elixir\n(alias Elixlsx.Workbook, alias Elixlsx.Sheet)\niex(1)\u003e Workbook.append_sheet(%Workbook{}, Sheet.with_name(\"Sheet 1\") |\u003e Sheet.set_cell(\"A1\", \"Hello\", bold: true)) |\u003e Elixlsx.write_to(\"hello.xlsx\")\n```\n\nSee [example.exs](https://github.com/xou/elixlsx/blob/master/example.exs) for examples how to use the various features.\n\n- The workbook is a XML file ultimately, so remember that formulas containing \"\u003c\" or \"\u003e\" must be escaped properly.\n- `:xmerl_lib.export_text/1` can be used to escape formulas properly\n\n## Number and date formatting reference\n\nA quick introduction how number formattings look like can be found\n[here](https://social.msdn.microsoft.com/Forums/office/en-US/e27aaf16-b900-4654-8210-83c5774a179c/xlsx-numfmtid-predefined-id-14-doesnt-match).\n\n\n## License\n\nCopyright (c) 2015 Nikolai Weh\n\nThis library is MIT licensed. See the [LICENSE](https://github.com/xou/elixlsx/blob/master/LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxou%2Felixlsx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxou%2Felixlsx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxou%2Felixlsx/lists"}