{"id":17166347,"url":"https://github.com/gdsoumya/content_master","last_synced_at":"2025-09-12T15:53:49.653Z","repository":{"id":48791916,"uuid":"193334855","full_name":"gdsoumya/content_master","owner":"gdsoumya","description":"Content Master is a content aggregator that collects content from different sources, organizes them and puts them in one place for consumption.","archived":false,"fork":false,"pushed_at":"2022-07-23T18:33:47.000Z","size":31,"stargazers_count":6,"open_issues_count":1,"forks_count":8,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-13T15:06:09.874Z","etag":null,"topics":["content-aggregation","content-aggregator","flask","python3","web-scraping"],"latest_commit_sha":null,"homepage":null,"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/gdsoumya.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}},"created_at":"2019-06-23T10:31:19.000Z","updated_at":"2024-12-24T16:29:45.000Z","dependencies_parsed_at":"2022-09-23T21:40:23.988Z","dependency_job_id":null,"html_url":"https://github.com/gdsoumya/content_master","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdsoumya%2Fcontent_master","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdsoumya%2Fcontent_master/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdsoumya%2Fcontent_master/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gdsoumya%2Fcontent_master/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gdsoumya","download_url":"https://codeload.github.com/gdsoumya/content_master/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248732485,"owners_count":21152852,"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","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":["content-aggregation","content-aggregator","flask","python3","web-scraping"],"created_at":"2024-10-14T23:05:20.112Z","updated_at":"2025-04-13T15:06:17.632Z","avatar_url":"https://github.com/gdsoumya.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Content Master\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)   \u003cimg src=\"https://img.shields.io/badge/made%20with-python-blue.svg\" alt=\"made with python\"\u003e \u003ca href='https://github.com/gdsoumya' target='_blank'\u003e\u003cimg src='https://img.shields.io/github/followers/gdsoumya.svg?label=Folow\u0026style=social'\u003e\u003c/a\u003e\u003ca href=\"https://twitter.com/intent/tweet?text=Check+out+this+awesome+Github+Repo+for+a+Content Aggregator, it collects content from different websites and organizes everything in one place.\u0026url=https%3A%2F%2Fgithub.com%2Fgdsoumya%2Fcontent_master\u0026hashtags=twitter%2Ccontent_aggregator%2Cgithub\u0026original_referer=http%3A%2F%2Fgithub.com%2F\u0026tw_p=tweetbutton\" target=\"_blank\"\u003e\n  \u003cimg src=\"http://jpillora.com/github-twitter-button/img/tweet.png\"\n       alt=\"tweet button\" title=\"Check out this awesome Github Repo for a Twitter Bot, it can auto tweet posts using RSS Feed links.\"\u003e\u003c/img\u003e\n\u003c/a\u003e\n\nContent Master is a content aggregator that collects content from different sources, organizes them and puts them in one place for consumption.\n\n## Getting Started\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes.\n\n### Prerequisites\n\n**Content Master** requires [ **Python (\u003e Python 3.6)**](https://www.python.org/) .\n\n### Getting the project.\n\n```sh\n$ git clone https://github.com/gdsoumya/content_master.git\nor \nDownload and extract the Zip-File\n```\n### Setting up Virtual Environemt\nSetting up a virtual environment would be better for both development and normal execution purposes.\n```sh\n$ cd content_master\n$ python -m virtualenv env\n$ source env/bin/activate\n or (Windows machine)\n$ .\\env\\Scripts\\activate\n```\n### Installing Dependencies\nThe Project has a few dependencies which can be installed by running.\n```sh\n$ pip install -r dependencies.txt \n```\n## Starting the Server\nTo start the Flask server run\n```sh\n$ python server.py\n```\nA Flask development server will be initialized at http://127.0.0.1:5000/\n\n### Warnings \nA possible warning that one might get is :\n\n**WARNING: Do not use the development server in a production environment.**\n\nThis warning is displayed because currently a Flask Development Server is running but the default environment of Flask is set to Production, to remove this warning change the FLASK_ENV environment variable.\n\u003cbr\u003e***Setting environment to development automatically sets the debugger on.**\n```sh\n$ export FLASK_ENV=development\nor (Windows machine)\n$ set FLASK_ENV=development\n```\n\n## Errors and Debugging options\nThe server by default does not start in debugger mode but to initialize debugger mode change the last line of the '[server.py](https://github.com/gdsoumya/content_master/blob/master/server.py)' file to :\n```python\napp.run() -\u003e app.run(debug=True)\n```\nMost errors will be logged to the console and can be referenced later for debugging.\n## Packages Used\n- **[Requests](https://2.python-requests.org/en/master/)** : For fetching the source websites.\n- **[Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/)** : For scraping the source websites.\n- **[Flask](http://flask.pocoo.org/)** : For hosting the web interface.\n\n## Author\n-   **Soumya Ghosh Dastidar**\n\n## Contributting\nAny contribution/suggestions are welcomed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgdsoumya%2Fcontent_master","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgdsoumya%2Fcontent_master","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgdsoumya%2Fcontent_master/lists"}