rgwfuncs 0.0.60__tar.gz → 0.0.61__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {rgwfuncs-0.0.60/src/rgwfuncs.egg-info → rgwfuncs-0.0.61}/PKG-INFO +1 -1
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/pyproject.toml +1 -1
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/setup.cfg +1 -1
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs/df_lib.py +2 -4
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61/src/rgwfuncs.egg-info}/PKG-INFO +1 -1
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/LICENSE +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/README.md +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs/__init__.py +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs/algebra_lib.py +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs/docs_lib.py +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs/interactive_shell_lib.py +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs/str_lib.py +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs.egg-info/SOURCES.txt +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs.egg-info/dependency_links.txt +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs.egg-info/entry_points.txt +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs.egg-info/requires.txt +0 -0
- {rgwfuncs-0.0.60 → rgwfuncs-0.0.61}/src/rgwfuncs.egg-info/top_level.txt +0 -0
@@ -891,8 +891,7 @@ def send_dataframe_via_telegram(
|
|
891
891
|
'caption': message or ''}
|
892
892
|
files = {'document': file}
|
893
893
|
response = requests.post(
|
894
|
-
f"https://api.telegram.org/bot{
|
895
|
-
bot_config['bot_token']}/sendDocument",
|
894
|
+
f"https://api.telegram.org/bot{bot_config['bot_token']}/sendDocument",
|
896
895
|
data=payload,
|
897
896
|
files=files)
|
898
897
|
if remove_after_send and os.path.exists(file_name):
|
@@ -1001,8 +1000,7 @@ def send_data_to_email(
|
|
1001
1000
|
encoders.encode_base64(part)
|
1002
1001
|
part.add_header(
|
1003
1002
|
'Content-Disposition',
|
1004
|
-
f'attachment; filename={
|
1005
|
-
os.path.basename(tmp_file_name)}')
|
1003
|
+
f'attachment; filename={os.path.basename(tmp_file_name)}')
|
1006
1004
|
message.attach(part)
|
1007
1005
|
|
1008
1006
|
if remove_after_send and os.path.exists(tmp_file_name):
|
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
|