{"id":23676426,"url":"https://github.com/tictechtoee/flask_practice","last_synced_at":"2026-05-13T23:31:52.292Z","repository":{"id":251010428,"uuid":"836131377","full_name":"ticTechtoee/flask_practice","owner":"ticTechtoee","description":"My First Flask Application","archived":false,"fork":false,"pushed_at":"2024-07-31T08:09:47.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-26T11:48:13.276Z","etag":null,"topics":["flask","flask-application","flask-sqlalchemy","python","web-application","website"],"latest_commit_sha":null,"homepage":"https://portfoliofarhan.pythonanywhere.com","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/ticTechtoee.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-31T08:05:09.000Z","updated_at":"2024-07-31T08:12:18.000Z","dependencies_parsed_at":"2024-07-31T09:45:09.510Z","dependency_job_id":null,"html_url":"https://github.com/ticTechtoee/flask_practice","commit_stats":null,"previous_names":["tictechtoee/flask_practice"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ticTechtoee/flask_practice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ticTechtoee%2Fflask_practice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ticTechtoee%2Fflask_practice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ticTechtoee%2Fflask_practice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ticTechtoee%2Fflask_practice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ticTechtoee","download_url":"https://codeload.github.com/ticTechtoee/flask_practice/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ticTechtoee%2Fflask_practice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33004143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"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":["flask","flask-application","flask-sqlalchemy","python","web-application","website"],"created_at":"2024-12-29T14:53:31.276Z","updated_at":"2026-05-13T23:31:52.274Z","avatar_url":"https://github.com/ticTechtoee.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Master\n\nTask Master is a simple task management web application built with Flask. It allows users to create, update, and delete tasks. This application demonstrates basic CRUD (Create, Read, Update, Delete) operations and serves as a foundation for learning Flask web development.\n\n## Features\n\n- **Create Tasks**: Add new tasks with a description.\n- **Read Tasks**: View a list of all tasks.\n- **Update Tasks**: Edit the description of existing tasks.\n- **Delete Tasks**: Remove tasks from the list.\n\n## Requirements\n\n- Python 3.6+\n- Flask\n- SQLite (default database)\n\n## Installation\n\n1. **Clone the repository**:\n\n    ```bash\n    git clone https://github.com/your-username/task-master.git\n    cd task-master\n    ```\n\n2. **Create a virtual environment**:\n\n    ```bash\n    python3 -m venv venv\n    ```\n\n3. **Activate the virtual environment**:\n\n    - On Windows:\n\n        ```bash\n        venv\\Scripts\\activate\n        ```\n\n    - On macOS/Linux:\n\n        ```bash\n        source venv/bin/activate\n        ```\n\n4. **Install dependencies**:\n\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n5. **Set up the environment variables**:\n\n    Create a `.env` file in the root directory and add the following environment variables:\n\n    ```plaintext\n    FLASK_APP=app.py\n    FLASK_ENV=development\n    ```\n\n6. **Initialize the database**:\n\n    ```bash\n    flask shell\n    \u003e\u003e\u003e from app import db\n    \u003e\u003e\u003e db.create_all()\n    \u003e\u003e\u003e exit()\n    ```\n\n## Usage\n\n1. **Run the Flask development server**:\n\n    ```bash\n    flask run\n    ```\n\n2. **Open your web browser** and go to `http://127.0.0.1:5000` to access the application.\n\n## Project Structure\n\n```plaintext\ntask-master/\n├── app.py              # Main application file\n├── models.py           # Database models\n├── templates/          # HTML templates\n│   ├── base.html       # Base template\n│   ├── index.html      # Main page template\n│   ├── update.html     # Update page template\n├── static/             # Static files (CSS, JS)\n│   ├── CSS/\n│   │   └── main.css    # Main stylesheet\n├── instance/           # Flask instance folder\n│   └── app.db          # SQLite database file\n├── .env                # Environment variables\n├── .gitignore          # Git ignore file\n├── README.md           # README file\n└── requirements.txt    # Python dependencies\n\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.\n\n## License\n\nThis project is licensed under the MIT License. See the LICENSE file for details.\nAcknowledgements\n\n    Flask\n    SQLite","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftictechtoee%2Fflask_practice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftictechtoee%2Fflask_practice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftictechtoee%2Fflask_practice/lists"}