grantrosse

Results 6 comments of grantrosse

Here's a minimal example (using a headed browser) based on filipopo's stackoverflow answer: https://github.com/grantrosse/headed-undetected-lambda-114

I think you need to use `Textract_API.DETECT` not `TextractAPI.ANALYZE` `from textractcaller import call_textract, Textract_Features, Textract_API`

I wrote this little sanitization loop: ``` password = 'ss{)747&FH%4)}' clean_pass = '' for c in password: if c in ['(', ')', '{', '}', '%']: clean_pass += ('{' + c...

Thanks was looking for this today- The documentation misrepresents the input data: https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-crowd-textract-detection.html

^one thing I know for sure is that your blocks won't work without some adjustment, see this stackoverflow question for an example: https://stackoverflow.com/questions/64302986/how-to-highlight-custom-extractions-using-a2is-crowd-textract-analyze-document So in other words you need to...