Compare commits

..

No commits in common. "main" and "1.0" have entirely different histories.
main ... 1.0

6 changed files with 11 additions and 11 deletions

2
.gitignore vendored
View File

@ -1,7 +1,7 @@
include include
bin bin
conf.toml conf.toml
*.tar* *.zst
# ---> Python # ---> Python
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='social-photos', name='social-photos',
version='1.2', version='1.0',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
'blurhash==1.1.4', 'blurhash==1.1.4',

View File

@ -1,8 +1,8 @@
from . import load_config from load_config import config
from mastodon import Mastodon from mastodon import Mastodon
m = Mastodon(access_token=load_config.config['boost_mastodon']['token'], api_base_url=load_config.config['boost_mastodon']['server']) m = Mastodon(access_token=config['boost_mastodon']['token'], api_base_url=config['boost_mastodon']['server'])
def boost(url): def boost(url):
search_results = m.search(url, resolve=True, exclude_unreviewed=False) search_results = m.search(url, resolve=True, exclude_unreviewed=False)

View File

@ -1,5 +1,5 @@
from . import load_config import load_config
from . import image_processing import image_processing
import os, sys, time, argparse, random import os, sys, time, argparse, random
@ -66,12 +66,12 @@ def main():
if load_config.config['pixelfed']['enable']: if load_config.config['pixelfed']['enable']:
print("Pixelfed publishing enabled") print("Pixelfed publishing enabled")
from . import publish_pixelfed import publish_pixelfed
posts['pixelfed'] = publish_pixelfed.upload(file_data) posts['pixelfed'] = publish_pixelfed.upload(file_data)
if load_config.config['flickr']['enable']: if load_config.config['flickr']['enable']:
print("Flickr publishing enabled") print("Flickr publishing enabled")
from . import publish_flickr import publish_flickr
posts['flickr'] = publish_flickr.upload(file_data) posts['flickr'] = publish_flickr.upload(file_data)
## Wait before boosing to ensure media has been processed ## Wait before boosing to ensure media has been processed
@ -81,7 +81,7 @@ def main():
if load_config.config['boost_mastodon']['enable']: if load_config.config['boost_mastodon']['enable']:
print("Mastodon Boost enabled") print("Mastodon Boost enabled")
from . import boost_mastodon import boost_mastodon
posts['mastodon_boost'] = boost_mastodon.boost(posts['pixelfed']) posts['mastodon_boost'] = boost_mastodon.boost(posts['pixelfed'])
if delete_mode: if delete_mode:

View File

@ -1,5 +1,5 @@
import flickrapi import flickrapi
from . import load_config import load_config
print("Authenticating with Flickr") print("Authenticating with Flickr")
flickr = flickrapi.FlickrAPI(load_config.config['flickr']['app_api'], load_config.config['flickr']['app_secret']) flickr = flickrapi.FlickrAPI(load_config.config['flickr']['app_api'], load_config.config['flickr']['app_secret'])

View File

@ -1,4 +1,4 @@
from . import load_config import load_config
from mastodon import Mastodon from mastodon import Mastodon
import datetime, pytz import datetime, pytz