ddombrow
Missing something when going through the Little Elixir book. Made my own function to grab a csv and make weather requests.
The result is the result of the first operation (a correct temperature response from a service, followed by the cities list. I expected a list of outputs only. Any pointers?
def get_cities_weather(csv_path) do
alias NimbleCSV.RFC4180, as: CSV
cities = csv_path
|> File.stream!
|> CSV.parse_stream
|> Stream.map(fn [city, city_ascii, lat, lng, pop, country, iso2, iso3, province] ->
%{name: city_ascii, lat: lat, lng: lng}
end)
cities
|> Enum.map_every(500, fn city ->
Metex.Worker.temperature_of(city)
end)
end
Produces:
[{:ok, 40.8}, %{lat: "34.5167011", lng: "65.25000063", name: "Chaghcharan"},
%{lat: "31.58299802", lng: "64.35999955", name: "Lashkar Gah"},
%{lat: "31.11200108", lng: "61.88699752", name: "Zaranj"},
%{lat: "32.63329815", lng: "65.86669865", name: "Tarin Kowt"},
%{lat: "32.85000016", lng: "68.41670453", name: "Zareh Sharan"}...]
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security











Showing Posts 8 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
But an important one! I thought if enumerable is the right word here quite a moment. Names are hard especially if you have to deal an remember the relations between similar names.
benwilson512
Minor nitpick: Enumerables are neither lazy nor eager. Stream deals with Enumerables lazily, and Enum deals with them eagerly.
So a stream does nothing until it is consumed. It can be consumed by
Stream.runor any of the Enum functions that eagerly consume their inputs.NobbZ
Yupp. A stream does nothing until you either
Stream.run/1it or use it as anEnumerable.ddombrow
take_every was what I wanted, thanks!
Question. If I did Stream.take_every it’s lazier right? It won’t actually do anything until I Enum.map in the next step?
NobbZ
If you want that behaviour, you probably want
Enum.take_every/2orStream.take_every/2.It could look like this then:
ddombrow
OH! It’s just returning the original input if it skips it… I was not thinking of that. In my head it was going to even return every 500th item… Thanks for pointing it out.
PatNowak
I don’t know what exactly you want to achieve, but there’s
Enum.intoif you want to convert these maps into lists and - most of all - there’sEnum.to_listfor converting stream into list.NobbZ
So you have to wait another 495 elements after the ellipsis, before you will get a processed item again.
Perhaps you want plain old
Enum.map/2orStream.map/2instead?