Compare commits

..

2 Commits

Author SHA1 Message Date
ge
3bbc515e10 fix: delete prints, config.toml 2022-08-28 17:15:48 +03:00
ge
4bfa00c51e upd config example 2022-08-28 17:05:32 +03:00
2 changed files with 6 additions and 8 deletions

View File

@ -1,12 +1,12 @@
[mastodon] [mastodon]
API_URL = https://mastodon.social/api/v1 API_URL = 'https://mastodon.social/api/v1'
API_ACCESS_TOKEN = your_access_token_here API_ACCESS_TOKEN = 'your_access_token_here'
[vk] [vk]
API_URL = https://api.vk.com/method API_URL = 'https://api.vk.com/method'
API_VERSION = 5.131 API_VERSION = '5.131'
API_ACCESS_TOKEN = your_access_token_here API_ACCESS_TOKEN = 'your_access_token_here'
GROUP_DOMAIN = apiclub GROUP_DOMAIN = 'apiclub'
[bridge] [bridge]
POLLING_TIME = 300 POLLING_TIME = 300

View File

@ -168,8 +168,6 @@ def toot(post_data: dict) -> str:
# Get status text # Get status text
text = post_text + '\n\n' + 'Source: ' + vk_post_url + '\n\nAttachments:\n' + post_attachments text = post_text + '\n\n' + 'Source: ' + vk_post_url + '\n\nAttachments:\n' + post_attachments
print('Длина текста', len(text))
print(text)
# Post toot! # Post toot!
publish_toot(text, media_ids) publish_toot(text, media_ids)