Lancashire FA Women's County League

The Lancashire FA Women's County League is an amateur competitive women's association football competition based in Lancashire, England run by the Lancashire FA. Founded in 1996 as the Lancashire FA Girls League,[1] the league consists of two division at levels 7 and 8 of the women's pyramid. It promotes to the North West Women's Regional Football League Division One, and does not relegate to any league.

Founded1996
Country England
Divisions2 (current season)
Number of teams17 (current season)
Level on pyramid7–8
Promotion toNorth West Women's Regional Football League Division One
WebsiteOfficial website

Teams

The teams competing during the 2015–16[2][3] season are:

Division One

  • Academy Juniors
  • Barrowford Celtic
  • Blackburn Community Sports Club Reserves
  • Bolton Wanderers Ladies FC Development
  • Burnley FC Girls & Ladies
  • Morecambe FC Community Ladies
  • Penwortham Ladies
  • Southport Shoreline

Division Two

  • Accrington Girls & Ladies Development
  • Blackpool Wren Rovers Ladies FC Reserves
  • Bury FC Girls & Ladies
  • Cherry Tree Ladies FC
  • Galgate Ladies
  • Great Harwood Rovers Ladies
  • Lancaster City
  • Penwortham Town Ladies
  • St. Josephs
gollark: It's 00:00 now.
gollark: oh dear.
gollark: Well, the outsourced `parsedatetime` stuff can probably do it.
gollark: Good luck.
gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```

References

  1. "LFA Womens County League". Lancashire FA. Retrieved 23 September 2015.
  2. "Division One". Lancashire FA Women's County League. Lancashire FA. Retrieved 23 September 2015.
  3. "Division Two". Lancashire FA Women's County League. Lancashire FA. Retrieved 23 September 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.