pmeyerson

Results 18 comments of pmeyerson

Testing on ubuntu 22.04. I haven't been able to use the regular install of lutris since some drivers got updated, but this at least installs and launches without error! Will...

> You should probably get that driver situation checked out. Thanks I'm trying!!

Hi, I just started looking at this project and am interested in ocr capability too. I just did a demo for myself with pytesseract and an image from a cookbook...

Oh, interesting. I'd never seen that before but just checked it out and worked really well :) Glad you mentioned it.

something to parse out the ingredient /amount from the raw text would be nice too i think.

In case anyone else sees this, it seems to work for me. Added the custom function to a class I already had with other custom functions. ``` opts=jmespath.Options(custom_functions=custom.CustomFunctions()) >>> jmespath.search('issubset(`[0,1]`,...

@Jalkar FYI to get around this issue, I create the customizations I need to the rest handler in a separate module, extending `splunktaucclib`. Then I let UCC create the "real"...

FYI @Jalkar RE: "So in the end you need to change the generated file after each ucc-gen exec ?" >> YES. I added code in additional_packaging.py to open the generated...

here's what worked for me - lets me call custom modular input handler functions without having to maintain the scheme arguments when globalConfig.json is updated 1. add import statement 2....

for reference, here's stub from my custom modular input handler file: ``` ... def validate_input(self, definition): """ get all parameters and raise ValueError if something isn't right NOTE: getting the...