dkbarn
dkbarn
I'm interested in this feature too. Are there any updates? Thanks
Suggestion: Could there be an additional option added to the graphiql_options dictionary which allows you to override the resource directory for all of the .js and .css files currently being...
To anyone else facing this issue: In the end I just hosted static copies of the js/css resource files via aiohttp directly, rather than enabling the built-in graphiql endpoint provided...
Ok I think I misunderstood what this library was. I thought it was a Python wrapper around the complete Strava REST API, but apparently it is limited to only *reading*...
What I find bizarre is that, at least with the MySQL driver, a database name is required to create the connection, but that connection isn't actually restricted to that database....
For what reason? Any further details you can share?
How certain are we that the changes made here actually have the intended effect? I'm noticing that the `py.typed` file was never added as package data, it was only added...
Sounds good, thanks for the explanation @vytas7 !
Confirmed that I actually get different results on the same image, depending on what data type I provide the `readtext` method: ``` import easyocr import numpy as np import PIL.Image...
The CRAFT detection model expects input images to be provided in RGB colorspace: https://github.com/clovaai/CRAFT-pytorch/blob/master/imgproc.py#L14 So it appears that EasyOCR is incorrect everywhere it is converting to BGR colorspace.