File: README.md

package info (click to toggle)
fparser 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,084 kB
  • sloc: python: 28,555; f90: 70; makefile: 36
file content (63 lines) | stat: -rw-r--r-- 3,037 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# News #

  * 26/11/2024 Version 0.2.0 released (support for statements behind OMP sentinels, non-standard
    STOP and bug fix for type-guard statements).
  * 31/01/2024 Version 0.1.4 released (resolves issues with WHERE statements and intrinsics).
  * 18/09/2023 Version 0.1.3 released (resolves issues with support for DO CONCURRENT).
  * 19/06/2023 Version 0.1.2 released (bug fix for handling of INCLUDE files).
  * 28/04/2023 Version 0.1.1 released (extends F2008 support with the optional
    "::" in the MODULE PROCEDURE statement).
  * 18/04/2023 Version 0.1.0 released and status changed from `alpha` to `beta`. See the [CHANGELOG](CHANGELOG.md) for more details.
  * 16/06/2022 Version 0.0.16 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 30/05/2022 Version 0.0.15 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 10/03/2022 Version 0.0.14 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 02/11/2021 Version 0.0.13 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 26/04/2021 Version 0.0.12 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 15/05/2020 Version 0.0.11 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 18/11/2019 Version 0.0.10 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 04/11/2019 Version 0.0.9 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 03/12/2018 Version 0.0.8 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 23/04/2018 Version 0.0.7 released. See the [CHANGELOG](CHANGELOG.md)
    for details.
  * 22/03/2017 Version 0.0.2 released. Documentation made available
    on [ReadTheDocs](http://fparser.readthedocs.io).
  * 16/01/2017 Parser code extracted from F2PY project to form the
    base of the fparser project.

# Introduction #

This project is based upon the Fortran (77..2003) parser originally
developed by Pearu Peterson for the F2PY project,
[www.f2py.com](http://www.f2py.com). It provides a parser for Fortran
source code implemented purely in Python with minimal dependencies.

# Obtaining #

fparser is available from the [Python Package Index](https://pypi.python.org/pypi/fparser).
It may also be cloned from [github](https://github.com/stfc/fparser). Alternatively, github provides
tarballs for each of the [releases](https://github.com/stfc/fparser/releases).

# Documentation #

The documentation for fparser is hosted on [ReadTheDocs](http://fparser.readthedocs.io).

# Code Metrics #

![fparser unit tests](https://github.com/stfc/fparser/workflows/fparser%20unit%20tests/badge.svg)
[![codecov](https://codecov.io/gh/stfc/fparser/branch/master/graph/badge.svg?token=x0abs66TST)](https://codecov.io/gh/stfc/fparser)
[![Documentation Status](https://readthedocs.org/projects/fparser/badge/?version=stable)](http://fparser.readthedocs.io/en/stable/?badge=stable)

![Icicle coverage plot generated by CodeCov](https://codecov.io/gh/stfc/fparser/graphs/icicle.svg?token=x0abs66TST)

# See also #

[www.f2py.com](http://www.f2py.com).