Hacker News new | ask | show | jobs
by datalopers 1481 days ago
It issues HTTP requests and provides a small terminal UI. Why does the language possibly matter?
3 comments

A good example would be curlie (go frontend for curl - https://github.com/rs/curlie) vs httpie (pure python - https://github.com/httpie/httpie). Originally I used httpie for its easier syntax, but it is very noticeably slower than curlie. I presume this is why they are asking for a rust version.

Another reason is that python is a bit harder to distribute due to the nature of python packaging, where as rust compiles to a single binary.

I want a single binary executable file. Doing `pip install` didn't work 19 out of 20 times I attempted it.
> as a reference for how Rustaceans would achieve comparable functionality