ticker_symbol_jpn 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8988473a33c3c397e1f5f3342db08bafcaf1a010
4
+ data.tar.gz: d7a974dd8bcfb2b91b8fddd2fd7b7d921fa1adfa
5
+ SHA512:
6
+ metadata.gz: 335767b09547e085c3d6ee5105a8cbbc32b7341a2c2adde2c619448e5ab311b3f62716ee10cd2c1c08acb5eef12872f6fcd090c4292b54191fa8140af1a540f3
7
+ data.tar.gz: 2fc3fdf9c65e41024977aabe25be639155fc70b61654ab0ed766373c8726dce7b0fe8c902b2b724b566dfc05974b10348fc2db1919649157cc72afd1bf6211d0
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /vendor/bundle/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ticker_symbol_jpn.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 kozakana
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,78 @@
1
+ # TickerSymbolJpn
2
+
3
+ Acquire ticker symbol and company name from Japan Exchange Group.
4
+ Only Japan data.
5
+
6
+ 証券コードと会社名を東京証券取引所のデータから取得するGEMです。
7
+
8
+ ## Notice
9
+
10
+ TickerSymbolJpn is used Web scraping. Therefore be careful about excessive access to a Web server.
11
+ Please use weather data which is written by your program in a file.
12
+ Webサーバーから毎回データを取得してくるため、Webサーバーに負荷がかかる可能性があります。使用する時はなるべく下記のようにファイルに書き出して使用してください。
13
+
14
+ example:
15
+ ```ruby
16
+ save_code "codes.json"
17
+ codes = load_code "codes.json"
18
+ ```
19
+
20
+ ## Installation
21
+
22
+ Add this line to your application's Gemfile:
23
+
24
+ ```ruby
25
+ gem 'ticker_symbol_jpn'
26
+ ```
27
+
28
+ And then execute:
29
+
30
+ $ bundle
31
+
32
+ Or install it yourself as:
33
+
34
+ $ gem install ticker_symbol_jpn
35
+
36
+ ## Usage
37
+
38
+ Data is hash data. Key is ticker symbol data and value is company name.
39
+
40
+ ```ruby
41
+ codes = TickerSymbolJpn.all_codes
42
+ p codes[3904] #=> "カヤック"
43
+ ```
44
+
45
+ ## Methods
46
+
47
+ ### all_codes
48
+
49
+ All ticker symbol data.
50
+
51
+ ### first_codes
52
+
53
+ Data of Tokyo Stock Exchange 1st section.
54
+
55
+ ### second_codes
56
+
57
+ Data of Tokyo Stock Exchange 2nd section.
58
+
59
+ ### mothers_codes
60
+
61
+ Data of Mothers.
62
+
63
+ ### save_code(json_file_path)
64
+
65
+ Save to json_file_path.
66
+
67
+ ### load_code(json_file_path)
68
+
69
+ Load from json_file_path.
70
+ Return hash data.
71
+
72
+ ## Contributing
73
+
74
+ 1. Fork it ( https://github.com/[my-github-username]/ticker_symbol_jpn/fork )
75
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
76
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
77
+ 4. Push to the branch (`git push origin my-new-feature`)
78
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ticker_symbol_jpn"
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 TickerSymbolJpn
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,69 @@
1
+ require "ticker_symbol_jpn/version"
2
+ require 'open-uri'
3
+ require 'json'
4
+
5
+ module TickerSymbolJpn extend self
6
+ FIRST_LINE = "コード"
7
+ SHEET_NAME = "Sheet1"
8
+
9
+ FIRST_URL = [
10
+ "http://www.jpx.co.jp/markets/statistics-equities/misc/tvdivq0000001vg2-att/first-d-j.xls",
11
+ "http://www.jpx.co.jp/markets/statistics-equities/misc/tvdivq0000001vg2-att/first-f-j.xls"
12
+ ]
13
+ SECOND_URL = [
14
+ "http://www.jpx.co.jp/markets/statistics-equities/misc/tvdivq0000001vg2-att/second-d-j.xls",
15
+ "http://www.jpx.co.jp/markets/statistics-equities/misc/tvdivq0000001vg2-att/second-f-j.xls"
16
+ ]
17
+ MOTHERS_URL = [
18
+ "http://www.jpx.co.jp/markets/statistics-equities/misc/tvdivq0000001vg2-att/mothers-d-j.xls",
19
+ "http://www.jpx.co.jp/markets/statistics-equities/misc/tvdivq0000001vg2-att/mothers-f-j.xls"
20
+ ]
21
+
22
+ def all_codes
23
+ urls = FIRST_URL + SECOND_URL + MOTHERS_URL
24
+ get_codes urls
25
+ end
26
+
27
+ def first_codes
28
+ get_codes FIRST_URL
29
+ end
30
+
31
+ def second_codes
32
+ get_codes SECOND_URL
33
+ end
34
+
35
+ def mothers_codes
36
+ get_codes MOTHERS_URL
37
+ end
38
+
39
+ def save_codes json_file_path
40
+ codes = all_codes
41
+ open(json_file_path, 'w') do |io|
42
+ JSON.dump(codes, io)
43
+ end
44
+ end
45
+
46
+ def load_codes json_file_path
47
+ json_data = open(json_file_path) do |io|
48
+ JSON.load(io)
49
+ end
50
+ json_data.keys.each do |key|
51
+ json_data[(Integer(key) rescue key) || key] = json_data.delete(key)
52
+ end
53
+ json_data
54
+ end
55
+
56
+ private
57
+ def get_codes urls
58
+ codes = {}
59
+
60
+ urls.each do |url|
61
+ book = Spreadsheet.open(open(url))
62
+ book.worksheet(SHEET_NAME).rows.each do |line|
63
+ next if line[1] == FIRST_LINE
64
+ codes[line[1].to_i] = line[2]
65
+ end
66
+ end
67
+ codes
68
+ end
69
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ticker_symbol_jpn/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ticker_symbol_jpn"
8
+ spec.version = TickerSymbolJpn::VERSION
9
+ spec.authors = ["kozakana"]
10
+ spec.email = ["goki727@gmail.com"]
11
+
12
+ spec.summary = %q{Acquire ticker symbol and company name from Japan Exchange Group.}
13
+ spec.description = %q{Acquire ticker symbol and company name from Japan Exchange Group.}
14
+ spec.homepage = "https://github.com/kozakana/ticker_symbol_jpn"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.9"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec"
25
+ spec.add_dependency "spreadsheet"
26
+ end
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ticker_symbol_jpn
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - kozakana
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-08-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: spreadsheet
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'
69
+ description: Acquire ticker symbol and company name from Japan Exchange Group.
70
+ email:
71
+ - goki727@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/setup
86
+ - lib/ticker_symbol_jpn.rb
87
+ - lib/ticker_symbol_jpn/version.rb
88
+ - ticker_symbol_jpn.gemspec
89
+ homepage: https://github.com/kozakana/ticker_symbol_jpn
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.4.5
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: Acquire ticker symbol and company name from Japan Exchange Group.
113
+ test_files: []