omni_scrape 0.1.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ OTJkOGZlMjE4MGEyNGZjMzY4MTY4NjRhMGNlYzc2NGMzODUwZGMxNw==
5
+ data.tar.gz: !binary |-
6
+ YzA4ZTRkODRmNWEyNDcxNDdmM2FhYzM3OGI0NTg2MDZlMmQ4NmM3Ng==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NDhiNWY0MDU4OTUzZGFjZWU5MjQ1NDIzZjZhZTNkMTc2MmJlNmIyMzQ2NjBj
10
+ MzhjMjljYWIzNzZlOGQ1OTc1MDZhYmNkYWJjN2NhMWJhMDVlMTg0MTgzNjQ0
11
+ M2U4NmNhNjUwYmNkYjg3NTNjZTY3ZGU3MTUxNzVhNDY5NTJkNWQ=
12
+ data.tar.gz: !binary |-
13
+ MTU0OTRjYTIwODY1YTdjOGVhM2RmMTU2ZjJkZGExOGVjZmJlYjk5MmM1ZmRm
14
+ YTUzNjMwMDk4YzBlNjVmNjJhZDI0NjA2YjkyZDY2ZDAwNzFjZjI5NTlmMTFj
15
+ N2UxZGIyYzQ4NTk2Yjc1YmM1ZjU2OGI4N2Q4ZTFiNzdiYzIzZmY=
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in omni_scrape.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # OmniScrape
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/omni_scrape`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'omni_scrape'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install omni_scrape
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ 1. Fork it ( https://github.com/[my-github-username]/omni_scrape/fork )
36
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
37
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
38
+ 4. Push to the branch (`git push origin my-new-feature`)
39
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "omni_scrape"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module OmniScrape
2
+ VERSION = "0.1.4.9"
3
+ end
@@ -0,0 +1,77 @@
1
+ require "omni_scrape/version"
2
+
3
+ module OmniScrape
4
+ def CrawlScrape(url, depth, sub_url)
5
+ page = Nokogiri::HTML(open(url))
6
+
7
+ links= page.css('a')
8
+
9
+ refarr=[]
10
+ titlearr=[]
11
+ titles =[]
12
+ hrefs = []
13
+ x=0
14
+ links.each do |link|
15
+ if(link['title']!=nil && link['title']!="" &&link['href']!=nil && link['href']!="")
16
+ # puts x
17
+ # puts (link['title'].split.join)
18
+ # x+=1
19
+ titles.push((link['title']).split.join)
20
+ hrefs.push((link['href']).split.join)
21
+
22
+ end
23
+
24
+ end
25
+ inc=0
26
+ while(!hrefs.empty?)
27
+ value= hrefs.pop
28
+ puts value
29
+ refarr.push(value)
30
+ refarr[inc]
31
+ inc+=1
32
+ end
33
+ inc=0
34
+ while(!titles.empty?)
35
+ value = titles.pop
36
+ puts value
37
+ titlearr.push(value)
38
+ puts titlearr[inc]
39
+ inc+=1
40
+ end
41
+
42
+ refarr.push("-")
43
+
44
+
45
+ for i in 0..titlearr.length
46
+ if(refarr[i]!="-")
47
+ url=sub_url+refarr[i]
48
+ fourofour=false
49
+
50
+ begin
51
+ if(fourofour==false)
52
+ pagina = Nokogiri::HTML(open(url))
53
+ end
54
+ rescue Exception =>ex
55
+ puts "got a 404"
56
+ fourofour=true
57
+ retry
58
+ end
59
+ if (fourofour==false)
60
+ trimval=titlearr[i]
61
+ finval=trimval.gsub!(/[!:\/-]/, '')
62
+ puts titlearr[i]
63
+ if(finval==nil && titlearr[i]!=nil)
64
+ finval=titlearr[i]
65
+ end
66
+ puts finval
67
+ if(finval!=nil)
68
+ crfile=File.new((finval+".html").chomp,"w")
69
+ crfile.puts pagina
70
+ crfile.close
71
+ end
72
+ end
73
+ end
74
+ end
75
+
76
+ end#def crawlscrape
77
+ end#module
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'omni_scrape/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "omni_scrape"
8
+ spec.version = OmniScrape::VERSION
9
+ spec.authors = ["Bradley Maynard"]
10
+ spec.email = ["maynard_bradley@yahoo.com"]
11
+
12
+ spec.summary = %q{This is an all-purpose web scraper}
13
+
14
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
15
+ spec.bindir = "exe"
16
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_development_dependency "nokogiri", "~>1.6.6.2"
20
+ spec.add_development_dependency "bundler", "~> 1.9"
21
+ spec.add_development_dependency "rake", "~> 10.0"
22
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omni_scrape
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.4.9
5
+ platform: ruby
6
+ authors:
7
+ - Bradley Maynard
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-06-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 1.6.6.2
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 1.6.6.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.9'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.9'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - maynard_bradley@yahoo.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - .travis.yml
64
+ - Gemfile
65
+ - README.md
66
+ - Rakefile
67
+ - bin/console
68
+ - bin/setup
69
+ - lib/omni_scrape.rb
70
+ - lib/omni_scrape/version.rb
71
+ - omni_scrape.gemspec
72
+ homepage:
73
+ licenses: []
74
+ metadata: {}
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ! '>='
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ! '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 2.4.7
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: This is an all-purpose web scraper
95
+ test_files: []