Documentation | Build Status | Others |
---|---|---|
A pure Julia implementation of Python
f90nml
package.
The code is hosted on GitHub, with some continuous integration services to test its validity.
This repository was forked from singularitti/FortranNamelistParser.jl and new functions to read namelist files into dictionary and write dictiory into Fortran namelist files have been added. Some minor fixes in parsing have also been done to ensure all sample namelist files are read correctly.
If your usecase namelist file is not being read/written correctly, please open a issue and attach a namelist file with code to reproduce the error. Alternatively, you are more than welcome to contribute directly to the repo to get your usecase supported.
The package can be installed with the Julia package manager.
From the Julia REPL, type ]
to enter the Pkg REPL mode and run:
pkg> add FortranNamelistParser
Or, equivalently, via the Pkg
API:
julia> import Pkg; Pkg.add("FortranNamelistParser")
- STABLE — documentation of the most recently tagged version.
- DEV — documentation of the in-development version.
The package is tested against, and being developed for, Julia 1.6
and above on Linux,
macOS, and Windows.
Contributions are very welcome, as are feature requests and suggestions. Please open an issue if you encounter any problems. The Contributing page has guidelines that should be followed when opening pull requests and contributing code.
- FortranNamelists.jl: Another pure Julia package for reading (and writing) Fortran namelist files. This package is another take at the parser with different features and is similar to Fortran in use. Please check if this package meets your needs better.
- PyFortran90Namelists: A package which uses
PyCall
to call the python librabryf90nml
to perform the parsing. - Fortran90Namelists: A work in progress package which would probably supersede this package in future when registered.