1
1
I have heard that python is at a disadvantage when it comes to making API requests. It’s built on C which makes it slower. Are there any languages that are low level enough to make fast requests and still API accessible?
1
1
I have heard that python is at a disadvantage when it comes to making API requests. It’s built on C which makes it slower. Are there any languages that are low level enough to make fast requests and still API accessible?
-1
Go - easy concurrency, productive and effcient
1You will very rarely find that the choice of language is a major bottleneck, – Raghav Sood – 2018-08-23T05:45:08.673
I'd suggest Golang, it's fast enough and is designed API and website hosting. C is too low level, and C++ might still be a little low level. – MCCCS – 2018-08-23T07:11:03.993
1
C is not a slow language. C and its derivative C++ have become dominant because they are fast. C is fast enough that I have heard it called a "glorified assembler'. I don't believe any python implementation is written in native machine language . ( https://stackoverflow.com/questions/21717660/what-exactly-is-the-python-interpreter-implemented-with )
– dbkeys – 2018-08-23T10:22:02.450