It gives your learning project a real meaning and therefore helps with your motivation to learn.
I'm trying to build a list of libraries having this potential.
Which library made you think "I wish it was ported on language X" ?
1–7 of 7 posts
It gives your learning project a real meaning and therefore helps with your motivation to learn.
I'm trying to build a list of libraries having this potential.
Which library made you think "I wish it was ported on language X" ?
numpy/scipy to golang
numpy/scipy to golang
Is it for performance/architecture improvements that could provide Go over Python or just for the sake of having a high level scientific library available in Go ? or both ?
That is, I would like to have an iterator in Python in which I could do:
from statistics import mean
from niceportedlib import Stream
salaries = Stream([]) # Some data here
mean_salary_by_department = salaries.group_by(lambda v: v['department']).map_values(statistics.mean)
Pandas does help, but is not pure Python (has native dependencies).I would like to see a stream processing library ported to pure Python. For example, Java 8 Stream API, Scala Stream API, Spark RDD API, jOOL API. They're all similar. That is, I would like to have an iterator in Python in which I could do: from statistics import mean from niceportedlib import Stream salaries = Stream([]) # Some data here mean_salary_by_department = salaries.group_by(lambda v: v['department']).map_val…