tomosia_amanaplus_crawl 0.1.5 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e09b5361e7b84f880485d64480eca862a19dcbd32c0cf4a0bab3160c3b5ab11
4
- data.tar.gz: fc69ac8dcb7e3ba4c74412bb4760ef2cd996831d572eb63f184624330d8789a8
3
+ metadata.gz: c0f30081ca8543573b8f1f16c2aaf77384d899152d4f5f424f5008dfe1c7c0fc
4
+ data.tar.gz: a819309522dd41b9346a0c43fe538bbd1b380b7524e0a3cac2dc00cdf4193d48
5
5
  SHA512:
6
- metadata.gz: 8ef2cbc7fa812b63ff04e136dcc5ff479fede20b7489485b83ce5dc84c5642fe3eba846bfc8a14c335b7c9271acf4bbcf2a6e0d4e2e557302488359306e820f4
7
- data.tar.gz: 414a5491c0227c9f43830a11384e90b55305b0cdcb14d1b963c60c36aa278b748631296ad4bee837ed05184c490df8f747a0cc239025c6bd12d831ddb3ecb704
6
+ metadata.gz: 23afb7fba2307a0107b549a9e060fe4959de8f89dfad79cd63c0b0c4f2d7627ace2ef447b830ad7ad22c42ed9fb9a9b16b37a73d102386b01489a9046263d64d
7
+ data.tar.gz: a2d1201db75b05b6d80fa1a17fa4a0594283d92ad928c2dc22c214305877447ce2aa05685aa57e4bf6a06155416bda62e0d70a3b77dda9d02a8ace6714f09b74
@@ -1,10 +1,11 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tomosia_amanaplus_crawl (0.1.5)
4
+ tomosia_amanaplus_crawl (0.1.8)
5
5
  httparty (= 0.18.1)
6
6
  nokogiri (= 1.10.10)
7
7
  spreadsheet (= 1.2.6)
8
+ thor
8
9
 
9
10
  GEM
10
11
  remote: https://rubygems.org/
@@ -37,6 +38,7 @@ GEM
37
38
  ruby-ole (1.2.12.2)
38
39
  spreadsheet (1.2.6)
39
40
  ruby-ole (>= 1.0)
41
+ thor (1.0.1)
40
42
 
41
43
  PLATFORMS
42
44
  ruby
data/README.md CHANGED
@@ -10,9 +10,6 @@ Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
12
  gem 'tomosia_amanaplus_crawl'
13
- gem 'httparty'
14
- gem 'nokogiri'
15
- gem 'spreadsheet'
16
13
  ```
17
14
 
18
15
  And then execute:
@@ -26,9 +23,9 @@ Or install it yourself as:
26
23
  ## Usage
27
24
 
28
25
  ```ruby
