Last updated:
0 purchases
pdxpy 0.1.1
Pdxpy
Converter for Python data structures to pdxscript.
For example,
"test_effect": {
"if": [
{
"limit": {
"NOT": {
"has_variable": "some_variable"
}
}
},
{
"set_variable": "some_variable"
}
]
}
gets converted to
test_effect = {
if = {
limit = {
NOT = {
has_variable = some_variable
}
}
set_variable = some_variable
}
}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.