https://github.com/jaakkor2/libxlsxwriter.jl

Julia wrapper for libxlsxwriter_jll. libxlsxwriter is a C library for creating Excel XLSX files.

https://github.com/jaakkor2/libxlsxwriter.jl

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (8.2%) to scientific vocabulary

Keywords

excel julia julia-package xlsx xlsxwriter
Last synced: 5 months ago · JSON representation

Repository

Julia wrapper for libxlsxwriter_jll. libxlsxwriter is a C library for creating Excel XLSX files.

Basic Info
  • Host: GitHub
  • Owner: jaakkor2
  • License: mit
  • Language: Julia
  • Default Branch: master
  • Homepage:
  • Size: 419 KB
Statistics
  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • Open Issues: 1
  • Releases: 4
Topics
excel julia julia-package xlsx xlsxwriter
Created 11 months ago · Last pushed 6 months ago
Metadata Files
Readme License

README.md

LibXLSXWriter.jl

LibXLSXWriter is a package for creating Excel XSLX files based on libxlsxwriter. This package wraps the C API, see the full documentation for the getting started guide, a tutorial, the main API documentation and examples.

This wrapper depends on libxlsxwriter_jll.

Here is an example that creates the same spreadsheet as in demo.c. See the test folder for more examples of the Julia syntax. ```julia using LibXLSXWriter: workbooknew, workbookaddworksheet, workbookaddformat, formatsetbold, worksheetsetcolumn, worksheetwritestring, worksheetwritenumber, worksheetinsertimage, workbookclose

Create a new workbook and add a worksheet.

workbook = workbooknew("demo.xlsx") worksheet = workbookadd_worksheet(workbook)

Add a format.

format = workbookaddformat(workbook)

Set the bold property for the format

formatsetbold(format)

Change the column width for clarity.

worksheetsetcolumn(worksheet, 0, 0, 20)

Write some simple text.

worksheetwritestring(worksheet, 0, 0, "Hello")

Text with formatting.

worksheetwritestring(worksheet, 1, 0, "World", format)

Write some numbers.

worksheetwritenumber(worksheet, 2, 0, 123) worksheetwritenumber(worksheet, 3, 0, 123.456)

Insert an image.

worksheetinsertimage(worksheet, 1, 2, "logo.png")

workbook_close(workbook) ```

Build Status

Owner

  • Name: Jaakko Ruohio
  • Login: jaakkor2
  • Kind: user
  • Location: Finland

I'm going there, but I like it here wherever it is.

GitHub Events

Total
  • Create event: 17
  • Commit comment event: 10
  • Release event: 5
  • Issues event: 5
  • Watch event: 3
  • Delete event: 12
  • Issue comment event: 12
  • Push event: 15
  • Pull request event: 23
Last Year
  • Create event: 17
  • Commit comment event: 10
  • Release event: 5
  • Issues event: 5
  • Watch event: 3
  • Delete event: 12
  • Issue comment event: 12
  • Push event: 15
  • Pull request event: 23

Packages

  • Total packages: 1
  • Total downloads:
    • julia 1 total
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 6
juliahub.com: LibXLSXWriter

Julia wrapper for libxlsxwriter_jll. libxlsxwriter is a C library for creating Excel XLSX files.

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1 Total
Rankings
Dependent repos count: 8.4%
Average: 22.5%
Dependent packages count: 36.5%
Last synced: 6 months ago