mkjunker / soccer

Emacs package to get soccer fixtures, results, standing table etc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Soccer

GitHub release (latest by date) GitHub MELPA MELPA Stable

Table of contents

About the package

Soccer is an Emacs package for getting fixtures, results, standing table, scorecard etc for soccer (football) matches inside emacs. By default, the following leagues are included

  • Premier League (England)
  • La Liga (Spain)
  • Ligue 1 (France)
  • Bundesliga (Germany)
  • Serie A (Italy)
  • Championship (England)

and Adding new leagues or removing one from the default list is really easy, see Adding new leagues. All data are fetched from scorespro website.

Installation and configuration

Install

It’s available in Melpa. Look here for instruction. One can also install it using straight and use-package

(use-package soccer
  :straight (soccer :type git :host github :repo "md-arif-shaikh/soccer"))

Set local time

To get the time and match day converted to your local time configure the following

(setq soccer-time-local-time-utc-offset "+0530")

Keybindings

Additionally you may want to make some keybindings to call the interactive functions conveniently. For example, using use-package this can be done like below,

(use-package soccer
  :straight t
  :config
  (setq soccer-time-local-time-utc-offset "+0530")
  :bind (("C-c s f" . soccer-fixtures-next)
	     ("C-c s r" . soccer-results-last)
	     ("C-c s s" . soccer-scorecard)
	     ("C-c s t" . soccer-table)))

This will fetch and install the package from Melpa, set your local utc-offset and set the above keybindings.

Adding new leagues

You can add a new league or remove a league by modifying the variable soccer-leagues-alist either in your init file or using the customization method in Emacs (M-x customize-variable Enter soccer-leagues-alist Enter). Inside init file the variable soccer-leagues-alist could be configured in the following way

 (setq soccer-leagues-alist
	  '(("England" . "Premier League")
	    ("Spain" . "Laliga")
	    ("France" . "Ligue 1")
	    ("Italy" . "Serie A")
	    ("Germany" . "Bundesliga")
	    ("England" . "Championship")))

Full working configuration

  (use-package soccer
    :straight (soccer :type git :host github :repo "md-arif-shaikh/soccer")
    :init
    (setq soccer-leagues-alist
	      '(("England" . "Premier League")
		("Spain" . "Laliga")
		("France" . "Ligue 1")
		("Italy" . "Serie A")
		("Germany" . "Bundesliga")
		;;("uefa" . "Champions League")
		;;("England" . "Championship")
		))
    :config
    (setq soccer-time-local-time-utc-offset "+0530")
    :bind (("C-c s f" . soccer-fixtures-next)
	     ("C-c s r" . soccer-results-last)
	     ("C-c s s" . soccer-scorecard)
	     ("C-c s t" . soccer-table)))

Common interactive functions

Call these using M-x Function where Function is any of the following functions

FunctionsActions
soccer-fixtures-nextFixture for the Next match
soccer-fixtures-next-5Fixtures of the Next 5 matches
soccer-fixtures-full-in-orgFull fixtures saved in org file
soccer-fixtures-all-clubsFixtures for all clubs in a league
soccer-results-lastResult of the last match
soccer-results-last-5Results of the last 5 matches
soccer-results-full-in-orgFull list of results in org file
soccer-results-all-clubsResults for all clubs in a league
soccer-tableFull Ranking table
soccer-table-top-4Rank table with top 4 teams
soccer-table-bottom-4Rank table with bottom 4 teams
soccer-scorecardScorecard

Screenshots

soccer-fixtures-next-5

soccer-results-last-5

soccer-table-top-4

soccer-table-bottom-4

soccer-table

soccer-scorecard

About

Emacs package to get soccer fixtures, results, standing table etc

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%