skypro-cli-tool 0.2.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/PKG-INFO +2 -1
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/pyproject.toml +30 -1
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/config/logging.py +2 -1
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/config/service.py +2 -2
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/config/settings.py +9 -2
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/api/skypro/client.py +1 -1
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/api/skypro/dto.py +6 -1
- skypro_cli_tool-0.3.2/src/skypro/infra/repositories/summary.py +55 -0
- skypro_cli_tool-0.2.1/src/skypro/infra/repositories/summary.py +0 -33
- skypro_cli_tool-0.2.1/src/skypro/logs/skypro.log +0 -83
- skypro_cli_tool-0.2.1/src/skypro/logs/skypro.log.1 +0 -101
- skypro_cli_tool-0.2.1/src/skypro/logs/skypro.log.2 +0 -109
- skypro_cli_tool-0.2.1/src/skypro/logs/skypro.log.3 +0 -108
- skypro_cli_tool-0.2.1/src/skypro/logs/skypro.log.4 +0 -101
- skypro_cli_tool-0.2.1/src/skypro/logs/skypro.log.5 +0 -100
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/README.md +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/cli/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/cli/app.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/cli/commands/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/cli/commands/summary.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/cli/renders/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/cli/renders/summary_table.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/config/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/domain/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/domain/enums.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/domain/errors.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/domain/models.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/domain/services.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/api/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/api/base.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/api/errors.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/api/skypro/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/http/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/http/client.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/http/errors.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/repositories/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/repositories/errors.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/infra/repositories/work.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/main.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/use_cases/__init__.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/use_cases/get_summary_info.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/utils.py +0 -0
- {skypro_cli_tool-0.2.1 → skypro_cli_tool-0.3.2}/src/skypro/work_prices.json +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: skypro-cli-tool
|
|
3
|
-
Version: 0.2
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: SkyPro cli tool
|
|
5
5
|
Requires-Dist: aiohttp>=3.13.5
|
|
6
|
+
Requires-Dist: click>=8.4.2
|
|
6
7
|
Requires-Dist: httpx>=0.28.1
|
|
7
8
|
Requires-Dist: pydantic>=2.13.3
|
|
8
9
|
Requires-Dist: pydantic-settings>=2.14.0
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "skypro-cli-tool"
|
|
3
|
-
version = "0.2
|
|
3
|
+
version = "0.3.2"
|
|
4
4
|
description = "SkyPro cli tool"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.13"
|
|
7
7
|
dependencies = [
|
|
8
8
|
"aiohttp>=3.13.5",
|
|
9
|
+
"click>=8.4.2",
|
|
9
10
|
"httpx>=0.28.1",
|
|
10
11
|
"pydantic>=2.13.3",
|
|
11
12
|
"pydantic-settings>=2.14.0",
|
|
@@ -27,7 +28,9 @@ test = [
|
|
|
27
28
|
"pytest-mock>=3.15.1",
|
|
28
29
|
]
|
|
29
30
|
lint = [
|
|
31
|
+
"mypy>=2.3.0",
|
|
30
32
|
"ruff>=0.15.12",
|
|
33
|
+
"typos>=1.48.0",
|
|
31
34
|
]
|
|
32
35
|
|
|
33
36
|
[project.scripts]
|
|
@@ -107,3 +110,29 @@ build-backend = "uv_build"
|
|
|
107
110
|
[tool.uv.build-backend]
|
|
108
111
|
module-name = "skypro"
|
|
109
112
|
module-root = "src"
|
|
113
|
+
|
|
114
|
+
[tool.mypy]
|
|
115
|
+
show_error_codes = true
|
|
116
|
+
ignore_missing_imports = true
|
|
117
|
+
disallow_incomplete_defs = true
|
|
118
|
+
disallow_untyped_defs = true
|
|
119
|
+
warn_unused_ignores = true
|
|
120
|
+
warn_no_return = false
|
|
121
|
+
warn_unreachable = true
|
|
122
|
+
no_implicit_optional = true
|
|
123
|
+
allow_redefinition = true
|
|
124
|
+
exclude_gitignore = true
|
|
125
|
+
plugins = ["pydantic.mypy"]
|
|
126
|
+
strict = true
|
|
127
|
+
|
|
128
|
+
[tool.pydantic-mypy]
|
|
129
|
+
init_forbid_extra = true
|
|
130
|
+
init_typed = true
|
|
131
|
+
warn_required_dynamic_aliases = true
|
|
132
|
+
|
|
133
|
+
[[tool.mypy.overrides]]
|
|
134
|
+
module = ['tests.*']
|
|
135
|
+
allow_untyped_defs = true
|
|
136
|
+
disable_error_code = [
|
|
137
|
+
"no-untyped-def", # Function is missing a type annotation
|
|
138
|
+
]
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import logging
|
|
2
2
|
import logging.config
|
|
3
3
|
from functools import cache
|
|
4
|
+
from typing import Any
|
|
4
5
|
|
|
5
6
|
from rich.console import Console
|
|
6
7
|
from rich.logging import RichHandler
|
|
@@ -9,7 +10,7 @@ from .settings import HOME_DIR, get_settings
|
|
|
9
10
|
|
|
10
11
|
LOG_DIR = HOME_DIR / 'logs'
|
|
11
12
|
|
|
12
|
-
LOGGING_CONFIG = {
|
|
13
|
+
LOGGING_CONFIG: dict[str, Any] = {
|
|
13
14
|
'version': 1,
|
|
14
15
|
'disable_existing_loggers': False,
|
|
15
16
|
'formatters': {
|
|
@@ -21,8 +21,8 @@ def configure_skypro_settings(console: Console) -> Settings:
|
|
|
21
21
|
|
|
22
22
|
email = console.input(f'{email_prompt}: ').strip() or current_email
|
|
23
23
|
password = console.input('Password: ', password=True).strip()
|
|
24
|
-
if not password and current_settings.skypro.password
|
|
25
|
-
password = current_settings.skypro.
|
|
24
|
+
if not password and current_settings.skypro.password:
|
|
25
|
+
password = current_settings.skypro.password_value
|
|
26
26
|
|
|
27
27
|
updated_settings = current_settings.model_copy(
|
|
28
28
|
update={
|
|
@@ -21,6 +21,13 @@ class SkyProSettings(BaseModel):
|
|
|
21
21
|
email: str | None = None
|
|
22
22
|
password: SecretStr | None = None
|
|
23
23
|
|
|
24
|
+
@property
|
|
25
|
+
def password_value(self) -> str:
|
|
26
|
+
if not self.password:
|
|
27
|
+
raise RuntimeError('Password does not set')
|
|
28
|
+
|
|
29
|
+
return self.password.get_secret_value()
|
|
30
|
+
|
|
24
31
|
|
|
25
32
|
class Settings(BaseSettings, json_file=SETTINGS_FILE_PATH):
|
|
26
33
|
tax_percent: float = 6.0
|
|
@@ -30,7 +37,7 @@ class Settings(BaseSettings, json_file=SETTINGS_FILE_PATH):
|
|
|
30
37
|
skypro: SkyProSettings = Field(default_factory=SkyProSettings)
|
|
31
38
|
|
|
32
39
|
@classmethod
|
|
33
|
-
def settings_customise_sources(
|
|
40
|
+
def settings_customise_sources( # type: ignore[override]
|
|
34
41
|
cls,
|
|
35
42
|
settings_cls: type[BaseSettings],
|
|
36
43
|
**_: PydanticBaseSettingsSource,
|
|
@@ -42,7 +49,7 @@ def save_settings(settings: Settings) -> None:
|
|
|
42
49
|
SETTINGS_FILE_PATH.parent.mkdir(mode=0o700, exist_ok=True)
|
|
43
50
|
|
|
44
51
|
data = settings.model_dump(mode='json')
|
|
45
|
-
data['skypro']['password'] = settings.skypro.
|
|
52
|
+
data['skypro']['password'] = settings.skypro.password_value
|
|
46
53
|
|
|
47
54
|
with SETTINGS_FILE_PATH.open(mode='w', encoding='utf-8') as f:
|
|
48
55
|
json.dump(data, f, ensure_ascii=False, indent=2)
|
|
@@ -53,7 +53,7 @@ class SkyProClient(BaseApiClient):
|
|
|
53
53
|
self.login_url,
|
|
54
54
|
data={
|
|
55
55
|
'email': get_settings().skypro.email,
|
|
56
|
-
'password': get_settings().skypro.
|
|
56
|
+
'password': get_settings().skypro.password_value,
|
|
57
57
|
'csrfmiddlewaretoken': csrf_token,
|
|
58
58
|
},
|
|
59
59
|
headers={'Referer': str(self.cookies)},
|
|
@@ -9,5 +9,10 @@ class ServiceSummary(BaseModel, populate_by_name=True):
|
|
|
9
9
|
individual_consultation: int = Field(0, alias='ИК', ge=0)
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
class ServiceByProfession(BaseModel):
|
|
13
|
+
profession: str
|
|
14
|
+
services: ServiceSummary
|
|
15
|
+
|
|
16
|
+
|
|
12
17
|
class AccountDataResponse(BaseModel):
|
|
13
|
-
|
|
18
|
+
services_by_profession: list[ServiceByProfession]
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
from collections import defaultdict
|
|
3
|
+
from datetime import date
|
|
4
|
+
from itertools import starmap
|
|
5
|
+
|
|
6
|
+
from pydantic import ValidationError
|
|
7
|
+
|
|
8
|
+
from skypro.domain.enums import WorkType
|
|
9
|
+
from skypro.domain.models import WorkSummary
|
|
10
|
+
from skypro.infra.api.errors import ApiError, AuthenticationError
|
|
11
|
+
from skypro.infra.api.skypro.client import SkyProClient
|
|
12
|
+
from skypro.infra.api.skypro.dto import ServiceByProfession, ServiceSummary
|
|
13
|
+
from skypro.infra.http.client import HttpClient
|
|
14
|
+
from skypro.infra.http.errors import HttpError
|
|
15
|
+
from skypro.infra.repositories.errors import SummaryLoadError
|
|
16
|
+
|
|
17
|
+
logger = logging.getLogger(__name__)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
async def get_summary(start_date: date, end_date: date) -> list[WorkSummary]:
|
|
21
|
+
try:
|
|
22
|
+
async with HttpClient() as http_client:
|
|
23
|
+
skypro = SkyProClient(http_client)
|
|
24
|
+
account_data = await skypro.get_account_data(start_date, end_date)
|
|
25
|
+
except AuthenticationError as e:
|
|
26
|
+
message = 'SkyPro authentication failed. Check email and password.'
|
|
27
|
+
raise SummaryLoadError(message) from e
|
|
28
|
+
except (HttpError, ApiError, ValidationError) as e:
|
|
29
|
+
raise SummaryLoadError(str(e) or 'Failed to load summary from SkyPro.') from e
|
|
30
|
+
|
|
31
|
+
return _get_summary_by_service_by_profession(*account_data.services_by_profession)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def _get_summary_by_service_by_profession(
|
|
35
|
+
*services_by_profession: ServiceByProfession,
|
|
36
|
+
) -> list[WorkSummary]:
|
|
37
|
+
work_summary: dict[WorkType, int] = defaultdict(int)
|
|
38
|
+
|
|
39
|
+
for sbp in services_by_profession:
|
|
40
|
+
logger.debug('Calculate work summary by %r', sbp.profession)
|
|
41
|
+
for summary in _get_summary_by_service_summary(sbp.services):
|
|
42
|
+
work_summary[summary.work_type] += summary.quantity
|
|
43
|
+
return list(starmap(WorkSummary, work_summary.items()))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def _get_summary_by_service_summary(
|
|
47
|
+
service_summary: ServiceSummary,
|
|
48
|
+
) -> list[WorkSummary]:
|
|
49
|
+
return [
|
|
50
|
+
WorkSummary(WorkType.HOMEWORK, service_summary.homework),
|
|
51
|
+
WorkSummary(WorkType.COURSEWORK, service_summary.coursework),
|
|
52
|
+
WorkSummary(WorkType.DIPLOMA, service_summary.diploma),
|
|
53
|
+
WorkSummary(WorkType.LIVE, service_summary.live),
|
|
54
|
+
WorkSummary(WorkType.CONSULTATION, service_summary.individual_consultation),
|
|
55
|
+
]
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
from datetime import date
|
|
2
|
-
|
|
3
|
-
from pydantic import ValidationError
|
|
4
|
-
|
|
5
|
-
from skypro.domain.enums import WorkType
|
|
6
|
-
from skypro.domain.models import WorkSummary
|
|
7
|
-
from skypro.infra.api.errors import ApiError, AuthenticationError
|
|
8
|
-
from skypro.infra.api.skypro.client import SkyProClient
|
|
9
|
-
from skypro.infra.http.client import HttpClient
|
|
10
|
-
from skypro.infra.http.errors import HttpError
|
|
11
|
-
from skypro.infra.repositories.errors import SummaryLoadError
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
async def get_summary(start_date: date, end_date: date) -> list[WorkSummary]:
|
|
15
|
-
try:
|
|
16
|
-
async with HttpClient() as http_client:
|
|
17
|
-
skypro = SkyProClient(http_client)
|
|
18
|
-
account_data = await skypro.get_account_data(start_date, end_date)
|
|
19
|
-
except AuthenticationError as e:
|
|
20
|
-
message = 'SkyPro authentication failed. Check email and password.'
|
|
21
|
-
raise SummaryLoadError(message) from e
|
|
22
|
-
except (HttpError, ApiError, ValidationError) as e:
|
|
23
|
-
raise SummaryLoadError(str(e) or 'Failed to load summary from SkyPro.') from e
|
|
24
|
-
|
|
25
|
-
return [
|
|
26
|
-
WorkSummary(WorkType.HOMEWORK, account_data.services_summary.homework),
|
|
27
|
-
WorkSummary(WorkType.COURSEWORK, account_data.services_summary.coursework),
|
|
28
|
-
WorkSummary(WorkType.DIPLOMA, account_data.services_summary.diploma),
|
|
29
|
-
WorkSummary(WorkType.LIVE, account_data.services_summary.live),
|
|
30
|
-
WorkSummary(
|
|
31
|
-
WorkType.CONSULTATION, account_data.services_summary.individual_consultation
|
|
32
|
-
),
|
|
33
|
-
]
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
2026-05-10 16:59:23 - INFO - SkyPro authentication successful
|
|
2
|
-
2026-05-10 16:59:23 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
3
|
-
2026-05-10 16:59:23 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
4
|
-
2026-05-10 16:59:23 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
5
|
-
2026-05-10 16:59:28 - INFO - Authenticating in SkyPro
|
|
6
|
-
2026-05-10 16:59:28 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
7
|
-
2026-05-10 16:59:28 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
8
|
-
2026-05-10 16:59:28 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
9
|
-
2026-05-10 16:59:28 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
10
|
-
2026-05-10 16:59:28 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
11
|
-
2026-05-10 16:59:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
12
|
-
2026-05-10 16:59:29 - INFO - SkyPro authentication successful
|
|
13
|
-
2026-05-10 16:59:29 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
14
|
-
2026-05-10 16:59:29 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
15
|
-
2026-05-10 16:59:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
16
|
-
2026-05-10 17:01:19 - INFO - Authenticating in SkyPro
|
|
17
|
-
2026-05-10 17:01:19 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
18
|
-
2026-05-10 17:01:20 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
19
|
-
2026-05-10 17:01:20 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
20
|
-
2026-05-10 17:01:20 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
21
|
-
2026-05-10 17:01:20 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
22
|
-
2026-05-10 17:01:20 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
23
|
-
2026-05-10 17:01:20 - INFO - SkyPro authentication successful
|
|
24
|
-
2026-05-10 17:01:20 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
25
|
-
2026-05-10 17:01:20 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
26
|
-
2026-05-10 17:01:21 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
27
|
-
2026-05-10 17:01:25 - INFO - Authenticating in SkyPro
|
|
28
|
-
2026-05-10 17:01:25 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
29
|
-
2026-05-10 17:01:25 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
30
|
-
2026-05-10 17:01:25 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
31
|
-
2026-05-10 17:01:25 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
32
|
-
2026-05-10 17:01:25 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
33
|
-
2026-05-10 17:01:25 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
34
|
-
2026-05-10 17:01:40 - INFO - Authenticating in SkyPro
|
|
35
|
-
2026-05-10 17:01:40 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
36
|
-
2026-05-10 17:01:41 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
37
|
-
2026-05-10 17:01:41 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
38
|
-
2026-05-10 17:01:41 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
39
|
-
2026-05-10 17:01:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
40
|
-
2026-05-10 17:01:41 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
41
|
-
2026-05-10 17:01:41 - INFO - SkyPro authentication successful
|
|
42
|
-
2026-05-10 17:01:41 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
43
|
-
2026-05-10 17:01:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
44
|
-
2026-05-10 17:01:42 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
45
|
-
2026-05-10 17:03:18 - INFO - Authenticating in SkyPro
|
|
46
|
-
2026-05-10 17:03:18 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
47
|
-
2026-05-10 17:03:18 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
48
|
-
2026-05-10 17:03:18 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
49
|
-
2026-05-10 17:03:19 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
50
|
-
2026-05-10 17:03:19 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
51
|
-
2026-05-10 17:03:19 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
52
|
-
2026-05-10 17:03:19 - INFO - SkyPro authentication successful
|
|
53
|
-
2026-05-10 17:03:19 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
54
|
-
2026-05-10 17:03:19 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
55
|
-
2026-05-10 17:03:19 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
56
|
-
2026-05-10 17:14:09 - INFO - Authenticating in SkyPro
|
|
57
|
-
2026-05-10 17:14:09 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
58
|
-
2026-05-10 17:14:10 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
59
|
-
2026-05-10 17:14:10 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
60
|
-
2026-05-10 17:14:10 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
61
|
-
2026-05-10 17:14:10 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
62
|
-
2026-05-10 17:14:10 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
63
|
-
2026-05-10 17:14:31 - INFO - Authenticating in SkyPro
|
|
64
|
-
2026-05-10 17:14:31 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
65
|
-
2026-05-10 17:14:32 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
66
|
-
2026-05-10 17:14:32 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
67
|
-
2026-05-10 17:14:33 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
68
|
-
2026-05-10 17:14:33 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
69
|
-
2026-05-10 17:14:33 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
70
|
-
2026-05-10 17:14:33 - INFO - SkyPro authentication successful
|
|
71
|
-
2026-05-10 17:14:33 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
72
|
-
2026-05-10 17:14:33 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
73
|
-
2026-05-10 17:14:33 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
74
|
-
2026-05-10 17:20:00 - INFO - Authenticating in SkyPro
|
|
75
|
-
2026-05-10 17:20:00 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
76
|
-
2026-05-10 17:38:44 - INFO - Authenticating in SkyPro
|
|
77
|
-
2026-05-10 17:38:44 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
78
|
-
2026-05-10 17:38:45 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
79
|
-
2026-05-10 17:38:45 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
80
|
-
2026-05-10 17:38:45 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
81
|
-
2026-05-10 17:38:45 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
82
|
-
2026-05-10 17:38:45 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
83
|
-
2026-05-10 17:38:45 - INFO - SkyPro authentication successful
|
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
2026-05-07 06:55:33 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
2
|
-
2026-05-07 06:55:33 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
3
|
-
2026-05-07 06:55:33 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
4
|
-
2026-05-07 06:55:33 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
5
|
-
2026-05-07 06:55:33 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
6
|
-
2026-05-07 06:55:33 - INFO - SkyPro authentication successful
|
|
7
|
-
2026-05-07 06:55:33 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
8
|
-
2026-05-07 06:55:33 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
9
|
-
2026-05-07 06:55:34 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
10
|
-
2026-05-07 06:55:55 - INFO - Authenticating in SkyPro
|
|
11
|
-
2026-05-07 06:55:55 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
12
|
-
2026-05-07 06:55:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
13
|
-
2026-05-07 06:55:56 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
14
|
-
2026-05-07 06:55:56 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
15
|
-
2026-05-07 06:55:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
16
|
-
2026-05-07 06:55:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
17
|
-
2026-05-07 06:55:56 - INFO - SkyPro authentication successful
|
|
18
|
-
2026-05-07 06:58:55 - INFO - Authenticating in SkyPro
|
|
19
|
-
2026-05-07 06:58:55 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
20
|
-
2026-05-07 06:58:55 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
21
|
-
2026-05-07 06:58:55 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
22
|
-
2026-05-07 06:58:56 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
23
|
-
2026-05-07 06:58:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
24
|
-
2026-05-07 06:58:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
25
|
-
2026-05-07 06:58:56 - INFO - SkyPro authentication successful
|
|
26
|
-
2026-05-07 06:58:56 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
27
|
-
2026-05-07 06:58:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
28
|
-
2026-05-07 06:58:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
29
|
-
2026-05-07 18:49:04 - INFO - Authenticating in SkyPro
|
|
30
|
-
2026-05-07 18:49:04 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
31
|
-
2026-05-07 18:49:04 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
32
|
-
2026-05-07 18:49:04 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
33
|
-
2026-05-07 18:49:05 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
34
|
-
2026-05-07 18:49:05 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
35
|
-
2026-05-07 18:49:05 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
36
|
-
2026-05-07 18:49:05 - INFO - SkyPro authentication successful
|
|
37
|
-
2026-05-07 18:49:05 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
38
|
-
2026-05-07 18:49:05 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
39
|
-
2026-05-07 18:49:05 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
40
|
-
2026-05-08 15:37:35 - INFO - Authenticating in SkyPro
|
|
41
|
-
2026-05-08 15:37:35 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
42
|
-
2026-05-08 15:37:36 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
43
|
-
2026-05-08 15:37:36 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
44
|
-
2026-05-08 15:37:37 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
45
|
-
2026-05-08 15:37:37 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
46
|
-
2026-05-08 15:37:37 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
47
|
-
2026-05-08 15:37:37 - INFO - SkyPro authentication successful
|
|
48
|
-
2026-05-08 15:37:37 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
49
|
-
2026-05-08 15:37:37 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
50
|
-
2026-05-08 15:37:37 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
51
|
-
2026-05-09 18:52:31 - INFO - Authenticating in SkyPro
|
|
52
|
-
2026-05-09 18:52:31 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
53
|
-
2026-05-09 18:52:31 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
54
|
-
2026-05-09 18:52:31 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
55
|
-
2026-05-09 18:52:32 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
56
|
-
2026-05-09 18:52:32 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
57
|
-
2026-05-09 18:52:32 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
58
|
-
2026-05-09 18:52:32 - INFO - SkyPro authentication successful
|
|
59
|
-
2026-05-09 18:52:32 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
60
|
-
2026-05-09 18:52:32 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
61
|
-
2026-05-09 18:52:32 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
62
|
-
2026-05-10 16:17:06 - INFO - Authenticating in SkyPro
|
|
63
|
-
2026-05-10 16:17:06 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
64
|
-
2026-05-10 16:17:06 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
65
|
-
2026-05-10 16:17:06 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
66
|
-
2026-05-10 16:17:07 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
67
|
-
2026-05-10 16:17:07 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
68
|
-
2026-05-10 16:17:07 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
69
|
-
2026-05-10 16:17:07 - INFO - SkyPro authentication successful
|
|
70
|
-
2026-05-10 16:17:07 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
71
|
-
2026-05-10 16:17:07 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
72
|
-
2026-05-10 16:17:07 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
73
|
-
2026-05-10 16:58:55 - INFO - Authenticating in SkyPro
|
|
74
|
-
2026-05-10 16:58:55 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
75
|
-
2026-05-10 16:58:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
76
|
-
2026-05-10 16:58:56 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
77
|
-
2026-05-10 16:58:56 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
78
|
-
2026-05-10 16:58:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
79
|
-
2026-05-10 16:58:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
80
|
-
2026-05-10 16:58:56 - INFO - SkyPro authentication successful
|
|
81
|
-
2026-05-10 16:58:56 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
82
|
-
2026-05-10 16:58:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
83
|
-
2026-05-10 16:58:57 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
84
|
-
2026-05-10 16:59:03 - INFO - Authenticating in SkyPro
|
|
85
|
-
2026-05-10 16:59:03 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
86
|
-
2026-05-10 16:59:03 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
87
|
-
2026-05-10 16:59:03 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
88
|
-
2026-05-10 16:59:04 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
89
|
-
2026-05-10 16:59:04 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
90
|
-
2026-05-10 16:59:04 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
91
|
-
2026-05-10 16:59:04 - INFO - SkyPro authentication successful
|
|
92
|
-
2026-05-10 16:59:04 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
93
|
-
2026-05-10 16:59:04 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
94
|
-
2026-05-10 16:59:04 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
95
|
-
2026-05-10 16:59:22 - INFO - Authenticating in SkyPro
|
|
96
|
-
2026-05-10 16:59:22 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
97
|
-
2026-05-10 16:59:23 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
98
|
-
2026-05-10 16:59:23 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
99
|
-
2026-05-10 16:59:23 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
100
|
-
2026-05-10 16:59:23 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
101
|
-
2026-05-10 16:59:23 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
2026-05-07 06:25:48 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
2
|
-
2026-05-07 06:25:48 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
3
|
-
2026-05-07 06:25:49 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
4
|
-
2026-05-07 06:25:49 - INFO - SkyPro authentication successful
|
|
5
|
-
2026-05-07 06:26:15 - INFO - Authenticating in SkyPro
|
|
6
|
-
2026-05-07 06:26:15 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
7
|
-
2026-05-07 06:26:16 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
8
|
-
2026-05-07 06:26:16 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
9
|
-
2026-05-07 06:26:16 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
10
|
-
2026-05-07 06:26:16 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
11
|
-
2026-05-07 06:26:16 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
12
|
-
2026-05-07 06:26:16 - INFO - SkyPro authentication successful
|
|
13
|
-
2026-05-07 06:26:49 - INFO - Authenticating in SkyPro
|
|
14
|
-
2026-05-07 06:26:49 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
15
|
-
2026-05-07 06:26:49 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
16
|
-
2026-05-07 06:26:49 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
17
|
-
2026-05-07 06:26:50 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
18
|
-
2026-05-07 06:26:50 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
19
|
-
2026-05-07 06:26:50 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
20
|
-
2026-05-07 06:26:57 - INFO - Authenticating in SkyPro
|
|
21
|
-
2026-05-07 06:26:57 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
22
|
-
2026-05-07 06:26:58 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
23
|
-
2026-05-07 06:26:58 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
24
|
-
2026-05-07 06:26:58 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
25
|
-
2026-05-07 06:26:58 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
26
|
-
2026-05-07 06:26:58 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
27
|
-
2026-05-07 06:26:58 - INFO - SkyPro authentication successful
|
|
28
|
-
2026-05-07 06:27:04 - INFO - Authenticating in SkyPro
|
|
29
|
-
2026-05-07 06:27:04 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
30
|
-
2026-05-07 06:27:04 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
31
|
-
2026-05-07 06:27:04 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
32
|
-
2026-05-07 06:27:04 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
33
|
-
2026-05-07 06:27:04 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
34
|
-
2026-05-07 06:27:05 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
35
|
-
2026-05-07 06:27:05 - INFO - SkyPro authentication successful
|
|
36
|
-
2026-05-07 06:46:25 - INFO - Authenticating in SkyPro
|
|
37
|
-
2026-05-07 06:46:25 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
38
|
-
2026-05-07 06:46:26 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
39
|
-
2026-05-07 06:46:26 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
40
|
-
2026-05-07 06:46:26 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
41
|
-
2026-05-07 06:46:26 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
42
|
-
2026-05-07 06:46:26 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
43
|
-
2026-05-07 06:47:08 - INFO - Authenticating in SkyPro
|
|
44
|
-
2026-05-07 06:47:08 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
45
|
-
2026-05-07 06:47:10 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
46
|
-
2026-05-07 06:47:10 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
47
|
-
2026-05-07 06:47:10 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
48
|
-
2026-05-07 06:47:10 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
49
|
-
2026-05-07 06:47:10 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
50
|
-
2026-05-07 06:47:56 - INFO - Authenticating in SkyPro
|
|
51
|
-
2026-05-07 06:47:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
52
|
-
2026-05-07 06:47:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
53
|
-
2026-05-07 06:47:56 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
54
|
-
2026-05-07 06:47:56 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
55
|
-
2026-05-07 06:47:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
56
|
-
2026-05-07 06:47:57 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
57
|
-
2026-05-07 06:48:05 - INFO - Authenticating in SkyPro
|
|
58
|
-
2026-05-07 06:48:05 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
59
|
-
2026-05-07 06:48:06 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
60
|
-
2026-05-07 06:48:06 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
61
|
-
2026-05-07 06:48:06 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
62
|
-
2026-05-07 06:48:06 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
63
|
-
2026-05-07 06:48:06 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
64
|
-
2026-05-07 06:48:06 - INFO - SkyPro authentication successful
|
|
65
|
-
2026-05-07 06:48:06 - INFO - Authenticating in SkyPro
|
|
66
|
-
2026-05-07 06:48:06 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
67
|
-
2026-05-07 06:48:06 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
68
|
-
2026-05-07 06:48:06 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
69
|
-
2026-05-07 06:48:07 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
70
|
-
2026-05-07 06:48:07 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
71
|
-
2026-05-07 06:48:07 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
72
|
-
2026-05-07 06:48:07 - INFO - SkyPro authentication successful
|
|
73
|
-
2026-05-07 06:48:50 - INFO - Authenticating in SkyPro
|
|
74
|
-
2026-05-07 06:48:50 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
75
|
-
2026-05-07 06:48:51 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
76
|
-
2026-05-07 06:48:51 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
77
|
-
2026-05-07 06:48:51 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
78
|
-
2026-05-07 06:48:51 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
79
|
-
2026-05-07 06:48:51 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
80
|
-
2026-05-07 06:48:51 - INFO - SkyPro authentication successful
|
|
81
|
-
2026-05-07 06:48:51 - INFO - Authenticating in SkyPro
|
|
82
|
-
2026-05-07 06:48:51 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
83
|
-
2026-05-07 06:48:52 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
84
|
-
2026-05-07 06:48:52 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
85
|
-
2026-05-07 06:48:52 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
86
|
-
2026-05-07 06:48:52 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
87
|
-
2026-05-07 06:48:52 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
88
|
-
2026-05-07 06:48:52 - INFO - SkyPro authentication successful
|
|
89
|
-
2026-05-07 06:50:41 - INFO - Authenticating in SkyPro
|
|
90
|
-
2026-05-07 06:50:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
91
|
-
2026-05-07 06:50:41 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
92
|
-
2026-05-07 06:50:41 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
93
|
-
2026-05-07 06:50:41 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
94
|
-
2026-05-07 06:50:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
95
|
-
2026-05-07 06:50:42 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
96
|
-
2026-05-07 06:50:42 - INFO - SkyPro authentication successful
|
|
97
|
-
2026-05-07 06:50:50 - INFO - Authenticating in SkyPro
|
|
98
|
-
2026-05-07 06:50:50 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
99
|
-
2026-05-07 06:50:51 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
100
|
-
2026-05-07 06:50:51 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
101
|
-
2026-05-07 06:50:51 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
102
|
-
2026-05-07 06:50:51 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
103
|
-
2026-05-07 06:50:51 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
104
|
-
2026-05-07 06:50:51 - INFO - SkyPro authentication successful
|
|
105
|
-
2026-05-07 06:50:51 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
106
|
-
2026-05-07 06:50:51 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
107
|
-
2026-05-07 06:50:52 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
108
|
-
2026-05-07 06:55:32 - INFO - Authenticating in SkyPro
|
|
109
|
-
2026-05-07 06:55:32 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
2026-05-07 05:49:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
2
|
-
2026-05-07 05:55:35 - INFO - Authenticating in SkyPro
|
|
3
|
-
2026-05-07 05:55:35 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
4
|
-
2026-05-07 05:55:35 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
5
|
-
2026-05-07 05:55:35 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
6
|
-
2026-05-07 05:55:36 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
7
|
-
2026-05-07 05:55:36 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
8
|
-
2026-05-07 05:55:36 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
9
|
-
2026-05-07 05:56:07 - INFO - Authenticating in SkyPro
|
|
10
|
-
2026-05-07 05:56:07 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
11
|
-
2026-05-07 05:56:07 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
12
|
-
2026-05-07 05:56:07 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
13
|
-
2026-05-07 05:56:08 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
14
|
-
2026-05-07 05:56:08 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
15
|
-
2026-05-07 05:56:08 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
16
|
-
2026-05-07 05:57:58 - INFO - Authenticating in SkyPro
|
|
17
|
-
2026-05-07 05:57:58 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
18
|
-
2026-05-07 05:57:59 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
19
|
-
2026-05-07 05:57:59 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
20
|
-
2026-05-07 05:57:59 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
21
|
-
2026-05-07 05:57:59 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
22
|
-
2026-05-07 05:57:59 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
23
|
-
2026-05-07 06:01:48 - INFO - Authenticating in SkyPro
|
|
24
|
-
2026-05-07 06:01:48 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
25
|
-
2026-05-07 06:01:48 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
26
|
-
2026-05-07 06:01:48 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
27
|
-
2026-05-07 06:01:49 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
28
|
-
2026-05-07 06:01:49 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
29
|
-
2026-05-07 06:01:49 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
30
|
-
2026-05-07 06:02:08 - INFO - Authenticating in SkyPro
|
|
31
|
-
2026-05-07 06:02:08 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
32
|
-
2026-05-07 06:02:08 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
33
|
-
2026-05-07 06:02:08 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
34
|
-
2026-05-07 06:02:08 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
35
|
-
2026-05-07 06:02:08 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
36
|
-
2026-05-07 06:02:08 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
37
|
-
2026-05-07 06:02:27 - INFO - Authenticating in SkyPro
|
|
38
|
-
2026-05-07 06:02:27 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
39
|
-
2026-05-07 06:02:28 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
40
|
-
2026-05-07 06:02:28 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
41
|
-
2026-05-07 06:02:28 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
42
|
-
2026-05-07 06:02:28 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
43
|
-
2026-05-07 06:02:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
44
|
-
2026-05-07 06:03:29 - INFO - Authenticating in SkyPro
|
|
45
|
-
2026-05-07 06:03:29 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
46
|
-
2026-05-07 06:03:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
47
|
-
2026-05-07 06:03:29 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
48
|
-
2026-05-07 06:03:30 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
49
|
-
2026-05-07 06:03:30 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
50
|
-
2026-05-07 06:03:30 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
51
|
-
2026-05-07 06:03:57 - INFO - Authenticating in SkyPro
|
|
52
|
-
2026-05-07 06:03:57 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
53
|
-
2026-05-07 06:03:57 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
54
|
-
2026-05-07 06:03:57 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
55
|
-
2026-05-07 06:03:58 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
56
|
-
2026-05-07 06:03:58 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
57
|
-
2026-05-07 06:03:58 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
58
|
-
2026-05-07 06:04:08 - INFO - Authenticating in SkyPro
|
|
59
|
-
2026-05-07 06:04:08 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
60
|
-
2026-05-07 06:04:08 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
61
|
-
2026-05-07 06:04:08 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
62
|
-
2026-05-07 06:04:08 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
63
|
-
2026-05-07 06:04:08 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
64
|
-
2026-05-07 06:04:08 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
65
|
-
2026-05-07 06:18:14 - INFO - Authenticating in SkyPro
|
|
66
|
-
2026-05-07 06:18:14 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
67
|
-
2026-05-07 06:19:08 - INFO - Authenticating in SkyPro
|
|
68
|
-
2026-05-07 06:19:08 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
69
|
-
2026-05-07 06:19:08 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
70
|
-
2026-05-07 06:19:08 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
71
|
-
2026-05-07 06:19:09 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
72
|
-
2026-05-07 06:19:09 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
73
|
-
2026-05-07 06:19:09 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
74
|
-
2026-05-07 06:19:19 - INFO - Authenticating in SkyPro
|
|
75
|
-
2026-05-07 06:19:19 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
76
|
-
2026-05-07 06:19:20 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
77
|
-
2026-05-07 06:19:20 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
78
|
-
2026-05-07 06:19:20 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
79
|
-
2026-05-07 06:19:20 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
80
|
-
2026-05-07 06:19:20 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
81
|
-
2026-05-07 06:19:20 - INFO - SkyPro authentication successful
|
|
82
|
-
2026-05-07 06:19:24 - INFO - Authenticating in SkyPro
|
|
83
|
-
2026-05-07 06:19:24 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
84
|
-
2026-05-07 06:19:25 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
85
|
-
2026-05-07 06:19:25 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
86
|
-
2026-05-07 06:19:25 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
87
|
-
2026-05-07 06:19:25 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
88
|
-
2026-05-07 06:19:25 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
89
|
-
2026-05-07 06:22:18 - INFO - Authenticating in SkyPro
|
|
90
|
-
2026-05-07 06:22:18 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
91
|
-
2026-05-07 06:22:19 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
92
|
-
2026-05-07 06:22:19 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
93
|
-
2026-05-07 06:22:19 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
94
|
-
2026-05-07 06:22:19 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
95
|
-
2026-05-07 06:22:20 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
96
|
-
2026-05-07 06:22:20 - INFO - SkyPro authentication successful
|
|
97
|
-
2026-05-07 06:22:26 - INFO - Authenticating in SkyPro
|
|
98
|
-
2026-05-07 06:22:26 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
99
|
-
2026-05-07 06:22:26 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
100
|
-
2026-05-07 06:22:26 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
101
|
-
2026-05-07 06:22:27 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
102
|
-
2026-05-07 06:22:27 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
103
|
-
2026-05-07 06:22:27 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
104
|
-
2026-05-07 06:22:27 - INFO - SkyPro authentication successful
|
|
105
|
-
2026-05-07 06:25:47 - INFO - Authenticating in SkyPro
|
|
106
|
-
2026-05-07 06:25:47 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
107
|
-
2026-05-07 06:25:48 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
108
|
-
2026-05-07 06:25:48 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
2026-05-04 23:05:39 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
2
|
-
2026-05-04 23:05:39 - WARNING - Executing <Task pending name='Task-3' coro=<get_summary() running at /Users/vadim/PycharmProjects/skypro-money/src/skypro/infra/repositories/summary.py:18> cb=[gather.<locals>._done_callback() at /Users/vadim/.pyenv/versions/3.13.2/lib/python3.13/asyncio/tasks.py:820] created at /Users/vadim/.pyenv/versions/3.13.2/lib/python3.13/asyncio/tasks.py:748> took 0.234 seconds
|
|
3
|
-
2026-05-04 23:05:39 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
4
|
-
2026-05-04 23:05:39 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
5
|
-
2026-05-04 23:05:40 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
6
|
-
2026-05-04 23:05:40 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
7
|
-
2026-05-04 23:05:40 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
8
|
-
2026-05-04 23:05:40 - INFO - SkyPro authentication successful
|
|
9
|
-
2026-05-04 23:05:40 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
10
|
-
2026-05-04 23:05:40 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
11
|
-
2026-05-04 23:05:40 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
12
|
-
2026-05-07 05:40:24 - INFO - Authenticating in SkyPro
|
|
13
|
-
2026-05-07 05:40:24 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
14
|
-
2026-05-07 05:40:25 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
15
|
-
2026-05-07 05:40:25 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
16
|
-
2026-05-07 05:40:25 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
17
|
-
2026-05-07 05:40:25 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
18
|
-
2026-05-07 05:40:26 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
19
|
-
2026-05-07 05:40:26 - INFO - SkyPro authentication successful
|
|
20
|
-
2026-05-07 05:40:26 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
21
|
-
2026-05-07 05:40:26 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
22
|
-
2026-05-07 05:40:26 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
23
|
-
2026-05-07 05:41:13 - INFO - Authenticating in SkyPro
|
|
24
|
-
2026-05-07 05:41:13 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
25
|
-
2026-05-07 05:41:14 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
26
|
-
2026-05-07 05:41:14 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
27
|
-
2026-05-07 05:41:14 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
28
|
-
2026-05-07 05:41:14 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
29
|
-
2026-05-07 05:41:14 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
30
|
-
2026-05-07 05:41:14 - INFO - SkyPro authentication successful
|
|
31
|
-
2026-05-07 05:41:14 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
32
|
-
2026-05-07 05:41:14 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
33
|
-
2026-05-07 05:41:15 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
34
|
-
2026-05-07 05:41:35 - INFO - Authenticating in SkyPro
|
|
35
|
-
2026-05-07 05:41:35 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
36
|
-
2026-05-07 05:41:35 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
37
|
-
2026-05-07 05:41:35 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
38
|
-
2026-05-07 05:41:36 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
39
|
-
2026-05-07 05:41:36 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
40
|
-
2026-05-07 05:41:36 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
41
|
-
2026-05-07 05:41:36 - INFO - SkyPro authentication successful
|
|
42
|
-
2026-05-07 05:41:36 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
43
|
-
2026-05-07 05:41:36 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
44
|
-
2026-05-07 05:41:36 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
45
|
-
2026-05-07 05:42:23 - INFO - Authenticating in SkyPro
|
|
46
|
-
2026-05-07 05:42:23 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
47
|
-
2026-05-07 05:42:24 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
48
|
-
2026-05-07 05:42:24 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
49
|
-
2026-05-07 05:42:24 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
50
|
-
2026-05-07 05:42:24 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
51
|
-
2026-05-07 05:42:24 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
52
|
-
2026-05-07 05:42:24 - INFO - SkyPro authentication successful
|
|
53
|
-
2026-05-07 05:42:24 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
54
|
-
2026-05-07 05:42:24 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
55
|
-
2026-05-07 05:42:25 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
56
|
-
2026-05-07 05:47:43 - INFO - Authenticating in SkyPro
|
|
57
|
-
2026-05-07 05:47:43 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
58
|
-
2026-05-07 05:47:44 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
59
|
-
2026-05-07 05:47:44 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
60
|
-
2026-05-07 05:47:44 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
61
|
-
2026-05-07 05:47:44 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
62
|
-
2026-05-07 05:47:44 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
63
|
-
2026-05-07 05:47:44 - INFO - SkyPro authentication successful
|
|
64
|
-
2026-05-07 05:47:54 - INFO - Authenticating in SkyPro
|
|
65
|
-
2026-05-07 05:47:54 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
66
|
-
2026-05-07 05:47:55 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
67
|
-
2026-05-07 05:47:55 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
68
|
-
2026-05-07 05:47:55 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
69
|
-
2026-05-07 05:47:55 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
70
|
-
2026-05-07 05:47:55 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
71
|
-
2026-05-07 05:47:55 - INFO - SkyPro authentication successful
|
|
72
|
-
2026-05-07 05:48:16 - INFO - Authenticating in SkyPro
|
|
73
|
-
2026-05-07 05:48:16 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
74
|
-
2026-05-07 05:48:16 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
75
|
-
2026-05-07 05:48:16 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
76
|
-
2026-05-07 05:48:16 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
77
|
-
2026-05-07 05:48:16 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
78
|
-
2026-05-07 05:48:16 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
79
|
-
2026-05-07 05:48:16 - INFO - SkyPro authentication successful
|
|
80
|
-
2026-05-07 05:48:41 - INFO - Authenticating in SkyPro
|
|
81
|
-
2026-05-07 05:48:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
82
|
-
2026-05-07 05:48:42 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
83
|
-
2026-05-07 05:48:42 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
84
|
-
2026-05-07 05:48:43 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
85
|
-
2026-05-07 05:48:43 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
86
|
-
2026-05-07 05:48:43 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
87
|
-
2026-05-07 05:48:43 - INFO - SkyPro authentication successful
|
|
88
|
-
2026-05-07 05:48:56 - INFO - Authenticating in SkyPro
|
|
89
|
-
2026-05-07 05:48:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
90
|
-
2026-05-07 05:48:56 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
91
|
-
2026-05-07 05:48:56 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
92
|
-
2026-05-07 05:48:56 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
93
|
-
2026-05-07 05:48:56 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
94
|
-
2026-05-07 05:48:57 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
95
|
-
2026-05-07 05:48:57 - INFO - SkyPro authentication successful
|
|
96
|
-
2026-05-07 05:49:28 - INFO - Authenticating in SkyPro
|
|
97
|
-
2026-05-07 05:49:28 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
98
|
-
2026-05-07 05:49:28 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
99
|
-
2026-05-07 05:49:28 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
100
|
-
2026-05-07 05:49:28 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
101
|
-
2026-05-07 05:49:28 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
2026-05-04 21:51:43 - INFO - Authenticating in SkyPro
|
|
2
|
-
2026-05-04 21:51:43 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
3
|
-
2026-05-04 21:51:43 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
4
|
-
2026-05-04 21:51:43 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
5
|
-
2026-05-04 21:51:44 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
6
|
-
2026-05-04 21:51:44 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
7
|
-
2026-05-04 21:51:44 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
8
|
-
2026-05-04 21:51:44 - INFO - SkyPro authentication successful
|
|
9
|
-
2026-05-04 21:51:44 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
10
|
-
2026-05-04 21:51:44 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
11
|
-
2026-05-04 21:51:44 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
12
|
-
2026-05-04 22:01:00 - INFO - Authenticating in SkyPro
|
|
13
|
-
2026-05-04 22:01:00 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
14
|
-
2026-05-04 22:01:00 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
15
|
-
2026-05-04 22:01:00 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
16
|
-
2026-05-04 22:01:01 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
17
|
-
2026-05-04 22:01:01 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
18
|
-
2026-05-04 22:01:01 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
19
|
-
2026-05-04 22:01:01 - INFO - SkyPro authentication successful
|
|
20
|
-
2026-05-04 22:01:01 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
21
|
-
2026-05-04 22:01:01 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
22
|
-
2026-05-04 22:01:01 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
23
|
-
2026-05-04 22:05:36 - INFO - Authenticating in SkyPro
|
|
24
|
-
2026-05-04 22:05:36 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
25
|
-
2026-05-04 22:05:37 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
26
|
-
2026-05-04 22:05:37 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
27
|
-
2026-05-04 22:05:37 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
28
|
-
2026-05-04 22:05:37 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
29
|
-
2026-05-04 22:05:38 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
30
|
-
2026-05-04 22:05:38 - INFO - SkyPro authentication successful
|
|
31
|
-
2026-05-04 22:05:38 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
32
|
-
2026-05-04 22:05:38 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
33
|
-
2026-05-04 22:05:38 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
34
|
-
2026-05-04 22:05:52 - INFO - Authenticating in SkyPro
|
|
35
|
-
2026-05-04 22:05:52 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
36
|
-
2026-05-04 22:05:53 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
37
|
-
2026-05-04 22:05:53 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
38
|
-
2026-05-04 22:05:53 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
39
|
-
2026-05-04 22:05:53 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
40
|
-
2026-05-04 22:05:53 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
41
|
-
2026-05-04 22:05:53 - INFO - SkyPro authentication successful
|
|
42
|
-
2026-05-04 22:05:53 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
43
|
-
2026-05-04 22:05:53 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
44
|
-
2026-05-04 22:05:54 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
45
|
-
2026-05-04 22:24:16 - INFO - Authenticating in SkyPro
|
|
46
|
-
2026-05-04 22:24:16 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
47
|
-
2026-05-04 22:24:16 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
48
|
-
2026-05-04 22:24:16 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
49
|
-
2026-05-04 22:24:16 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
50
|
-
2026-05-04 22:24:16 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
51
|
-
2026-05-04 22:24:16 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
52
|
-
2026-05-04 22:24:16 - INFO - SkyPro authentication successful
|
|
53
|
-
2026-05-04 22:24:16 - INFO - Fetching account data from 2026-05-01 to 2026-05-31
|
|
54
|
-
2026-05-04 22:24:16 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31
|
|
55
|
-
2026-05-04 22:24:16 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-05-01&end_date=2026-05-31 -> 200
|
|
56
|
-
2026-05-04 22:31:14 - INFO - Authenticating in SkyPro
|
|
57
|
-
2026-05-04 22:31:14 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
58
|
-
2026-05-04 22:31:14 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
59
|
-
2026-05-04 22:31:14 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
60
|
-
2026-05-04 22:31:14 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
61
|
-
2026-05-04 22:31:14 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
62
|
-
2026-05-04 22:31:14 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
63
|
-
2026-05-04 22:31:14 - INFO - SkyPro authentication successful
|
|
64
|
-
2026-05-04 22:31:14 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
65
|
-
2026-05-04 22:31:14 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
66
|
-
2026-05-04 22:31:14 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
67
|
-
2026-05-04 22:31:17 - INFO - Authenticating in SkyPro
|
|
68
|
-
2026-05-04 22:31:17 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
69
|
-
2026-05-04 22:31:17 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
70
|
-
2026-05-04 22:31:17 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
71
|
-
2026-05-04 22:31:17 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
72
|
-
2026-05-04 22:31:17 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
73
|
-
2026-05-04 22:31:17 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
74
|
-
2026-05-04 22:31:17 - INFO - SkyPro authentication successful
|
|
75
|
-
2026-05-04 22:31:17 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
76
|
-
2026-05-04 22:31:17 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
77
|
-
2026-05-04 22:31:18 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
78
|
-
2026-05-04 22:33:28 - INFO - Authenticating in SkyPro
|
|
79
|
-
2026-05-04 22:33:28 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
80
|
-
2026-05-04 22:33:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
81
|
-
2026-05-04 22:33:29 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
82
|
-
2026-05-04 22:33:29 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
83
|
-
2026-05-04 22:33:29 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
84
|
-
2026-05-04 22:33:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
85
|
-
2026-05-04 22:33:29 - INFO - SkyPro authentication successful
|
|
86
|
-
2026-05-04 22:33:29 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
87
|
-
2026-05-04 22:33:29 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
88
|
-
2026-05-04 22:33:29 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
89
|
-
2026-05-04 22:33:41 - INFO - Authenticating in SkyPro
|
|
90
|
-
2026-05-04 22:33:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/careusers/login/
|
|
91
|
-
2026-05-04 22:33:41 - INFO - HTTP response: GET https://operation-planning.sky.pro/careusers/login/ -> 200
|
|
92
|
-
2026-05-04 22:33:41 - INFO - HTTP request: POST https://operation-planning.sky.pro/careusers/login/
|
|
93
|
-
2026-05-04 22:33:41 - INFO - HTTP response: POST https://operation-planning.sky.pro/careusers/login/ -> 302
|
|
94
|
-
2026-05-04 22:33:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/
|
|
95
|
-
2026-05-04 22:33:41 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/ -> 200
|
|
96
|
-
2026-05-04 22:33:41 - INFO - SkyPro authentication successful
|
|
97
|
-
2026-05-04 22:33:41 - INFO - Fetching account data from 2026-04-01 to 2026-04-30
|
|
98
|
-
2026-05-04 22:33:41 - INFO - HTTP request: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30
|
|
99
|
-
2026-05-04 22:33:41 - INFO - HTTP response: GET https://operation-planning.sky.pro/mentor-cabinet/api/data/?start_date=2026-04-01&end_date=2026-04-30 -> 200
|
|
100
|
-
2026-05-04 23:05:39 - INFO - Authenticating in SkyPro
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|