enderpy_python_parser 0.1.0

A Python parser written in Rust
Documentation
<!-- markdownlint-configure-file {
  "MD033": false,
  "MD041": false
} -->
<div align="center">

<!-- <img src="" width="200" height="100"/> -->

# Enderpy

Enderpy is a autocompletion, static type checker & language server for python.

</div>

## Why Do I Need It?

it provides developers with faster autocomplete suggestions and the ability
to easily navigate to the definition and references of variables and functions
in their code.

## Goals

The primary goal of this project is providing instant feedback as you type.
[Ruff](https://github.com/charliermarsh/ruff) proved that there is a value
in providing faster implementation of static checkers.
That's why I'm continuing this path.

This project aims to build the components needed to achieve the goal of
providing fast autocompletion and type checking, including:

- Python parser
- Python type checker
- Python language server protocol implementation

## Contributing

If you want to help in building this project feel free to take a look at
issues and comment on any of them that you want to tackle, feel free to tag
us and ask for help when you need more information on something.

You can also use [these learning](https://glyphack.com/blog/compiler-resources/) resources for each topic

## Inspired By

- [oxc]https://github.com/Boshen/oxc
- [ruff]https://github.com/charliermarsh/ruff