Skip to main content

Fortran 90 namelist parser

Project description

A Python module for parsing Fortran namelist files

About f90nml

The f90nml module takes a Fortran 90 namelist file and parses it into a Python dict of namelist groups, each containing a dict of its variables. Fortran data types are converted to equivalent Python types.

Usage

To read a Fortran namelist file as a dict, use the read() method:

nml_dict = f90nml.read(nml_filename)

To output a Python dict as a Fortran namelist file, use the write() method:

f90nml.write(my_nml, output_filename)

This method will abort if the output file already exists.

Additional Features

Derived types

Additional NmlDicts are created to traverse user-defined types. For example, if you want to access z in the following namelist:

&dtype_nml
   x%y%z = 1
/

then z can be accessed in the equivalent namelist nml by typing

z = nml['dtype_nml']['x']['y']['z']

Overwriting an existing file

To overwrite an existing file when using the write method, use the force flag:

f90nml.write(nml, nml_filename, force=True)

Notes

The read method produces an NmlDict, which behaves as a dict with case-insensitive keys, due to the case insensitivity of Fortran. This implementation is currently not a true case-insensitive dict, and is only intended to accommodate individual references and assignments.

In a Fortran executable, the data types of values in the namelist files are set by the corresponding variables within the program, and cannot in general be determined from the namelist file alone. Therefore, f90nml only makes an approximate guess about its data type.

The following namelist features are currently not supported:

  • Implicit vector assignment (v(i:j) = c)

  • Multidimensional vector assignment (v(:,:) = 1, 2, 3, 4)

  • Upcast vector elements if components differ (x(i) = 1, x(j) = 2.0)

  • Escape on repeated quotes ('This doesn''t parse correctly')

  • stdin/stdout support (?, ?=)

Licensing

f90nml is distributed under the Apache 2.0 License.

Contact

Marshall Ward <python@marshallward.org>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

f90nml-0.6.2.tar.gz (10.3 kB view details)

Uploaded Source

File details

Details for the file f90nml-0.6.2.tar.gz.

File metadata

  • Download URL: f90nml-0.6.2.tar.gz
  • Upload date:
  • Size: 10.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for f90nml-0.6.2.tar.gz
Algorithm Hash digest
SHA256 22a4ebbd6e262de0af1a01d39df72ddf0c150fd23868ab97ad8b550342b600af
MD5 2e25f6a1ed9e94e968617a6745efa608
BLAKE2b-256 7e2a0c0d16dc31e1e55c2e9e91955172d9c7f5256bc04f36878c34eef4b210ea

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page