Article Shuheng Liu · May 16 9m read A Dive into Debugging Embedded Python 1. A Motivating Example Embedded Python has been around for a while. You probably followed the tutorials and learned about it. However, if you've tried to combine Python and ObjectScript in real development work, you probably ran into situations where you get an error message like this: #Debugging #Embedded Python #ObjectScript #InterSystems IRIS 18 2 3 146
Article Shuheng Liu · Jul 15, 2024 3m read Running WSGI applications with IPM Introduction to running WSGI in IRIS With IRIS 2024+, users can host WSGI applications using Security.Applications. As an example, a user can do something like this Minimum working example #Embedded Python #InterSystems Package Manager (IPM) #InterSystems IRIS #IRIS contest 8 4 0 312
Question Shuheng Liu · Jul 2, 2024 How to call another method in a generated method I have a class with two methods Class Foo.Bar { ClassMethod Helper() { // do something } ClassMethod Generated() [ CodeMode = objectgenerator ] { do ..Helper() // do something else } } Since the method Generated is run before the class is compiled, the call to do ..Helper() fails. Is there a way around this other than manual inlining? #Compiler #ObjectScript #InterSystems IRIS 0 3 0 151