-
Notifications
You must be signed in to change notification settings - Fork 0
Home
hc5duke edited this page Sep 14, 2010
·
4 revisions
parseitc is a Ruby gem written to parse iPhone app transaction reports from iTunes Connect.
Parsing of standard Sales/Trend Report tsv files from https://itts.apple.com/
Allows ruby applications as well as Bash Init scripts to use the same config.
require 'rubygems'
require 'lib/parseitc'
include ParseITC
report = Parser.new('/path/to/tsv/file1')
report.add_file('/path/to/tsv/file2')
report.count_by_price_tier.sort.each do |k, v|
puts "#{k}: #{v}"
end
- Ruby (Developed on 1.8.7)
- RubyGems
sudo gem install parseitc
- parse monthly and weekly reports