awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
alex avatar

alex/rply

0
View on GitHub↗
392 星标·62 分支·Python·BSD-3-Clause·3 次浏览

Rply

An attempt to port David Beazley's PLY to RPython, and give it a cooler API.

Features

  • Parser Generators - Port of a parsing tool to RPython.

Star 历史

alex/rply 的 Star 历史图表alex/rply 的 Star 历史图表

AI 搜索

探索更多 awesome 仓库

用简单的语言描述您的需求 —— AI 将根据相关性为您从数千个精选开源项目中进行排序。

Start searching with AI

Rply 的开源替代方案

相似的开源项目,按与 Rply 的功能重合度排序。
  • ocaml/ocamlocaml 的头像

    ocaml/ocaml

    6,514在 GitHub 上查看↗

    OCaml is a strongly typed functional language featuring a sophisticated type system and a focus on safety and expressiveness. It provides a comprehensive compiling toolchain that transforms source code into either portable bytecode or high-performance native binaries. The project is distinguished by a shared memory parallel runtime that executes computations across multiple processor cores using domains, and an algebraic effect system for managing side effects and control flow through execution context handlers. It also includes a dedicated parser generator to automatically create lexers and

    OCamlcompilerfunctional-languageocaml
    在 GitHub 上查看↗6,514
  • kevinmehall/rust-pegkevinmehall 的头像

    kevinmehall/rust-peg

    1,598在 GitHub 上查看↗

    Parsing Expression Grammar (PEG) parser generator for Rust

    Rustgrammarparser-generatorparsing
    在 GitHub 上查看↗1,598
  • nikomatsakis/lalrpopnikomatsakis 的头像

    nikomatsakis/lalrpop

    2在 GitHub 上查看↗

    LR(1) parser generator for Rust

    Rust
    在 GitHub 上查看↗2
  • hardmath123/nearleyHardmath123 的头像

    Hardmath123/nearley

    3,740在 GitHub 上查看↗

    Nearley is a JavaScript parser toolkit used to define context-free grammars and generate corresponding parsers. It features an EBNF grammar compiler that transforms language definitions written in extended Backus-Naur Form into executable JavaScript code, utilizing an Earley parser implementation to process any context-free grammar. The toolkit distinguishes itself by its ability to handle left-recursion and ambiguity without failing, allowing it to identify and return multiple valid derivations for a single input string. It also includes a grammar fuzzing generator to produce random strings

    JavaScript
    在 GitHub 上查看↗3,740
查看 Rply 的所有 9 个替代方案→

常见问题解答

alex/rply 是做什么的?

An attempt to port David Beazley's PLY to RPython, and give it a cooler API.

alex/rply 的主要功能有哪些?

alex/rply 的主要功能包括:Parser Generators。

alex/rply 有哪些开源替代品?

alex/rply 的开源替代品包括: ocaml/ocaml — OCaml is a strongly typed functional language featuring a sophisticated type system and a focus on safety and… hardmath123/nearley — Nearley is a JavaScript parser toolkit used to define context-free grammars and generate corresponding parsers. It… kevinmehall/rust-peg — Parsing Expression Grammar (PEG) parser generator for Rust. nikomatsakis/lalrpop — LR(1) parser generator for Rust. pest-parser/pest — Pest is a Rust parsing library and automatic parser generator that transforms formal grammar definitions into… philippesigaud/pegged — A Parsing Expression Grammar (PEG) module, using the D programming language.