{"id":24650618,"url":"https://github.com/ujitkumar1/postmate","last_synced_at":"2026-04-05T20:38:16.410Z","repository":{"id":182343331,"uuid":"590554304","full_name":"ujitkumar1/PostMate","owner":"ujitkumar1","description":"PostMate","archived":false,"fork":false,"pushed_at":"2023-03-01T15:03:12.000Z","size":401,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-20T21:05:51.889Z","etag":null,"topics":["blogging","flask","python3","sqlalchemy-python"],"latest_commit_sha":null,"homepage":"https://github.com/ujitkumar1/PostMate","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/ujitkumar1.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}},"created_at":"2023-01-18T17:20:45.000Z","updated_at":"2023-03-23T13:39:24.000Z","dependencies_parsed_at":"2023-07-19T17:02:35.479Z","dependency_job_id":null,"html_url":"https://github.com/ujitkumar1/PostMate","commit_stats":null,"previous_names":["ujitkumar1/postmate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ujitkumar1/PostMate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujitkumar1%2FPostMate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujitkumar1%2FPostMate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujitkumar1%2FPostMate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujitkumar1%2FPostMate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ujitkumar1","download_url":"https://codeload.github.com/ujitkumar1/PostMate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujitkumar1%2FPostMate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31449832,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T15:22:31.103Z","status":"ssl_error","status_checked_at":"2026-04-05T15:22:00.205Z","response_time":75,"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":["blogging","flask","python3","sqlalchemy-python"],"created_at":"2025-01-25T18:16:13.038Z","updated_at":"2026-04-05T20:38:16.394Z","avatar_url":"https://github.com/ujitkumar1.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## PostMate: Your Ultimate Blogging Companion\n\n### Description:\n\nPostMate is a Python Flask-based application that serves as the perfect companion for bloggers. The application provides users with an easy-to-use platform to create and publish their own blog posts. PostMate also includes a feature that suggests new topics based on the blogger's interests and previous posts, making it easy to stay inspired and create engaging content. With PostMate, users can also discover new blogs and connect with other bloggers, creating a thriving community of like-minded individuals.\n\n### Prerequisites:\n1. Python Programming language\n2. MySql\n3. flask\n4. flask_restful\n5. Docker (Optional)\n\n### Technologies Used:\n\nIn the project I have used the below technologies:\n1. flask - Utilized flask to create a dynamic and robust web application in my project.\n2. flask_restful - Implemented flask_restful to enhance functionality and create RESTful APIs\n3. flask_sqlalchemy - Used Flask_sqlalchemy to effectively interact with databases(ORM)\n4. HTML - Employed HTML to structure and create well-formed web pages.\n5. CSS - Incorporated CSS to provide a polished and visually appealing user interface in my project.\n\n```\nNote:\nPython is the main programming language used in the flask and flask_restful and flask_sqlalchemy and\nflask_sqlalchemy and is the foundation for the project.\n```\n\n### DB Schema Design:\n\nThe below diagram shows the Data Base Structure\n\n![Alt Text](db.png)\n\n### API DESIGN:\nThe CRUD (Create, Read, Update, and Delete) operations for both user and blogpost entities have been \nimplemented and documented in the OpenAPI specification, utilizing the YAML format. The file containing the \nAPI definition is named \"blogpost.yaml\" for easy reference and management.\n\n```Server URL : http://127.0.0.1:5000/```\n\n| Request Type | Endpoints               | Description                                        |\n| ------------|------------------------|----------------------------------------------------|\n| GET         | /signup                 | Returns the signup page                            |\n| POST        | /signup                 | Creates a new user                                 |\n| GET         | /logout                 | Logsout the user from the session                   |\n| GET         | /updateuser/{user_id}   | Returns the update user page                        |\n| POST        | /updateuser/{user_id}   | Updates the user information                        |\n| GET         | /deleteuser/{username}  | Deletes the user                                   |\n| GET         | /profile/{username}     | Returns the user's profile page                     |\n| POST        | /createpost             | Creates a new blog post                             |\n| GET         | /createpost             | Returns the create post page                        |\n| POST        | /deletepost/{post_id}   | Deletes a blog post                                 |\n| GET         | /updatepost/{post_id}   | Returns the update post page                        |\n| POST        | /updatepost/{post_id}   | Updates the blog post information                   |\n| GET         | /viewpost/{post_id}     | Returns the single view post page                   |\n| GET         | /viewposts              | Returns the viewposts page                          |\n\n\n### Usage:\n\n__Without Docker__\n\nFirst change the directory to TaskMaster by executing the below command in the terminal\n\n```\ncd TaskMaster\n```\n\nTo install the required packages and libraries, run the following command:\n\n\n```\npip install -r requirements.txt\n```\n\nThis command will install all the necessary dependencies listed in the requirements.txt file, allowing you to run the\nproject without any issues.\n\nTo run the application, execute the following command\n\n```\npython main.py\n```\n\nThis will start the application, and you should be able to use it. (or) Directly run the main.py file\n\n\n__With Docker__\n\nrun the below commands in the terminal to run the app using the docker\n\n```\ncd TaskMaster\ndocker build -t taskmaster -f Dockerfile/ .\ndocker run -p 5000:5000 taskmaster\n```\n\n### Architecture and Features:\n\nThe below diagram shows the Architecture of the Blog Application:\n\n![Alt Text](archi.png)\n\nThis blogging application offers a comprehensive set of features for optimal user experience. Users can create, \nupdate, and delete their own profiles with ease and Users can also view their profile stats. The search and follow \nfunction allow users to discover and keep up to date with their favourite bloggers, and the option to unfollow at \nany time provides flexibility. The application also supports the full range of CRUD operations for blog posts, \nenabling users to create, view, update, and delete posts with precision and efficiency as well as for the Users. \nOverall, our application is designed to provide a professional, streamlined experience for all users.\n\n### Contact:\n\nName : Ujit Kumar\n\nEmail : ujitkumar1@gmail.com","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fujitkumar1%2Fpostmate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fujitkumar1%2Fpostmate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fujitkumar1%2Fpostmate/lists"}