1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Make create_dir() method cross-platform instead of POSIX only.

Fix for issue #1869
This commit is contained in:
Cub11k 2023-01-06 22:36:08 +02:00
parent e6f8acadf4
commit c27f60b94b
3 changed files with 14 additions and 14 deletions

View File

@ -28,7 +28,7 @@ class StatePickleStorage(StateStorageBase):
"""
Create directory .save-handlers.
"""
dirs = self.file_path.rsplit('/', maxsplit=1)[0]
dirs, filename = os.path.split(self.file_path)
os.makedirs(dirs, exist_ok=True)
if not os.path.isfile(self.file_path):
with open(self.file_path,'wb') as file:

View File

@ -34,7 +34,7 @@ class StatePickleStorage(StateStorageBase):
"""
Create directory .save-handlers.
"""
dirs = self.file_path.rsplit('/', maxsplit=1)[0]
dirs, filename = os.path.split(self.file_path)
os.makedirs(dirs, exist_ok=True)
if not os.path.isfile(self.file_path):
with open(self.file_path,'wb') as file:

View File

@ -643,15 +643,15 @@ def validate_web_app_data(token: str, raw_init_data: str):
return hmac.new(secret_key.digest(), data_check_string.encode(), sha256).hexdigest() == init_data_hash
__all__ = (
"content_type_media", "content_type_service", "update_types",
"WorkerThread", "AsyncTask", "CustomRequestResponse",
"async_dec", "deprecated",
"is_bytes", "is_string", "is_dict", "is_pil_image",
"chunks", "generate_random_token", "pil_image_to_file",
"is_command", "extract_command", "extract_arguments",
"split_string", "smart_split", "escape", "user_link", "quick_markup",
"antiflood", "parse_web_app_data", "validate_web_app_data",
"or_set", "or_clear", "orify", "OrEvent", "per_thread",
"webhook_google_functions"
)
# __all__ = (
# "content_type_media", "content_type_service", "update_types",
# "WorkerThread", "AsyncTask", "CustomRequestResponse",
# "async_dec", "deprecated",
# "is_bytes", "is_string", "is_dict", "is_pil_image",
# "chunks", "generate_random_token", "pil_image_to_file",
# "is_command", "extract_command", "extract_arguments",
# "split_string", "smart_split", "escape", "user_link", "quick_markup",
# "antiflood", "parse_web_app_data", "validate_web_app_data",
# "or_set", "or_clear", "orify", "OrEvent", "per_thread",
# "webhook_google_functions"
# )