Made a Programing language using python

This page summarizes the projects mentioned and recommended in the original post on /r/Python

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. cupscript

    CupScript Is A Simple Scripting Language Completely Created Using Python

    Lexer or also called a tokenizer is basically the first step of all of it. A lexer class takes in the text/user input (also filename for context to throw errors in my case) and goes through every single character and checks if any of it matches with the character I pass in if statements, if it does then if it is a '+' for example it will append a new token to a list (mine is called tokens) using the Token class you can check that out too a token class takes a Token type and a value so the type is PLUS here and the value is '+' all my types are stored in consts.py and then the tokens get passed to the parser

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. Lark

    Lark is a parsing toolkit for Python, built with a focus on ergonomics, performance and modularity.

    There's also lark, which is used by a plethora of projects (I haven't used it, but I heard about PreQL on a podcast where they talk for a bit about what it's like to develop a new language in lark)

  4. Preql

    An interpreted relational query language that compiles to SQL.

    There's also lark, which is used by a plethora of projects (I haven't used it, but I heard about PreQL on a podcast where they talk for a bit about what it's like to develop a new language in lark)

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • JSON extra uses orjson instead of ujson

    4 projects | news.ycombinator.com | 5 Jun 2024
  • The Future of MySQL is PostgreSQL: an extension for the MySQL wire protocol

    1 project | news.ycombinator.com | 26 Apr 2024
  • SQLGlot: No-dependency SQL parser, transpiler, optimizer for 21 SQL dialects

    1 project | news.ycombinator.com | 18 Mar 2024
  • SQLglot: Python SQL Parser and Transpiler

    1 project | news.ycombinator.com | 13 Mar 2024
  • utype VS pydantic - a user suggested alternative

    2 projects | 15 Feb 2024