Skip to content

jaredballou/pysmx

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pysmx

pysmx is a Python package for parsing, executing, and simulating the environment of SourceMod plug-ins.

Quickstart

from smx.compile import compile
plugin = compile('''
    public TwoPlusTwo() {
        return 2 + 2;
    }
''')
print plugin.runtime.call_function_by_name('TwoPlusTwo')

About

A Python module for extracting information from and executing compiled SourcePawn plug-ins (AND MUCH MORE!)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 55.4%
  • SourcePawn 32.3%
  • Python 11.7%
  • Other 0.6%