{"id":22680127,"url":"https://github.com/coderooz/github-repository-poster","last_synced_at":"2025-10-07T07:20:30.466Z","repository":{"id":254637510,"uuid":"847119347","full_name":"coderooz/github-repository-poster","owner":"coderooz","description":"This is a simple project that fetches repositories from the user github page and posts on the social media.","archived":false,"fork":false,"pushed_at":"2025-06-21T09:27:44.000Z","size":20,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-21T10:29:05.487Z","etag":null,"topics":["automation","facebook","facebook-api","facebook-sdk","python"],"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/coderooz.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-24T22:51:04.000Z","updated_at":"2024-08-24T23:06:34.000Z","dependencies_parsed_at":"2025-10-07T07:20:29.915Z","dependency_job_id":null,"html_url":"https://github.com/coderooz/github-repository-poster","commit_stats":null,"previous_names":["coderooz/github-repository-poster"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coderooz/github-repository-poster","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fgithub-repository-poster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fgithub-repository-poster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fgithub-repository-poster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fgithub-repository-poster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coderooz","download_url":"https://codeload.github.com/coderooz/github-repository-poster/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fgithub-repository-poster/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278736994,"owners_count":26036906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["automation","facebook","facebook-api","facebook-sdk","python"],"created_at":"2024-12-09T19:12:28.113Z","updated_at":"2025-10-07T07:20:30.434Z","avatar_url":"https://github.com/coderooz.png","language":"Python","readme":"# Github Repository Poster\n\nThis is a program is for automatically post github repository/repos on social media automatically.\n\nThis is an extention or application of the [Automate-Posting-App](https://github.com/coderooz/automate-posting-app) project.\n\n*Note*: You ca check the posts on my [fb page](https://www.facebook.com/people/Coderooz/61562424744859/)\n\n## Feature\n\n- **Social MediaPosting**\n- **Template**: Uses this template to post.\n\n## Social Media Platforms Available\n\n- **Facebook**\n\n## Requirements\n\n- [**Mongodb**](https://www.mongodb.com) : For storing all the data.\n\n- **Libraries**:\n    - **python-dotenv** : For handling data from `.env` file.\n    - **pymongo** :  For interacting with mongodb.\n    - **requests** : For handling requests. \n\n## How to use\n\n1. **Clone the github repository**\n```bash\n    git clone https://github.com/coderooz/github-repository-poster.git\n    cd github-repository-poster\n```\n\n2. **Start a virtual evironment** (*Optional*)\n\n    This is an optional by *recommended* step. \n    \n    - Create an `.venv` dir in project folder\n    -  Start the virtual environment.\n        - **For Windows:**\n            ```bash\n                .\\.venv\\Scripts\\Acitvate.ps1\n            ```\n\n        - **For macOS/Linix:**\n            ```bash\n                source .venv/bin/acitvate\n            ```\n    - Check the acivation : There will appear `(venv)` infont of the path in the termnal.\n\n3. **Install required libraries**\n    ```bash\n        pip3 install -r requirements.txt    \n    ```\n\n4. **Create a `.env` file**\n\n    This file will store all the necessary the values and `api_keys`\n    ```bash\n        MONGO_URI = 'mongodb://localhost:27017/' # mongodb url\n        OWNER = 'githib-profile-id' # replace with your github id\n        FACEBOOK_ACCESS_TOKEN = 'YOUR-FB-ACCESS-KEY' # replace with your access key\n        FB_PAGE_NAME='FB Page Name'\n    ```\n    *Note:* Do remove the `'` from the .env file that you make.\n5. **Run**\n\n    Run a `main.py` for test.\n    ```bash\n        py main.py\n    ```\n\n### Future Improvements\n\n- Multiple Social Medias\n- A ui-based user interface\n\n## Contributing\nFeel free to fork this repository and contribute by submitting a pull request. For major changes, please open an issue first to discuss what you would like to change.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n## Author\n\n- [**Coderooz**](http://github.com/coderooz) - *Initial work* - Ranit Saha\n\n**Thank You For Visiting this repository of mine.**\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderooz%2Fgithub-repository-poster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoderooz%2Fgithub-repository-poster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderooz%2Fgithub-repository-poster/lists"}