Replies: 1 comment 1 reply
-
That’s a great question. Typically with Python and Go you’re dealing with backend code anyway so size isn’t an issue. You’d probably use what’s called “OpenAPI codegen” where hundreds of functions are generated for your schema. For Python, though, the typing isn’t as strict because, well, it’s Python. But Go has many great OpenAPI utils. But the zero client weight, static type inference is possible in TypeScript thanks to static typechecking and generics. Neither Python nor Go have both of those. But you could probably recreate this with any other typed language that has both (e.g. Rust) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Do you know about something like your fetch in python and golang ecosystems or this is very unique? Not sure if i am searching right way but did not find anything but maybe i dont know how it's called.
Beta Was this translation helpful? Give feedback.
All reactions