Skip to main content

A customizable interpreted microlanguage designed to run untrusted code.

Project description

Scrolls

Scrolls is a small interpreter originally designed to allow users of my discord bots to make custom commands. It prioritizes control over the interpreter to help prevent abuse, while still allowing tight integration with python code.

Links

Why?

The two other candidates for user scripts were python and Lua. Python code is a nightmare to sandbox properly, and the available Lua interpreters for python didn't give me the kind of control I wanted over the interpreter. In addition, Lua was a bit much for simple custom commands. So, I made my own interpreter.

There is a scripting language available for Rust called Rhai with a similar concept.

Also, I just kinda wanted to try making an interpreted language...

Goals

  • Allow the developer to prevent abuse.
  • Integrate tightly with the parent python application.
  • Keep the syntax as simple as possible.

Getting Started

Check out the Links section above.

Installing

Scrolls may be installed through pip:

Linux

python3 -m pip install scrolls-py

Windows

py -3 -m pip install scrolls-py

Command Line Usage

The module comes with a built-in interpreter that may be invoked by executing the module. (Note that the linux version will be used from now on.)

python3 -m scrolls FILE

Try running some of the examples:

python3 -m scrolls ./examples/arithmetic.scrl

If no file is specified, the interpreter will run in interactive mode:

python3 -m scrolls

Programmatic Usage

Scrolls may be embedded into any python program:

import scrolls

# Create an interpreter. Note that an interpreter created this 
# way will not actually do anything. It's the responsibility of 
# the user to configure with the desired language features.
interpreter = scrolls.Interpreter()

# Configure the interpreter with the base language.
# scrolls.base_config is provided to make this common task
# a bit easier.
scrolls.base_config.configure(interpreter)

# Configure with stdio commands like input, and print
interpreter.command_handlers.add(scrolls.StdIoCommandHandler())

# Run your script.
script = """
print "Please enter your name:"
input name
!repeat(4) {
    print "Hello," $(cat $name "!")
}
"""
interpreter.run(script)

Acknowledgements

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scrolls-py-0.1.1.tar.gz (42.6 kB view details)

Uploaded Source

Built Distribution

scrolls_py-0.1.1-py3-none-any.whl (44.1 kB view details)

Uploaded Python 3

File details

Details for the file scrolls-py-0.1.1.tar.gz.

File metadata

  • Download URL: scrolls-py-0.1.1.tar.gz
  • Upload date:
  • Size: 42.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.1

File hashes

Hashes for scrolls-py-0.1.1.tar.gz
Algorithm Hash digest
SHA256 e67a1d454ac411ebf8072fc096f6b86b1c650ed8c5b30738e842859a009b6a58
MD5 75494accc9ae11d5900cbe969be46dae
BLAKE2b-256 54793256a4f9a459886ca0d2c748c37d18f1fbe55afab6a3b4a642fce7fd0ef6

See more details on using hashes here.

File details

Details for the file scrolls_py-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: scrolls_py-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 44.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.1

File hashes

Hashes for scrolls_py-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 35e96a9d115666bca4c147c5f34aed24e968d92ccf7f9d5d26fc0503ea8079fc
MD5 8c4e02136e3879229653f1fa94325340
BLAKE2b-256 8eb30d1873a170c584034c9e8cf6de6c4f4c2acd723022987eac92be9a2f00eb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page