grantrosse

Results 8 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...

+1 - I tried loading using the automation build after receiving an error message that said to "purchase a key to use with VPN/proxy," but the problem is you're rejecting...

Add the ymax parameter: ```ymax = anker.lower_right.y``` new full function: ``` def get_words_below(self, anker: AreaSelection, number_of_words_to_return: int = None, text_type: str = 'word', area_selection: AreaSelection = None, page_number: int =...