fix: ввод даты, ввод формата

This commit is contained in:
Artem Tsyrulnikov
2026-02-28 13:06:30 +03:00
parent 0ad9fe36a6
commit c9d5f1e2ea
14 changed files with 1012 additions and 212 deletions

View File

@@ -20,6 +20,10 @@ __all__ = (
'PlacementStatus',
'PlacementType',
'parse_format_duration',
'parse_format_string',
'format_display_string',
'get_feed_duration_seconds',
'COMMON_FORMATS',
'PlacementPost',
'PlacementPostStatus',
'Creative',
@@ -116,12 +120,16 @@ from .error import (
)
from .login_token import LoginToken
from .placement import (
COMMON_FORMATS,
CostType,
InviteLinkType,
Placement,
PlacementStatus,
PlacementType,
format_display_string,
get_feed_duration_seconds,
parse_format_duration,
parse_format_string,
)
from .placement_post import PlacementPost, PlacementPostStatus
from .post import Post