↧
Answer by the Tin Man for How to display and import data from a feed url?
The data format looks like a variation on CSV, if ';;' is used as a column separator. Based on that:require 'csv'CSV.parse(data, :col_sep => ';;') do |csv| # do something with each recordenddata...
View ArticleHow to display and import data from a feed url?
Have do i display and extract data from a feed url? And I only of the interest to import/display those there have the catogory_id of 10This is the feed...
View Article