Tagged Questions
14
votes
7answers
867 views
Embedding a Low Performance Scripting Language in Python
I have a web-application. As part of this, I need users of the app to be able to write (or copy and paste) very simple scripts to run against their data.
The scripts really can be very simple, and ...
4
votes
5answers
705 views
Looking for an embeddable scripting language for C++ with 64-bit support and Cross Platform
I'm looking for a scripting language that works on 32-bit and 64-bit machines as well as on Windows and Linux. I will be embedding it into a C++ application so I prefer it to be natively written in ...
5
votes
12answers
1k views
Is there a “safe” subset of Python for use as an embedded scripting language?
In the many Python applications I've created, I often create simple modules containing nothing but constants to be used as config files. Additionally, because the config file is actually a Python ...
9
votes
4answers
2k views
Deploying application with Python or another embedded scripting language
I'm thinking about using Python as an embedded scripting language in a hobby project written in C++. I would not like to depend on separately installed Python distribution. Python documentation seems ...