1919–20 Northern Football League
The 1919–20 Northern Football League season was the 27th in the history of the Northern Football League, a football competition in Northern England. South Bank were crowned champions via a three team playoff after they finished the season on 38 points along with Bishop Auckland and Crook Town.
Season | 1919–20 |
---|---|
Champions | South Bank |
Matches played | 182 |
Goals scored | 670 (3.68 per match) |
← 1914–15 1920–21 → |
League table
Pos | Team | Pld | W | D | L | GF | GA | GR | Pts |
---|---|---|---|---|---|---|---|---|---|
1 | Bishop Auckland | 26 | 16 | 6 | 4 | 76 | 23 | 3.304 | 38 |
2 | South Bank | 26 | 16 | 6 | 4 | 78 | 27 | 2.889 | 38 |
3 | Crook Town | 26 | 17 | 4 | 5 | 57 | 24 | 2.375 | 38 |
4 | Stanley United | 26 | 13 | 5 | 8 | 52 | 39 | 1.333 | 31 |
5 | Grangetown St. Mary's | 26 | 11 | 9 | 6 | 51 | 41 | 1.244 | 31 |
6 | Willington | 26 | 11 | 7 | 8 | 43 | 36 | 1.194 | 29 |
7 | Esh Winning | 26 | 11 | 4 | 11 | 48 | 34 | 1.412 | 26 |
8 | Eston United | 26 | 9 | 6 | 11 | 48 | 51 | 0.941 | 24 |
9 | Darlington Railway Athletic | 26 | 10 | 4 | 12 | 45 | 58 | 0.776 | 24 |
10 | Redcar | 26 | 9 | 4 | 13 | 38 | 55 | 0.691 | 22 |
11 | West Hartlepool St. Joseph's | 26 | 7 | 6 | 13 | 34 | 51 | 0.667 | 20 |
12 | Stockton | 26 | 5 | 5 | 16 | 44 | 70 | 0.629 | 15 |
13 | Auckland St. Helen's United | 26 | 5 | 5 | 16 | 26 | 67 | 0.388 | 15 |
14 | Scarborough | 26 | 5 | 3 | 18 | 30 | 94 | 0.319 | 13 |
Source: [1]
Championship playoff
Pos | Team | Pld | W | D | L | GF | GA | GR | Pts |
---|---|---|---|---|---|---|---|---|---|
1 | South Bank | 2 | 1 | 0 | 1 | 6 | 4 | 1.500 | 2 |
2 | Bishop Auckland | 2 | 1 | 0 | 1 | 5 | 4 | 1.250 | 2 |
3 | Crook Town | 2 | 1 | 0 | 1 | 2 | 5 | 0.400 | 2 |
Source: [1]
- 4 September 1920: Bishop Auckland 4–2 South Bank
- 11 September 1920: Crook Town 2–1 Bishop Auckland
- 18 September 1920: South Bank 4–0 Crook Town
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
References
- "Northern League 1889-1925". Non League Matters. Retrieved 2014-09-13.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.