Metadata-Version: 2.1
Name: AdvancedTagScriptEngine
Version: 3.0.1
Summary: An easy drop in user-provided Templating system.
Home-page: https://github.com/japandotorg/TagScriptEngine
Author: inthedark.org & PhenoM4n4n
Author-email: support@melonbot.io
License: Creative Commons Attribution 4.0 International License
Keywords: tagscript
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: Freely Distributable
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
License-File: LICENSE

## Information
<a href='https://tagscript.readthedocs.io/en/latest/?badge=latest'>
    <img src='https://readthedocs.org/projects/tagscript/badge/?version=latest' alt='Documentation Status' />
</a>
<a href='https://pypi.python.org/pypi/TagScript/'>
    <img src='https://img.shields.io/pypi/v/TagScript' alt=' yPI' />
</a>

This repository is a fork of JonSnowbd's [TagScript](https://github.com/JonSnowbd/TagScript), a string templating language.
This fork adds support for Discord object adapters and a couple Discord related blocks, as
well as multiple utility blocks. Additionally, several tweaks have been made to the engine's
behavior.

This TagScriptEngine is used on [MELON, a Discord bot](https://melonbot.io/invite).
An example implementation can be found its [Tags cog](https://github.com/phenom4n4n/phen-cogs/tree/master/tags).

Additional documentation on the TagScriptEngine library can be [found here](https://tagscript.readthedocs.io/en/latest/).

## Installation

Download the latest version through pip:

```
pip(3) install TagScript
```

Download from a commit:

```
pip(3) install git+https://github.com/japandotorg/TagScript.git@<COMMIT_HASH>
```

Install for editing/development:

```
git clone https://github.com/japandotorg/TagScript.git
pip(3) install -e ./TagScript
```

## What?

TagScript is a drop in easy to use string interpreter that lets you provide users with ways of
customizing their profiles or chat rooms with interactive text.

For example TagScript comes out of the box with a random block that would let users provide
a template that produces a new result each time its ran, or assign math and variables for later
use.

## Dependencies

`Python 3.8+`

`discord.py`

`pyparsing`
