# Introduction
**_EasyCoder_** is a high-level English-like domain-specific scripting language (DSL) suited for prototyping and rapid testing of ideas. It operates on the command line and a graphics module is under construction. The language is written in Python and it acts as a fairly thin wrapper around standard Python functions, giving fast compilation and good runtime performance for general applications.
**_EasyCoder_** is well suited to building command-line or graphical applications for expressing random logic such as operating procedures and rules, or controlling physical systems, particularly those using wifi devices. It is easy to construct and issue REST commands to local or remote web servers.
For more advanced applications, **_EasyCoder_** is designed to be extensible, by enabling extra language syntax to be added via plugin-in modules. Once these are installed they act as seamless extensions to the basic syntax provided. **_EasyCoder_** derives its power from the use of rich and comprehensive language rather than a complex system of frameworks such as those commonly used in modern programming. This makes it very easy to learn as our brains are wired to operate that way. Having said that, the needs of most control systems are usually served by a fairly modest number of keywords and syntactic variants.
<hr>
There is also a JavaScript version of **_EasyCoder_**, which provides a full set of graphical features to run in a browser. For this, please visit
Repository: [https://github.com/easycoder/easycoder.github.io](https://github.com/easycoder/easycoder.github.io)
Website: [https://easycoder.github.io](https://easycoder.github.io)
<hr>
## Quick Start
Install **_EasyCoder_** in your Python environment:
```
pip install requests easycoder
```
Test the install by typing the command `easycoder`.
<hr>
On Linux, this will probably fail as the installer places the executable file in the `$HOME/.local/bin` directory. So give the command `export PATH=$HOME/.local/bin:$PATH`.
To make this change permanent, edit your `.profile` file, adding the following:
```
# set PATH so it includes user's private .local/bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
```
<hr>
Now write a test script, `hello.ecs`, containing the following:
```
print `Hello, world!`
exit
```
(Note the backticks.) This is traditionally the first program to be written in virtually any language. To run it, use `easycoder hello.ecs`.
The output will look like this (the version number will likely differ):
```
EasyCoder version 250403.1
Compiled <anon>: 1 lines (2 tokens) in 0 ms
Run <anon>
Hello, world!
```
Why the `exit`? Because EasyCoder can't tell that the program is finished. It might contain elements that are waiting for outside events, so without `exit` it just stops and waits. You can kill it by typing Control-C.
It's conventional to add a program title to a script:
```
! Test script
script Test
log `Hello, world!`
exit
```
The first line here is just a comment and has no effect on the running of the script. The second line gives the script a name, which is useful in debugging as it says which script was running. I've also changed `print` to `log` to get more information from the script. When run, the output is now
```
EasyCoder version 250403.1
Compiled Test: 3 lines (4 tokens) in 0 ms
Run Test
16:37:39.132311: 3-> Hello, world!
```
As you might guess from the above, the `log` command shows the time and the line in the script it was called from. This is very useful in tracking down debugging print commands in large scripts.
Here in the repository is a folder called `scripts` containing some sample scripts:
`fizzbuzz.ecs` is a simple programming challenge often given at job interviews
`tests.ecs` is a test program containing many of the **_EasyCoder_** features
`benchmark.ecs` allows the performance of **_EasyCoder_** to be compared to other languages if a similar script is written for each one.
## Graphical programming
**_EasyCoder_** includes a graphical programming environment based on PySide6, that is in under development. Some demo scripts will be included in the `scripts` directory as development proceeds. Anyone wishing to track progress can do so via this repository. At the time of writing we are transitioning from an early version based on PySimpleGUI to one based on PySide, the latter being an open product that matches the needs of a DSL better than does the former.
## Significant features
- English-like syntax based on vocabulary rather than structure. Scripts can be read as English
- Comprehensive feature set
- Runs directly from source scripts. A fast compiler creates efficient intermediate code that runs immediately after compilation
- Low memory requirements
- Minimim dependency on other 3rd-party packages
- Built-in co-operative multitasking
- Dynamic loading of scripts on demand
- The language can be extended seamlessly using plugin function modules
- Plays well with any Python code
- Fully Open Source
## Programming reference
**_EasyCoder_** comprises a set of modules to handle tokenisation, compilation and runtime control. Syntax and grammar are defined by [packages](doc/README.md), of which there are currently two; the [core](doc/core/README.md) package, which implements a comprehensive set of command-line programming features, and and the [graphics](doc/graphics/README.md) package, which adds graphical features in a windowing environment.
## Extending the language
**_EasyCoder_** can be extended to add new functionality with the use of 'plugins'. These contain compiler and runtime modules for the added language features. **_EasyCoder_** can use the added keywords, values and conditions freely; the effect is completely seamless. There is an outline example in the `plugins` directory called `example.py`, which comprises a module called `Points` with new language syntax to deal with two-valued items such as coordinates. In the `scripts` directory there is `points.ecs`, which exercises the new functionality.
A plugin can act as a wrapper around any Python functionality that has a sensible API, thereby hiding its complexity. The only challenge is to devise an unambiguous syntax that doesn't clash with anything already existing in **_EasyCoder_**.
Raw data
{
"_id": null,
"home_page": null,
"name": "easycoder",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "compiler, scripting, prototyping, programming, coding, python, low code, hypertalk, computer language, learn to code",
"author": null,
"author_email": "Graham Trott <gtanyware@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/41/77/0aa7687f68ef972c727409236abceacf3b449f5ab7ec9e4eb1f017a537c3/easycoder-250729.1.tar.gz",
"platform": null,
"description": "# Introduction\n**_EasyCoder_** is a high-level English-like domain-specific scripting language (DSL) suited for prototyping and rapid testing of ideas. It operates on the command line and a graphics module is under construction. The language is written in Python and it acts as a fairly thin wrapper around standard Python functions, giving fast compilation and good runtime performance for general applications.\n\n**_EasyCoder_** is well suited to building command-line or graphical applications for expressing random logic such as operating procedures and rules, or controlling physical systems, particularly those using wifi devices. It is easy to construct and issue REST commands to local or remote web servers.\n\nFor more advanced applications, **_EasyCoder_** is designed to be extensible, by enabling extra language syntax to be added via plugin-in modules. Once these are installed they act as seamless extensions to the basic syntax provided. **_EasyCoder_** derives its power from the use of rich and comprehensive language rather than a complex system of frameworks such as those commonly used in modern programming. This makes it very easy to learn as our brains are wired to operate that way. Having said that, the needs of most control systems are usually served by a fairly modest number of keywords and syntactic variants.\n<hr>\n\nThere is also a JavaScript version of **_EasyCoder_**, which provides a full set of graphical features to run in a browser. For this, please visit\n\nRepository: [https://github.com/easycoder/easycoder.github.io](https://github.com/easycoder/easycoder.github.io) \nWebsite: [https://easycoder.github.io](https://easycoder.github.io)\n<hr>\n\n## Quick Start\nInstall **_EasyCoder_** in your Python environment:\n```\npip install requests easycoder\n```\n\nTest the install by typing the command `easycoder`.\n<hr>\nOn Linux, this will probably fail as the installer places the executable file in the `$HOME/.local/bin` directory. So give the command `export PATH=$HOME/.local/bin:$PATH`.\n\nTo make this change permanent, edit your `.profile` file, adding the following:\n```\n# set PATH so it includes user's private .local/bin if it exists\nif [ -d \"$HOME/.local/bin\" ] ; then\n PATH=\"$HOME/.local/bin:$PATH\"\nfi\n```\n<hr>\n\nNow write a test script, `hello.ecs`, containing the following:\n```\nprint `Hello, world!`\nexit\n```\n(Note the backticks.) This is traditionally the first program to be written in virtually any language. To run it, use `easycoder hello.ecs`.\n\nThe output will look like this (the version number will likely differ):\n```\nEasyCoder version 250403.1\nCompiled <anon>: 1 lines (2 tokens) in 0 ms\nRun <anon>\nHello, world!\n```\n\nWhy the `exit`? Because EasyCoder can't tell that the program is finished. It might contain elements that are waiting for outside events, so without `exit` it just stops and waits. You can kill it by typing Control-C.\n\nIt's conventional to add a program title to a script:\n```\n! Test script\n script Test\n log `Hello, world!`\n exit\n```\n\nThe first line here is just a comment and has no effect on the running of the script. The second line gives the script a name, which is useful in debugging as it says which script was running. I've also changed `print` to `log` to get more information from the script. When run, the output is now\n```\nEasyCoder version 250403.1\nCompiled Test: 3 lines (4 tokens) in 0 ms\nRun Test\n16:37:39.132311: 3-> Hello, world!\n```\n\nAs you might guess from the above, the `log` command shows the time and the line in the script it was called from. This is very useful in tracking down debugging print commands in large scripts.\n\nHere in the repository is a folder called `scripts` containing some sample scripts:\n\n`fizzbuzz.ecs` is a simple programming challenge often given at job interviews \n`tests.ecs` is a test program containing many of the **_EasyCoder_** features \n`benchmark.ecs` allows the performance of **_EasyCoder_** to be compared to other languages if a similar script is written for each one.\n\n## Graphical programming\n**_EasyCoder_** includes a graphical programming environment based on PySide6, that is in under development. Some demo scripts will be included in the `scripts` directory as development proceeds. Anyone wishing to track progress can do so via this repository. At the time of writing we are transitioning from an early version based on PySimpleGUI to one based on PySide, the latter being an open product that matches the needs of a DSL better than does the former.\n\n## Significant features\n\n - English-like syntax based on vocabulary rather than structure. Scripts can be read as English\n - Comprehensive feature set\n - Runs directly from source scripts. A fast compiler creates efficient intermediate code that runs immediately after compilation\n - Low memory requirements\n - Minimim dependency on other 3rd-party packages\n - Built-in co-operative multitasking\n - Dynamic loading of scripts on demand\n - The language can be extended seamlessly using plugin function modules\n - Plays well with any Python code\n - Fully Open Source\n\n## Programming reference\n\n**_EasyCoder_** comprises a set of modules to handle tokenisation, compilation and runtime control. Syntax and grammar are defined by [packages](doc/README.md), of which there are currently two; the [core](doc/core/README.md) package, which implements a comprehensive set of command-line programming features, and and the [graphics](doc/graphics/README.md) package, which adds graphical features in a windowing environment.\n\n## Extending the language\n\n**_EasyCoder_** can be extended to add new functionality with the use of 'plugins'. These contain compiler and runtime modules for the added language features. **_EasyCoder_** can use the added keywords, values and conditions freely; the effect is completely seamless. There is an outline example in the `plugins` directory called `example.py`, which comprises a module called `Points` with new language syntax to deal with two-valued items such as coordinates. In the `scripts` directory there is `points.ecs`, which exercises the new functionality.\n\nA plugin can act as a wrapper around any Python functionality that has a sensible API, thereby hiding its complexity. The only challenge is to devise an unambiguous syntax that doesn't clash with anything already existing in **_EasyCoder_**.\n",
"bugtrack_url": null,
"license": null,
"summary": "Rapid scripting in English",
"version": "250729.1",
"project_urls": {
"Home": "https://github.com/easycoder/easycoder-py"
},
"split_keywords": [
"compiler",
" scripting",
" prototyping",
" programming",
" coding",
" python",
" low code",
" hypertalk",
" computer language",
" learn to code"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "882d564875d58038d672b7ffecb4657e28df73680de10ca366b20bcc26861e3b",
"md5": "4d06f331cfb12c4f41897b61dc2c6284",
"sha256": "9fda05cdaacf447f22af4ad273e60d9d14188733c869707708d11fb60d03d834"
},
"downloads": -1,
"filename": "easycoder-250729.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4d06f331cfb12c4f41897b61dc2c6284",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 48321,
"upload_time": "2025-07-29T16:25:02",
"upload_time_iso_8601": "2025-07-29T16:25:02.394995Z",
"url": "https://files.pythonhosted.org/packages/88/2d/564875d58038d672b7ffecb4657e28df73680de10ca366b20bcc26861e3b/easycoder-250729.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41770aa7687f68ef972c727409236abceacf3b449f5ab7ec9e4eb1f017a537c3",
"md5": "a337b419e1e9f12a0492600b8f21d71d",
"sha256": "935a8577f5d86347c20d895772fe1f7ffd44c96819bcaaa5dd4d26c216bbb7d6"
},
"downloads": -1,
"filename": "easycoder-250729.1.tar.gz",
"has_sig": false,
"md5_digest": "a337b419e1e9f12a0492600b8f21d71d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2787750,
"upload_time": "2025-07-29T16:25:09",
"upload_time_iso_8601": "2025-07-29T16:25:09.651038Z",
"url": "https://files.pythonhosted.org/packages/41/77/0aa7687f68ef972c727409236abceacf3b449f5ab7ec9e4eb1f017a537c3/easycoder-250729.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-29 16:25:09",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "easycoder",
"github_project": "easycoder-py",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "easycoder"
}