mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-07 11:40:01 -08:00
c1b8be0227
* Bump arrow from 1.2.3 to 1.3.0 Bumps [arrow](https://github.com/arrow-py/arrow) from 1.2.3 to 1.3.0. - [Release notes](https://github.com/arrow-py/arrow/releases) - [Changelog](https://github.com/arrow-py/arrow/blob/master/CHANGELOG.rst) - [Commits](https://github.com/arrow-py/arrow/compare/1.2.3...1.3.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update arrow==1.3.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
68 lines
2.0 KiB
Python
68 lines
2.0 KiB
Python
from collections.abc import Callable, Mapping
|
|
from datetime import datetime, tzinfo
|
|
from typing import IO, Any
|
|
from typing_extensions import TypeAlias
|
|
|
|
from .isoparser import isoparse as isoparse, isoparser as isoparser
|
|
|
|
_FileOrStr: TypeAlias = bytes | str | IO[str] | IO[Any]
|
|
_TzData: TypeAlias = tzinfo | int | str | None
|
|
_TzInfo: TypeAlias = Mapping[str, _TzData] | Callable[[str, int], _TzData]
|
|
|
|
class parserinfo:
|
|
JUMP: list[str]
|
|
WEEKDAYS: list[tuple[str, ...]]
|
|
MONTHS: list[tuple[str, ...]]
|
|
HMS: list[tuple[str, str, str]]
|
|
AMPM: list[tuple[str, str]]
|
|
UTCZONE: list[str]
|
|
PERTAIN: list[str]
|
|
TZOFFSET: dict[str, int]
|
|
def __init__(self, dayfirst: bool = False, yearfirst: bool = False) -> None: ...
|
|
def jump(self, name: str) -> bool: ...
|
|
def weekday(self, name: str) -> int | None: ...
|
|
def month(self, name: str) -> int | None: ...
|
|
def hms(self, name: str) -> int | None: ...
|
|
def ampm(self, name: str) -> int | None: ...
|
|
def pertain(self, name: str) -> bool: ...
|
|
def utczone(self, name: str) -> bool: ...
|
|
def tzoffset(self, name: str) -> int | None: ...
|
|
def convertyear(self, year: int) -> int: ...
|
|
def validate(self, res: datetime) -> bool: ...
|
|
|
|
class parser:
|
|
def __init__(self, info: parserinfo | None = None) -> None: ...
|
|
def parse(
|
|
self,
|
|
timestr: _FileOrStr,
|
|
default: datetime | None = None,
|
|
ignoretz: bool = False,
|
|
tzinfos: _TzInfo | None = None,
|
|
*,
|
|
dayfirst: bool | None = ...,
|
|
yearfirst: bool | None = ...,
|
|
fuzzy: bool = ...,
|
|
fuzzy_with_tokens: bool = ...,
|
|
) -> datetime: ...
|
|
|
|
DEFAULTPARSER: parser
|
|
|
|
def parse(
|
|
timestr: _FileOrStr,
|
|
parserinfo: parserinfo | None = None,
|
|
*,
|
|
dayfirst: bool | None = ...,
|
|
yearfirst: bool | None = ...,
|
|
ignoretz: bool = ...,
|
|
fuzzy: bool = ...,
|
|
fuzzy_with_tokens: bool = ...,
|
|
default: datetime | None = ...,
|
|
tzinfos: _TzInfo | None = ...,
|
|
) -> datetime: ...
|
|
|
|
class _tzparser: ...
|
|
|
|
DEFAULTTZPARSER: _tzparser
|
|
|
|
class ParserError(ValueError): ...
|