Yagiz Degirmenci

Results 24 comments of Yagiz Degirmenci

Hey again! Does using underscore's instead of hyphens has any visual differences in the end HTML ? If there is, I can add a flag for using underscores instead of...

@kshilov also you can create a workaround with `default=str` and `encode()` ```python class CustomJSONResponse(JSONResponse): media_type = "application/json" def render(self, content: typing.Any) -> bytes: return dumps(content, default=str).encode() ``` This will work...

@ScrimForever was it an `import` issue in your case?

@tricosmo try importing from Starlette. ```python from starlette.middleware.cors import CORSMiddleware ```

There is [indicatif](https://github.com/mitsuhiko/indicatif) and [pb](https://github.com/a8m/pb), both licensed with MIT. It would be very easy to implement for mv and cp as far as i have seen. Only thing i'm concerned...

Looks like the creator of this issue is gone, assuming the first PR became cannot be controllable anymore, if anyone willing to continue on this, please start with a brand...

> Could we have some workaround for this issue (capature all the exceptions globally) currently ? Through the middleware or the other method ? Thank you Sure @zhfkt , you...

I think you can create a custom encoder to handle this.

> Sure. It's not a legal requirement given the license compatibility, but I agree it's good practice. However, I think we'd most probably just borrow some routines -- not entire...