https://github.com/jaakkor2/libxlsxwriter.jl
Julia wrapper for libxlsxwriter_jll. libxlsxwriter is a C library for creating Excel XLSX files.
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
Repository
Julia wrapper for libxlsxwriter_jll. libxlsxwriter is a C library for creating Excel XLSX files.
Basic Info
Statistics
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
- Releases: 4
Topics
Metadata Files
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) ```
Owner
- Name: Jaakko Ruohio
- Login: jaakkor2
- Kind: user
- Location: Finland
- Repositories: 35
- Profile: https://github.com/jaakkor2
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.
- Documentation: https://docs.juliahub.com/General/LibXLSXWriter/stable/
- License: MIT
-
Latest release: 0.1.5
published 10 months ago