8000 Update and rename README to README.md · pyparsing/pyparsing@8da7598 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8da7598

Browse files
authored
Update and rename README to README.md
1 parent 81f9f6e commit 8da7598

File tree

1 file changed

+34
-35
lines changed

1 file changed

+34
-35
lines changed

README renamed to README.md

Lines changed: 34 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
====================================
2-
PyParsing -- A Python Parsing Module
3-
====================================
4-
5-
Introduction
6-
============
1+
PyParsing -- A Python Parsing Module
2+
====================================
3+
4+
Introduction
5+
============
76

87
The pyparsing module is an alternative approach to creating and executing
98
simple grammars, vs. the traditional lex/yacc approach, or the use of
109
regular expressions. The pyparsing module provides a library of classes
1110
that client code uses to construct the grammar directly in Python code.
1211

1312
Here is a program to parse "Hello, World!" (or any greeting of the form
14-
"<salutation>, <addressee>!"):
13+
"salutation, addressee!"):
1514

1615
from pyparsing import Word, alphas
1716
greet = Word( alphas ) + "," + Word( alphas ) + "!"
@@ -39,18 +38,18 @@ vexing when writing text parsers:
3938
The .zip file includes examples of a simple SQL parser, simple CORBA IDL
4039
parser, a config file parser, a chemical formula parser, and a four-
4140
function algebraic notation parser. It also includes a simple how-to
42-
document, and a UML class diagram of the library's classes.
43-
44-
45-
46-
Installation
47-
============
48-
49-
Do the usual:
50-
41+
document, and a UML class diagram of the library's classes.
42+
43+
44+
45+
Installation
46+
============
47+
48+
Do the usual:
49+
5150
python setup.py install
5251

53-
(pyparsing requires Python 2.6 or later.)
52+
(pyparsing requires Python 2.6 or later.)
5453

5554
Or corresponding commands using pip, easy_install, or wheel:
5655

@@ -59,22 +58,22 @@ Or corresponding commands using pip, easy_install, or wheel:
5958
easy_install pyparsing
6059

6160
wheel install pyparsing
62-
63-
64-
Documentation
65-
=============
66-
67-
See:
68-
69-
HowToUsePyparsing.html
70-
71-
72-
License
73-
=======
74-
75-
MIT License. See header of pyparsing.py
76-
77-
History
78-
=======
79-
61+
62+
63+
Documentation
64+
=============
65+
66+
See:
67+
68+
HowToUsePyparsing.html
69+
70+
71+
License
72+
=======
73+
74+
MIT License. See header of pyparsing.py
75+
76+
History
77+
=======
78+
8079
See CHANGES file.

0 commit comments

Comments
 (0)
0