{"id":16077778,"url":"https://github.com/imhimansu28/upload-bookmarks","last_synced_at":"2025-10-22T20:30:55.524Z","repository":{"id":180657161,"uuid":"612090275","full_name":"imhimansu28/upload-bookmarks","owner":"imhimansu28","description":"The Bookmark Manager is a powerful tool for organizing and managing bookmarks. With its bookmark management and category management features, users can easily keep track of their favorite websites. The ability to import bookmarks from a JSON file makes it convenient to transfer existing bookmarks into the application. By leveraging Django, Python, ","archived":false,"fork":false,"pushed_at":"2024-04-19T05:33:24.000Z","size":16980,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-19T17:35:12.965Z","etag":null,"topics":["bookmarks","django","json","mysql-database","python","pythondjango","webapplication"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/imhimansu28.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,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-03-10T07:13:37.000Z","updated_at":"2024-04-23T12:31:07.817Z","dependencies_parsed_at":"2024-04-23T12:30:37.265Z","dependency_job_id":"e48d1644-6927-46a6-89fd-e38532b70c4c","html_url":"https://github.com/imhimansu28/upload-bookmarks","commit_stats":null,"previous_names":["imhimansu28/upload-bookmarks"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imhimansu28%2Fupload-bookmarks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imhimansu28%2Fupload-bookmarks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imhimansu28%2Fupload-bookmarks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imhimansu28%2Fupload-bookmarks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imhimansu28","download_url":"https://codeload.github.com/imhimansu28/upload-bookmarks/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237739846,"owners_count":19358624,"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":["bookmarks","django","json","mysql-database","python","pythondjango","webapplication"],"created_at":"2024-10-09T10:03:12.985Z","updated_at":"2025-10-22T20:30:52.895Z","avatar_url":"https://github.com/imhimansu28.png","language":"JavaScript","funding_links":[],"categories":["python"],"sub_categories":[],"readme":"# Bookmark Manager Documentation\n\n## Introduction\nBookmark Manager is a web application developed using Django, Python, HTML, CSS, and JavaScript. It allows users to organize and manage their bookmarks efficiently. This documentation provides an overview of the key features and functionality of the Bookmark Manager.\n\n## Features\nThe Bookmark Manager offers the following key features:\n\n1. **Bookmark Management**: Users can add, edit, and delete bookmarks. Each bookmark consists of a title, URL, and optional description.\n\n2. **Category Management**: Users can create categories to organize their bookmarks. Each bookmark can be assigned to one or more categories.\n\n3. **Import Bookmarks**: Users can import bookmarks from a JSON file. This feature allows users to bulk import bookmarks into the application.\n\n## Technology Stack\nThe Bookmark Manager is built using the following technologies:\n\n- **Django**: A high-level Python web framework that provides the foundation for the application's backend logic and database management.\n\n- **Python**: The primary programming language used for building the backend logic and handling server-side operations.\n\n- **HTML**: The markup language used for structuring the web pages and content presentation.\n\n- **CSS**: The styling language used for defining the visual appearance and layout of the web pages.\n\n- **JavaScript**: The programming language used for implementing interactive features and client-side functionality.\n\n- **MySQL Database**: The database management system used for storing bookmark data and managing relationships between bookmarks and categories.\n\n## Usage\nOnce the Bookmark Manager is set up and running, users can perform the following actions:\n\n- **Add Bookmarks**: Users can add new bookmarks by providing a title, URL, and optional description.\n\n- **Edit Bookmarks**: Users can edit existing bookmarks to update their title, URL, or description.\n\n- **Delete Bookmarks**: Users can delete bookmarks that are no longer needed.\n\n- **Create Categories**: Users can create categories to organize their bookmarks. Each bookmark can be assigned to one or more categories.\n\n- **Import Bookmarks**: Users can import bookmarks from a JSON file. The JSON file should contain an array of bookmark objects with the necessary properties (title, URL, description).\n\n## Getting the local server running\n\n- Install `mysql`: https://dev.mysql.com/doc/mysql-installation-excerpt/8.0/en/\n\n```bash\n# Clone repository\ngit clone \u003crepo-link\u003e\ncd tasksmanager\n\n# creating virtual env\n# python3 -m venv path/to/venv\npython3 -m venv .venv\nsource .venv/bin/activate\n\n# create a new database\nmysql -u root -p --default-character-set=utf8mb4\nCREATE DATABASE tasksmanager_db CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;\nCREATE DATABASE test_tasksmanager_db CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;\n\n# Create MySQL users\ncreate user 'py-user' identified by 'p@@sWord';\ngrant all privileges on tasksmanager_db.* to 'py-user';\ngrant all privileges on test_tasksmanager_db.* to 'py-user';\nflush privileges;\nexit\n\n# install dependencies\npip install --upgrade pip\npip install wheel\npip install -r requirements/requirements-dev.txt\n\n# install pre-commit hooks\npre-commit install\n\n# Provide database authentications\ncp .env.sample .env\n# update the .env file with mysql username, password and database name\nvi .env\n\n# Create database and tables\npython manage.py migrate\n\n# Start development server\npython manage.py runserver\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimhimansu28%2Fupload-bookmarks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimhimansu28%2Fupload-bookmarks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimhimansu28%2Fupload-bookmarks/lists"}