{"id":13421721,"url":"https://github.com/defshine/flaskblog","last_synced_at":"2026-03-15T10:44:55.068Z","repository":{"id":20044465,"uuid":"23312754","full_name":"defshine/flaskblog","owner":"defshine","description":"Learn python and flask,just a tony blog system ","archived":false,"fork":false,"pushed_at":"2017-04-18T01:10:38.000Z","size":2692,"stargazers_count":180,"open_issues_count":1,"forks_count":70,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-03-15T10:33:19.444Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/defshine.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}},"created_at":"2014-08-25T12:28:30.000Z","updated_at":"2024-11-06T19:52:30.000Z","dependencies_parsed_at":"2022-08-05T07:02:19.852Z","dependency_job_id":null,"html_url":"https://github.com/defshine/flaskblog","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/defshine/flaskblog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defshine%2Fflaskblog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defshine%2Fflaskblog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defshine%2Fflaskblog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defshine%2Fflaskblog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/defshine","download_url":"https://codeload.github.com/defshine/flaskblog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defshine%2Fflaskblog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30540718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-15T07:17:37.589Z","status":"ssl_error","status_checked_at":"2026-03-15T07:17:31.738Z","response_time":61,"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":[],"created_at":"2024-07-30T23:00:28.927Z","updated_at":"2026-03-15T10:44:55.031Z","avatar_url":"https://github.com/defshine.png","language":"CSS","readme":"flaskblog\n=========\n\nLearn python and flask,just a tony blog system based on flask and mysql  \nIt is similar to [cleanblog](https://github.com/defshine/cleanblog), a blog system based on flask and mongoengine  \n\n\n###Version:v0.2-dev  \n\n##Use:    \n  \n###Backend:  \n\n  1. [Flask](http://flask.pocoo.org/)\n  2. [Flask-SQLAlchemy](https://pythonhosted.org/Flask-SQLAlchemy/) ORM for mysql  \n  3. [Flask-WTF](https://flask-wtf.readthedocs.org/en/latest/)\n  4. [Flask-Login](https://flask-login.readthedocs.org/en/latest/)  \n  5. [Flask-Admin](http://flask-admin.readthedocs.org/en/latest/)  \n  6. [Flask-Script](http://flask-script.readthedocs.org/en/latest/)  \n  7. [Flask-Cache](http://www.pythondoc.com/flask-cache/index.html)  \n  \n###Web:  \n  \n  1. [Bootstrap-3.2.0](http://getbootstrap.com/)  \n  2. [bootstrap-material-design](https://github.com/FezVrasta/bootstrap-material-design)      \n  3. [CKEditor 4.4.7_standard](http://ckeditor.com/)\n\n##Finish:   \n  \n####The basic function of blog:  \n  \n \u003e Post:read,write,edit,delete  \n \u003e Category:read,add,edit,delete  \n \u003e Comment: use duoshuo  \n \u003e Blogroll: add,list\n     \n####Develop simple restful api  \n\n \u003ctable\u003e\n    \u003ctr\u003e\n        \u003ctd\u003eURL\u003c/td\u003e\n        \u003ctd\u003eMethod\u003c/td\u003e\n        \u003ctd\u003eDescription\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e/api/posts\u003c/td\u003e\n        \u003ctd\u003eGET\u003c/td\u003e\n        \u003ctd\u003eGives a list of all posts\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e/api/posts/post_id\u003c/td\u003e\n        \u003ctd\u003eGET\u003c/td\u003e\n        \u003ctd\u003eGives a posts by post_id\u003c/td\u003e\n    \u003c/tr\u003e\n     \u003ctr\u003e\n        \u003ctd\u003e/api/categories/category_id/posts\u003c/td\u003e\n        \u003ctd\u003eGET\u003c/td\u003e\n        \u003ctd\u003eGives a list of posts by category_id\u003c/td\u003e\n    \u003c/tr\u003e  \n     \u003ctr\u003e\n        \u003ctd\u003e/api/categories\u003c/td\u003e\n        \u003ctd\u003eGET\u003c/td\u003e\n        \u003ctd\u003eGives a list of all categories\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e/api/categories/category_id\u003c/td\u003e\n        \u003ctd\u003eGET\u003c/td\u003e\n        \u003ctd\u003eGives a categories by category_id\u003c/td\u003e\n    \u003c/tr\u003e \n \u003c/table\u003e  \n   \n##Todo   \n    \n1. Think more about restful api design  \n2. Develop simple android app\n\n##Deploy  \n    \nPelease see project wiki [Deploy Flask App on Ubuntu(Virtualenv+Gunicorn+Nginx+Supervisor)](https://github.com/defshine/flaskblog/wiki/Deploy-Flask-App-on-Ubuntu(Virtualenv-Gunicorn-Nginx-Supervisor))  \n  \n\n## Version  \n\nv0.2  \nv0.1    \n \n##Connect me  \n\nLife is short,you need python!\nIf you are interested in this project, Join us!  \n\n## License  \n\nThis project is licensed under the [MIT license](http://opensource.org/licenses/MIT), see `LICENSE` for more details.\n","funding_links":[],"categories":["介绍","Built with Flask"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefshine%2Fflaskblog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdefshine%2Fflaskblog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefshine%2Fflaskblog/lists"}