{"id":16103623,"url":"https://github.com/bilka2/bilkabot","last_synced_at":"2026-02-17T15:02:02.791Z","repository":{"id":174220861,"uuid":"133014445","full_name":"Bilka2/BilkaBot","owner":"Bilka2","description":"A discord bot, used to dispatch wiki scripts when RSS feeds update, or on command","archived":false,"fork":false,"pushed_at":"2025-03-28T18:52:34.000Z","size":97,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T02:27:49.535Z","etag":null,"topics":["discord","discord-bot","discord-py","python","rss"],"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/Bilka2.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}},"created_at":"2018-05-11T08:46:58.000Z","updated_at":"2025-03-28T18:52:38.000Z","dependencies_parsed_at":"2025-03-26T13:29:02.126Z","dependency_job_id":"2b5a8ee5-8471-4413-84c1-c3d14b8f9510","html_url":"https://github.com/Bilka2/BilkaBot","commit_stats":null,"previous_names":["bilka2/bilkabot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bilka2/BilkaBot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bilka2%2FBilkaBot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bilka2%2FBilkaBot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bilka2%2FBilkaBot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bilka2%2FBilkaBot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bilka2","download_url":"https://codeload.github.com/Bilka2/BilkaBot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bilka2%2FBilkaBot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29548201,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T14:33:00.708Z","status":"ssl_error","status_checked_at":"2026-02-17T14:32:58.657Z","response_time":100,"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":["discord","discord-bot","discord-py","python","rss"],"created_at":"2024-10-09T18:58:18.550Z","updated_at":"2026-02-17T15:02:02.786Z","avatar_url":"https://github.com/Bilka2.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BilkaBot\n\nA discord bot, used to dispatch wiki scripts when RSS feeds update, or on command.\n\nconfig.json needs to be added and should look like this:\n```json\n{\n  \"token\": \"\u003cbase64 encoded token\u003e\",\n  \"path_to_wiki_scripts\": \"\u003cpath to your local clone of https://github.com/Bilka2/Wiki-scripts\u003e\"\n}\n```\n\nEncoding the token:\n```python\nimport base64\nprint(base64.b64encode('\u003cTOKEN\u003e'.encode('utf8')).decode('utf8'))\n```\n\nfeeds.json:\n```json\n{\n\"fff\":\n  {\"url\": \"https://www.factorio.com/blog/rss\",\n  \"channel\": \u003cid\u003e,\n  \"time_latest_entry\": \"\u003ctime.strftime('%Y-%m-%dT%H:%M:%S+00:00', time)\u003e\",\n  \"sleep_for\": 60,\n  \"webhook_urls\": [\"\u003curl\u003e\", \"\u003curl\u003e\"]},\n\"wiki\":\n  {\"url\": \"https://wiki.factorio.com/api.php?days=14\u0026limit=50\u0026action=feedrecentchanges\u0026feedformat=rss\u0026hidebots=1\",\n  \"channel\": \u003cid\u003e,\n  \"time_latest_entry\": \"\u003ctime.strftime('%Y-%m-%dT%H:%M:%S+00:00', time)\u003e\",\n  \"sleep_for\": 180},\n\"forums_news\":\n  {\"url\": \"https://forums.factorio.com/app.php/feed/news\",\n  \"channel\": \u003cid\u003e,\n  \"time_latest_entry\": \"\u003ctime.strftime('%Y-%m-%dT%H:%M:%S+00:00', time)\u003e\",\n  \"sleep_for\": 60},\n\"factorio_versions\":\n  {\"url\": \"https://factorio.com/api/latest-releases\",\n  \"channel\": \u003cid\u003e,\n  \"latest_stable\": \"2.0.xx\",\n  \"sleep_for\": 180,\n  \"webhook_urls\": [\"\u003curl\u003e\", \"\u003curl\u003e\"]}\n}\n```\n\nDependencies:\nPython 3.8+\n* feedparser\n* discord.py 2.0+\n* tomd\n* requests\n* local clone of https://github.com/Bilka2/Wiki-scripts\n* (May need the `python3-venv` package installed on Debian for creating the virtualenv)\n\nVirtualenv setup:\n```\n#pwd should be ~\npython3 -m venv wiki_bot_env\nsource wiki_bot_env/bin/activate\npython3 --version # should be 3.13 or higher\npython3 -m pip install -r BilkaBot/dependencies.txt\ndeactivate\nbash BilkaBot/easy-update.sh # start bot, as usual\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbilka2%2Fbilkabot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbilka2%2Fbilkabot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbilka2%2Fbilkabot/lists"}