29
- require 'tomosia_amanaplus_crawl'
30
- TomosiaAmanaplusCrawl::Crawler.new.run(keyword, path, max)
26
+ tomosia_amanaplus_crawl crawl "keyword" --destination "/home/usr/Documents" --max=123
31
27
  ```
28
+ Example: tomosia_amanaplus_crawl crawl "hoian" --destination "./" --max=123
32
29
  keyword: hoian, danang, ...
33
30
  path: './', '/desktop/', ...
34
31
  max: số lượng ảnh muốn lấy về. Nếu max lớn hơn tổng số ảnh các page thì vẫn lấy hết tất cả ảnh
data/Rakefile CHANGED
@@ -4,3 +4,9 @@ require "rspec/core/rake_task"
4
4
  RSpec::Core::RakeTask.new(:spec)
5
5
 
6
6
  task :default => :spec
7
+
8
+ namespace :gem do
9
+ task :build do
10
+ system "rake build && rake install"
11
+ end
12
+ end
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'tomosia_amanaplus_crawl/cli'
4
+
5
+ TomosiaAmanaplusCrawl::Cli.start
@@ -8,10 +8,10 @@ module TomosiaAmanaplusCrawl
8
8
  require 'spreadsheet'
9
9
 
10
10
  class Crawler
11
- URL = "https://plus.amanaimages.com/items/search/"
11
+ URL = "https://plus.amanaimages.com/items/search"
12
12
 
13
13
  def run(keyword, destination, max)
14
- unparsed_page = HTTParty.get("#{URL}/#{keyword}")
14
+ unparsed_page = open("#{URL}/#{keyword}").read
15
15
  parsed_page = Nokogiri::HTML(unparsed_page)
16
16
 
17
17
  pages = parsed_page.css("div.c-paginate__nums").css('a').last.text.to_i # tổng số page
@@ -19,7 +19,7 @@ module TomosiaAmanaplusCrawl
19
19
 
20
20
  # lấy tổng số image
21
21
  total = parsed_page.css("h1.p-search-result__ttl").text.split(' ').first
22
- total = total[11..(total.length - 1)].chop.chop.chop.sub(',', '').to_i
22
+ total = total[(6 + keyword.length)..(total.length - 1)].chop.chop.chop.gsub(',', '').to_i
23
23
  if max > total # nếu max lớn hơn total thì max = total => vẫn lấy hết
24
24
  max = total
25
25
  end
@@ -36,7 +36,7 @@ module TomosiaAmanaplusCrawl
36
36
  while curr_page <= pages
37
37
  puts "Crawling page #{curr_page}..........."
38
38
 
39
- pagination_unparsed_page = HTTParty.get("https://plus.amanaimages.com/items/search/#{keyword}?page=#{curr_page}")
39
+ pagination_unparsed_page = open("#{URL}/#{keyword}?page=#{curr_page}").read
40
40
  pagination_parsed_page = Nokogiri::HTML(pagination_unparsed_page)
41
41
  pagination_images_listings = pagination_parsed_page.css("div.p-item-thumb")
42
42
 
@@ -70,13 +70,23 @@ module TomosiaAmanaplusCrawl
70
70
  print "\nDownloading"
71
71
  images.each do |curr_image|
72
72
  threads << Thread.new(curr_image) {
73
- open(curr_image[:url]) do |image|
74
- File.open("#{path}/#{curr_image[:url].split('/').last}", "a+") do |file|
75
- file.write(image.read) # lưu hình ảnh
76
- curr_image[:size] = image.size # cập nhật lại size trong mảng images
77
- print "."
73
+ timeout = 0
74
+ begin
75
+ URI.open(curr_image[:url]) do |image|
76
+ File.open("#{path}/#{curr_image[:url].split('/').last}", "a+") do |file|
77
+ file.write(image.read) # lưu hình ảnh
78
+ curr_image[:size] = image.size # cập nhật lại size trong mảng images
79
+ print "."
80
+ end
81
+ end # end open
82
+ rescue => exception
83
+ if timeout < 3
84
+ timeout += 1
85
+ retry
86
+ else
87
+ next
78
88
  end
79
- end # end open
89
+ end
80
90
  }
81
91
  end
82
92
  threads.each { |t| t.join }
@@ -0,0 +1,14 @@
1
+ require 'thor'
2
+ require_relative '../tomosia_amanaplus_crawl'
3
+
4
+ module TomosiaAmanaplusCrawl
5
+ class Cli < Thor
6
+
7
+ desc "crawl KEYWORD", "enter KEYWORD to search"
8
+ option :destination
9
+ option :max
10
+ def crawl(keyword)
11
+ TomosiaAmanaplusCrawl::Crawler.new.run(keyword, options[:destination], options[:max].to_i)
12
+ end
13
+ end
14
+ end
@@ -1,3 +1,3 @@
1
1
  module TomosiaAmanaplusCrawl
2
- VERSION = "0.1.5"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -0,0 +1,14 @@
1
+ require "bundler/setup"
2
+ require "tomosia_amanaplus_crawl"
3
+
4
+ RSpec.configure do |config|
5
+ # Enable flags like --only-failures and --next-failure
6
+ config.example_status_persistence_file_path = ".rspec_status"
7
+
8
+ # Disable RSpec exposing methods globally on `Module` and `main`
9
+ config.disable_monkey_patching!
10
+
11
+ config.expect_with :rspec do |c|
12
+ c.syntax = :expect
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ RSpec.describe TomosiaAmanaplusCrawl do
2
+ it "has a version number" do
3
+ expect(TomosiaAmanaplusCrawl::VERSION).not_to be nil
4
+ end
5
+
6
+ it "does something useful" do
7
+ expect(false).to eq(true)
8
+ end
9
+ end
@@ -9,13 +9,13 @@ Gem::Specification.new do |spec|
9
9
  spec.homepage = "https://github.com/tthuydang/tomosia_amanaplus_crawl"
10
10
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
11
11
 
12
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
13
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
14
- end
15
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
12
+ spec.files = `git ls-files`.split("\n")
13
+ spec.bindir = "exe"
14
+ spec.executables = 'tomosia_amanaplus_crawl'
16
15
  spec.require_paths = ["lib"]
17
16
 
18
17
  spec.add_runtime_dependency('httparty', '0.18.1')
19
18
  spec.add_runtime_dependency('nokogiri', '1.10.10')
20
19
  spec.add_runtime_dependency('spreadsheet', '1.2.6')
20
+ spec.add_runtime_dependency('thor')
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tomosia_amanaplus_crawl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nhat Huy
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-07 00:00:00.000000000 Z
11
+ date: 2020-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -52,9 +52,24 @@ dependencies:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
54
  version: 1.2.6
55
+ - !ruby/object:Gem::Dependency
56
+ name: thor
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description:
56
70
  email:
57
- executables: []
71
+ executables:
72
+ - tomosia_amanaplus_crawl
58
73
  extensions: []
59
74
  extra_rdoc_files: []
60
75
  files:
@@ -69,8 +84,12 @@ files:
69
84
  - Rakefile
70
85
  - bin/console
71
86
  - bin/setup
87
+ - exe/tomosia_amanaplus_crawl
72
88
  - lib/tomosia_amanaplus_crawl.rb
89
+ - lib/tomosia_amanaplus_crawl/cli.rb
73
90
  - lib/tomosia_amanaplus_crawl/version.rb
91
+ - spec/spec_helper.rb
92
+ - spec/tomosia_amanaplus_crawl_spec.rb
74
93
  - tomosia_amanaplus_crawl.gemspec
75
94
  homepage: https://github.com/tthuydang/tomosia_amanaplus_crawl
76
95
  licenses: []