{"id":27237960,"url":"https://github.com/n4vrl0s3/e-commerce-python-website","last_synced_at":"2025-04-10T18:41:49.112Z","repository":{"id":272716546,"uuid":"908330710","full_name":"n4vrl0s3/E-Commerce-Python-Website","owner":"n4vrl0s3","description":"Simple Website E-Commerce made with Python","archived":false,"fork":false,"pushed_at":"2025-01-25T19:54:06.000Z","size":5561,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T19:08:03.823Z","etag":null,"topics":["flask","flask-application","green","gsap","gsap-scrolltrigger","python"],"latest_commit_sha":null,"homepage":"https://e-commerce-python-website.guanshiyinnn.com/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/n4vrl0s3.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["guanshiyin28"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-12-25T18:58:09.000Z","updated_at":"2025-01-25T19:54:09.000Z","dependencies_parsed_at":"2025-01-16T07:49:46.162Z","dependency_job_id":"26f2c575-c58c-40ef-b0bf-e309ee70cbc7","html_url":"https://github.com/n4vrl0s3/E-Commerce-Python-Website","commit_stats":null,"previous_names":["guanshiyin28/e-commerce-python-website","n4vrl0s3/e-commerce-python-website"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FE-Commerce-Python-Website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FE-Commerce-Python-Website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FE-Commerce-Python-Website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FE-Commerce-Python-Website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n4vrl0s3","download_url":"https://codeload.github.com/n4vrl0s3/E-Commerce-Python-Website/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248271909,"owners_count":21075800,"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":["flask","flask-application","green","gsap","gsap-scrolltrigger","python"],"created_at":"2025-04-10T18:41:48.019Z","updated_at":"2025-04-10T18:41:49.103Z","avatar_url":"https://github.com/n4vrl0s3.png","language":"HTML","funding_links":["https://github.com/sponsors/guanshiyin28"],"categories":[],"sub_categories":[],"readme":"# E-Commerce Python Website\n\nThis repository aims to provide a starting point for developing a Python-based marketplace web application.\n\n\u003chr\u003e\u003cbr\u003e\n\n## Purpose of This Repository\n\nThis repository serves as a foundational framework for developing a Python-based marketplace web application, encompassing core features such as user registration and authentication, product listing and management, basic search functionality, and a user-friendly interface, providing a robust starting point for developers seeking to build a dynamic and scalable online marketplace platform.\n\n\u003chr\u003e\u003cbr\u003e\n\n## Demonstration\n\nHere is a demonstration of the `add_product` function from `app.py`:\n\n```python\ndef add_product(name, description, price):\n    product = {\n        'name': name,\n        'description': description,\n        'price': price\n    }\n    # Code to add the product to the database\n    return product\n\n# Example usage\nnew_product = add_product('Sample Product', 'This is a sample product.', 19.99)\nprint(new_product)\n```\n\n\u003chr\u003e\u003cbr\u003e\n\n## Features\n\n- User registration and authentication\n- Product listing and management\n- Basic search functionality\n- User-friendly interface\n- Responsive design\n\n\u003chr\u003e\u003cbr\u003e\n\n## Technologies Used\n\n- Python\n- Flask\n- SQLite\n- HTML/CSS\n- JavaScript\n\n\u003chr\u003e\u003cbr\u003e\n\n## Project Setup\n\nFollow these steps to set up the project on your local machine.\n\n### Prerequisites\n\n- Python installed on your machine\n- pip (Python package installer)\n\n### Steps to Run\n\n1. Install Python\n2. Install \u0026 upgrade pip\n\n```bash\npython -m ensurepip --upgrade\npython get-pip.py\npython -m pip install --upgrade pip\n```\n\n3. Clone this Repository\n\n```bash\ngit clone https://github.com/guanshiyin28/E-Commerce-Python-Website.git\n```\n\n4. Direct to the directory\n\n```bash\ncd E-Commerce-Python-Website\n```\n\n5. Install requirements.txt\n\n```bash\npip install -r requirements.txt\n```\n\n6. Run with Python and see through the localhost\n\n```bash\npython app.py\n```\n\n\u003chr\u003e\u003cbr\u003e\n\n## License\n\nThis project is licensed under the Apache-2.0 License. See the [LICENSE](LICENSE) file for details.\n\n\u003chr\u003e\u003cbr\u003e\n\n\u003cdiv align=\"center\"\u003e\n   \u003ca href=\"https://www.instagram.com/guanshiyin_/\"\u003e\n      \u003cimg src=\"https://capsule-render.vercel.app/api?type=waving\u0026height=200\u0026color=100:393E46,20:F7F7F7\u0026section=footer\u0026reversal=false\u0026textBg=false\u0026fontAlignY=50\u0026descAlign=48\u0026descAlignY=59\"/\u003e\n   \u003c/a\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn4vrl0s3%2Fe-commerce-python-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn4vrl0s3%2Fe-commerce-python-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn4vrl0s3%2Fe-commerce-python-website/lists"}