fotmob 0.0.1
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 +7 -0
- data/lib/fotmob.rb +45 -0
- metadata +83 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c5caec733f122382ab9f85603b76e3bbe504b30441006fd45cffda22fbe3ef7a
|
4
|
+
data.tar.gz: 03b13331563a2a684bae0f24c332969b83a6b2abbce004777747758fca0dcd59
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a4568898b296b09d8984c40165568ea18cdbe0f60f54a0e4d5b1d01db6291f8962785128b24f40cc76553529b17a58a50ebf45e86aad7663cdcce6a827f6ab66
|
7
|
+
data.tar.gz: 4f6e2475ae2e1c029990de8d332b4eec869367adace09e315238452fee8427a81781eadc4a21d2513b6212807b44ebdb04753785c95a528590bc2254a7f04f2b
|
data/lib/fotmob.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
class Fotmob
|
5
|
+
|
6
|
+
BASE_URL = "http://www.fotmob.com/api"
|
7
|
+
LEAGUES_URL = BASE_URL + "/leagues?id="
|
8
|
+
MATCHES_URL = BASE_URL + "/matches?date="
|
9
|
+
MATCH_DETAILS_URL = BASE_URL + "/matchDetails?matchId="
|
10
|
+
PLAYER_URL = BASE_URL + "/playerData?id="
|
11
|
+
TEAMS_URL = BASE_URL + "/teams?id="
|
12
|
+
|
13
|
+
def get_league(league_id)
|
14
|
+
json = URI.open(LEAGUES_URL+league_id).read
|
15
|
+
symbolize_json(json)
|
16
|
+
end
|
17
|
+
|
18
|
+
def get_matches(match_date)
|
19
|
+
json = URI.open(MATCHES_URL+match_date).read
|
20
|
+
symbolize_json(json)
|
21
|
+
end
|
22
|
+
|
23
|
+
def get_match_details(match_id)
|
24
|
+
json = URI.open(MATCH_DETAILS_URL+match_id).read
|
25
|
+
symbolize_json(json)
|
26
|
+
end
|
27
|
+
|
28
|
+
def get_player(player_id)
|
29
|
+
json = URI.open(PLAYER_URL+player_id).read
|
30
|
+
symbolize_json(json)
|
31
|
+
end
|
32
|
+
|
33
|
+
def get_team(team_id)
|
34
|
+
json = URI.open(TEAMS_URL+team_id).read
|
35
|
+
symbolize_json(json)
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def symbolize_json(json)
|
42
|
+
JSON.parse(json, :symbolize_names => true)
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fotmob
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Stian Bjørkelo
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-10-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: open-uri
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.2'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.2.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.2'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 0.2.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: json
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.6'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.6.2
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '2.6'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 2.6.2
|
53
|
+
description: Lets you pull data from fotmob for easy access
|
54
|
+
email: stianbj@gmail.com
|
55
|
+
executables: []
|
56
|
+
extensions: []
|
57
|
+
extra_rdoc_files: []
|
58
|
+
files:
|
59
|
+
- lib/fotmob.rb
|
60
|
+
homepage: https://github.com/bjrsti/fotmob
|
61
|
+
licenses:
|
62
|
+
- MIT
|
63
|
+
metadata: {}
|
64
|
+
post_install_message:
|
65
|
+
rdoc_options: []
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
requirements: []
|
79
|
+
rubygems_version: 3.3.24
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: An unofficial Fotmob API wrapper for Ruby
|
83
|
+
test_files: []
|