Sha256: 4ce72b6c79b42648fda072cc0747ace88bfe958097044303b97ed409de33c8d2
Contents?: true
Size: 1.52 KB
Versions: 12
Compression:
Stored size: 1.52 KB
Contents
module Datahen class CLI < Thor class ScraperExport < Thor package_name "scraper export" def self.banner(command, namespace = nil, subcommand = false) "#{basename} #{@package_name} #{command.usage}" end desc "show <export_id>", "Show a scraper's export" def show(export_id) client = Client::ScraperExport.new(options) puts "#{client.find(export_id)}" end desc "list", "Gets a list of exports" long_desc <<-LONGDESC List exports. LONGDESC option :scraper_name, :aliases => :s, type: :string, desc: 'Filter by a specific scraper_name' option :page, :aliases => :p, type: :numeric, desc: 'Get the next set of records by page.' option :per_page, :aliases => :P, type: :numeric, desc: 'Number of records per page. Max 500 per page.' def list() if options[:scraper_name] client = Client::ScraperExport.new(options) puts "#{client.all(options[:scraper_name])}" else client = Client::Export.new(options) puts "#{client.all}" end end desc "download <export_id>", "Download the exported file" def download(export_id) client = Client::ScraperExport.new(options) result = JSON.parse(client.download(export_id).to_s) if result['signed_url'] puts "Download url: \"#{result['signed_url']}\"" `open "#{result['signed_url']}"` else puts "Exported file does not exist" end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems