{"id":16517155,"url":"https://github.com/kokseen1/wall-e","last_synced_at":"2026-04-14T10:31:25.340Z","repository":{"id":135184586,"uuid":"474884140","full_name":"kokseen1/wall-e","owner":"kokseen1","description":"A self-hosted Carousell scraper.","archived":false,"fork":false,"pushed_at":"2022-09-08T16:27:41.000Z","size":32,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T19:32:29.146Z","etag":null,"topics":["carousell","docker","docker-compose","heroku","postgres","postgresql","python","python-telegram-bot","telegram","telegram-bot"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kokseen1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-03-28T07:03:07.000Z","updated_at":"2023-09-18T15:28:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"54c512a0-e5c7-4a4b-9a28-8a8d54a870b7","html_url":"https://github.com/kokseen1/wall-e","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kokseen1/wall-e","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokseen1%2Fwall-e","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokseen1%2Fwall-e/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokseen1%2Fwall-e/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokseen1%2Fwall-e/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kokseen1","download_url":"https://codeload.github.com/kokseen1/wall-e/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kokseen1%2Fwall-e/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31793212,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: 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":["carousell","docker","docker-compose","heroku","postgres","postgresql","python","python-telegram-bot","telegram","telegram-bot"],"created_at":"2024-10-11T16:29:05.639Z","updated_at":"2026-04-14T10:31:25.320Z","avatar_url":"https://github.com/kokseen1.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ![icon](https://i.imgur.com/ragyuVV.gif) WALL-E\n\nWALL-E is a self-hosted Carousell scraper that provides an intuitive Telegram interface via the Telegram Bot API. \n\nWALL-E is easily deployed via Docker Compose either on your local machine or on Heroku for free. Configurations such as the polling frequency can be tweaked by modifying the Python source code.\n\n## Prerequisites\n\n- [Docker](https://docs.docker.com/get-docker/)\n- [Docker Compose](https://docs.docker.com/compose/install/)\n- An available [Telegram Bot](https://t.me/botfather/)\n\n### Deploying on Heroku\n\n- [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli)\n- [psql](https://www.postgresql.org/download/)\n\n## Installation\n\nClone this repository\n\n```shell\ngit clone https://github.com/kokseen1/wall-e.git\ncd wall-e\n```\n\n## Local Deployment\n\nCreate a `.env` file\n\n```shell\ntouch .env\n```\n\nSet environment variables by adding the following lines in `.env`\n\n```\nBOT_TOKEN=\u003cTelegram bot token\u003e\nPOSTGRES_NAME=postgres\nPOSTGRES_USER=postgres\nPOSTGRES_PASSWORD=postgres\nNO_SSL_VERIFY=True\n```\n\nBuild and start the containers\n\n```shell\nsudo docker-compose up\n```\n\n## Heroku Deployment\n\nLogin to Heroku\n\n```shell\nheroku login\n```\n\nCreate a Heroku app and add the Git remote\n\n```shell\nheroku create -a \u003cHeroku app name\u003e\nheroku git:remote -a \u003cHeroku app name\u003e\n```\n\nSet the stack of your app to `container`\n\n```shell\nheroku stack:set container\n```\n\nAdd the Heroku `postgresql` addon\n\n```shell\nheroku addons:create heroku-postgresql:hobby-dev\n```\n\nSet environment variables\n\n```shell\nheroku config:set HEROKU_URL=https://\u003cHeroku app name\u003e.herokuapp.com/\nheroku config:set BOT_TOKEN=\u003cTelegram bot token\u003e\nheroku config:set POSTGRES_NAME=postgres\nheroku config:set POSTGRES_USER=postgres\nheroku config:set POSTGRES_PASSWORD=postgres\n```\n\nConnect to the database via `psql`\n\n```shell\nheroku pg:psql\n```\n\nCreate tables\n\n```sql\nCREATE TABLE sent (\n\titem_id VARCHAR ( 255 ) NOT NULL,\n\tchat_id VARCHAR ( 255 ) NOT NULL\n);\n\nCREATE TABLE queries (\n\tquery_text VARCHAR ( 255 ) NOT NULL,\n\tchat_id VARCHAR ( 255 ) NOT NULL\n);\n```\n\nExit from `psql`\n```shell\nexit\n```\n\nPush to Heroku\n\n```shell\ngit push heroku main\n```\n\nKeep the application awake via a service like [Kaffeine](https://kaffeine.herokuapp.com/)\n\n## Bot Usage\n\nAdd query\n\n```\n/add \u003cquery\u003e\n```\n\nRemove query\n\n```\n/rm \u003cquery\u003e\n```\n\nList queries\n\n```\n/ls\n```\n\nFetch queries\n\n```\n/force\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkokseen1%2Fwall-e","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkokseen1%2Fwall-e","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkokseen1%2Fwall-e/lists"}