{"id":40871616,"url":"https://github.com/gslin/feed2social","last_synced_at":"2026-01-22T00:40:47.436Z","repository":{"id":178233552,"uuid":"661557332","full_name":"gslin/feed2social","owner":"gslin","description":"Sync feed to social networks.","archived":false,"fork":false,"pushed_at":"2026-01-11T17:30:20.000Z","size":97,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-11T20:23:33.568Z","etag":null,"topics":["bluesky","facebook","feed","plurk","rss","threads"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gslin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-03T06:30:44.000Z","updated_at":"2026-01-11T17:30:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"5912d6fa-2496-43a6-b788-71c988233982","html_url":"https://github.com/gslin/feed2social","commit_stats":null,"previous_names":["gslin/feed2social"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gslin/feed2social","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gslin%2Ffeed2social","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gslin%2Ffeed2social/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gslin%2Ffeed2social/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gslin%2Ffeed2social/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gslin","download_url":"https://codeload.github.com/gslin/feed2social/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gslin%2Ffeed2social/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28648460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T21:29:11.980Z","status":"ssl_error","status_checked_at":"2026-01-21T21:24:31.872Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bluesky","facebook","feed","plurk","rss","threads"],"created_at":"2026-01-22T00:40:47.377Z","updated_at":"2026-01-22T00:40:47.431Z","avatar_url":"https://github.com/gslin.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# feed2social\n\nSync feed to social networks.\n\n## Platforms are supported\n\n* Bluesky\n* Facebook\n* Plurk\n* Threads\n* Twitter\n\n## Config\n\nThe `~/.config/feed2social/config.ini` file:\n\n```ini\n[default]\nbluesky_username = username.bsky.social\nbluesky_password = x\nfacebook_username = username\nfeed_url = https://abpe.org/@gslin.rss\nplurk_app_key = x\nplurk_app_secret = x\nplurk_token = x\nplurk_token_secret = x\nthreads_access_token = x\nthreads_user_id = x\ntwitter_access_token = x\ntwitter_access_token_secret = x\ntwitter_api_key = x\ntwitter_api_key_secret = x\n```\n\nThe `facebook_username` is used for generating the url `https://www.facebook.com/${facebook_username}`.\n\n## Install\n\n    pip install -r requirements.txt\n    echo \"CREATE TABLE entry (entry_id VARCHAR, created_at INT);\" | sqlite3 ~/.config/feed2social/feed2bluesky.sqlite3\n    echo \"CREATE TABLE entry (entry_id VARCHAR, created_at INT);\" | sqlite3 ~/.config/feed2social/feed2facebook.sqlite3\n    echo \"CREATE TABLE entry (entry_id VARCHAR, created_at INT);\" | sqlite3 ~/.config/feed2social/feed2plurk.sqlite3\n    echo \"CREATE TABLE entry (entry_id VARCHAR, created_at INT);\" | sqlite3 ~/.config/feed2social/feed2threads.sqlite3\n    echo \"CREATE TABLE entry (entry_id VARCHAR, created_at INT);\" | sqlite3 ~/.config/feed2social/feed2twitter.sqlite3\n\n## Run\n\nJust run it periodically (usually with crontab):\n\n```bash\n./feed2bluesky.py\n./feed2facebook.py\n./feed2plurk.py\n./feed2threads.py\n./feed2twitter.py\n```\n\nWe also support package manager environment like [pyenv](https://github.com/pyenv/pyenv) or [mise](https://github.com/jdx/mise), via shell script wrappers:\n\n```bash\n./feed2bluesky.sh\n./feed2facebook.sh\n./feed2plurk.sh\n./feed2threads.sh\n./feed2twitter.sh\n```\n\n## Workarounds\n\nCurrently `plurk_oauth` requires `distutils`, which has been deprecated in Python 3.10, and has been removed in Python 3.12, so we have added `setuptools` as requirement, which adds `distutils` back (at least for now, not sure how long it will continue to support `distutils` compatibility).\n\n## Notes\n\nIf you trace our codebase, you will notice that we have copied many same code across all Python scripts.  This is done intentionally, to keep every script runnable independently.\n\n## License\n\nSee [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgslin%2Ffeed2social","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgslin%2Ffeed2social","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgslin%2Ffeed2social/lists"}