Dan Kennefick
Daniel Kennefick (5 May 1888 - 29 May 1960) was an Irish hurler. He lined out at club level with St. Mary's and was also a member of the Cork senior hurling team. His son, Mick Kennefick, also played with Cork and became the youngest All-Ireland-winning captain in 1943.[1]
Personal information | |||
---|---|---|---|
Irish name | Dónall Ciniféic | ||
Sport | Hurling | ||
Position | Forward | ||
Born |
Glasheen, Cork, Ireland | 5 May 1888||
Died |
20 May 1960 72) Bon Secours Hospital, Cork, Ireland | (aged||
Occupation | Civil servant | ||
Club(s) | |||
Years | Club | ||
St. Mary's | |||
Club titles | |||
Cork titles | 0 | ||
Inter-county(ies) | |||
Years | County | ||
1912-1913 | Cork | ||
Inter-county titles | |||
Munster titles | 1 | ||
All-Irelands | 0 | ||
NHL | 0 |
Honours
- Cork
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
- Moran, Seán (27 December 1999). "Four-timers from Leeside still unique". Irish Times. Retrieved 15 May 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.