Skip to content

Commit

Permalink
TT to cesbit
Browse files Browse the repository at this point in the history
  • Loading branch information
joente committed Jan 27, 2022
1 parent b5f3a33 commit 8ab2fa0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![CI](https://github.com/transceptor-technology/pyleri/workflows/CI/badge.svg)](https://github.com/transceptor-technology/pyleri/actions)
[![Release Version](https://img.shields.io/github/release/transceptor-technology/pyleri)](https://github.com/transceptor-technology/pyleri/releases)
[![CI](https://github.com/cesbit/pyleri/workflows/CI/badge.svg)](https://github.com/cesbit/pyleri/actions)
[![Release Version](https://img.shields.io/github/release/cesbit/pyleri)](https://github.com/cesbit/pyleri/releases)

Python Left-Right Parser
========================
Pyleri is an easy-to-use parser created for [SiriDB](http://siridb.net/). We first used [lrparsing](http://lrparsing.sourceforge.net/doc/html/) and wrote [jsleri](https://github.com/transceptor-technology/jsleri) for auto-completion and suggestions in our web console. Later we found small issues within the `lrparsing` module and also had difficulties keeping the language the same in all projects. That is when we decided to create Pyleri which can export a created grammar to JavaScript, C, Python, Go and Java.
Pyleri is an easy-to-use parser created for [SiriDB](http://siridb.net/). We first used [lrparsing](http://lrparsing.sourceforge.net/doc/html/) and wrote [jsleri](https://github.com/cesbit/jsleri) for auto-completion and suggestions in our web console. Later we found small issues within the `lrparsing` module and also had difficulties keeping the language the same in all projects. That is when we decided to create Pyleri which can export a created grammar to JavaScript, C, Python, Go and Java.

---------------------------------------
* [Related projects](#related-projects)
Expand Down Expand Up @@ -37,10 +37,10 @@ Pyleri is an easy-to-use parser created for [SiriDB](http://siridb.net/). We fir

---------------------------------------
## Related projects
- [jsleri](https://github.com/transceptor-technology/jsleri): JavaScript parser
- [libcleri](https://github.com/transceptor-technology/libcleri): C parser
- [goleri](https://github.com/transceptor-technology/goleri): Go parser
- [jleri](https://github.com/transceptor-technology/jleri): Java parser
- [jsleri](https://github.com/cesbit/jsleri): JavaScript parser
- [libcleri](https://github.com/cesbit/libcleri): C parser
- [goleri](https://github.com/cesbit/goleri): Go parser
- [jleri](https://github.com/cesbit/jleri): Java parser

## Installation
The easiest way is to use PyPI:
Expand Down Expand Up @@ -243,7 +243,7 @@ package grammar
import (
"regexp"

"github.com/transceptor-technology/goleri"
"github.com/cesbit/goleri"
)

// Element indentifiers
Expand Down
2 changes: 1 addition & 1 deletion pyleri/grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class {name}(Grammar):
import (
\t"regexp"
\t"github.com/transceptor-technology/goleri"
\t"github.com/cesbit/goleri"
)
// Element indentifiers
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
long_description_content_type='text/markdown',
author='Jeroen van der Heijden',
author_email='[email protected]',
url='https://github.com/transceptor-technology/pyleri',
url='https://github.com/cesbit/pyleri',
download_url=(
'https://github.com/transceptor-technology/'
'https://github.com/cesbit/'
'pyleri/tarball/{}'.format(version)),
keywords=['parser', 'grammar', 'autocompletion'],
classifiers=[
Expand Down

0 comments on commit 8ab2fa0

Please sign in to comment.