{"id":25442262,"url":"https://github.com/arvind-4/notepad-in-pyqt5","last_synced_at":"2025-10-12T05:19:33.642Z","repository":{"id":119415074,"uuid":"373365747","full_name":"arvind-4/notepad-in-pyqt5","owner":"arvind-4","description":"Simple Notepad Application in PyQt5","archived":false,"fork":false,"pushed_at":"2024-08-18T13:27:05.000Z","size":388,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-08T14:11:21.666Z","etag":null,"topics":["gui","gui-application","notepad","pyqt5","pyqt5-desktop-application","pyqt5-gui-application","python","python3"],"latest_commit_sha":null,"homepage":"","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/arvind-4.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":"2021-06-03T03:07:22.000Z","updated_at":"2024-08-18T13:27:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"feecbda1-7b75-4819-8b87-be914f8a5afe","html_url":"https://github.com/arvind-4/notepad-in-pyqt5","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arvind-4/notepad-in-pyqt5","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arvind-4%2Fnotepad-in-pyqt5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arvind-4%2Fnotepad-in-pyqt5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arvind-4%2Fnotepad-in-pyqt5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arvind-4%2Fnotepad-in-pyqt5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arvind-4","download_url":"https://codeload.github.com/arvind-4/notepad-in-pyqt5/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arvind-4%2Fnotepad-in-pyqt5/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010337,"owners_count":26084738,"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","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["gui","gui-application","notepad","pyqt5","pyqt5-desktop-application","pyqt5-gui-application","python","python3"],"created_at":"2025-02-17T13:17:51.169Z","updated_at":"2025-10-12T05:19:33.610Z","avatar_url":"https://github.com/arvind-4.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notepad in Python\n\nTake Notes and Save the as .txt file using Python and PyQt5 Framework.\n\n### Demo:\n\n![Demo of Notepad](https://raw.githubusercontent.com/Arvind-4/notepad-in-pyqt5/main/.github/static/demo.gif)\n\n### Motive:\n\nThe purpose of this project is to create a simple note-taking application using Python and the PyQt5 framework. The application will allow users to write and save notes as `.txt` files. This project demonstrates basic GUI programming in PyQt5 and file handling in Python, offering a practical example of how to build a desktop application with these technologies.\n\n### Prerequisites:\n\n1.  [**Python:**](https://www.python.org/) Ensure you have Python 3.6 or higher installed on your system.\n2.  [**PyQt5:**](https://www.riverbankcomputing.com/static/Docs/PyQt5/) The PyQt5 framework will be used for creating the graphical user interface.\n3.  [**Git:**](https://git-scm.com/) To clone the repository and manage code versions.\n\n## Get the Code\n\nFollow these steps to set up the environment and run the Tetris game:\n\n### Step 1: Create a Virtual Environment\n\nA virtual environment allows you to manage dependencies separately for each project, avoiding conflicts with other projects.\n\n1. **Navigate to Your Development Directory:**\n\n```bash\ncd ~/Dev\n```\n\n2.  **Create a New Directory for the Notepad Project:**\n\n```bash\nmkdir ~/Dev/notepad -p\n```\n\n3.  **Navigate into the Tetris Directory:**\n\n```bash\ncd ~/Dev/notepad\n```\n\n4.  **Install `virtualenv` if it is not already installed:**\n\n```bash\npython3.10 -m pip install virtualenv\n```\n\n5.  **Create a Virtual Environment in the Current Directory:**\n\n```bash\npython3.10 -m virtualenv .\n```\n\n6.  **Activate the Virtual Environment:**\n\n```bash\nsource bin/activate\n```\n\n### Step 2: Install the Dependencies\n\nYou can install the required dependencies using either **pip** or **poetry**.\n\n#### Using `pip`\n\n1.  **Clone the Notepad Repository:**\n\n```bash\ngit clone https://github.com/Arvind-4/notepad-in-pyqt5.git .\n```\n\n2.  **Install the Dependencies Listed in `requirements.txt` and `requirements-dev.txt`:**\n\n```bash\npip install -r requirements.txt -r requirements-dev.txt\n```\n\n#### Using `poetry`\n\n1.  **Clone the Notepad Repository:**\n\n```bash\ngit clone https://github.com/Arvind-4/notepad-in-pyqt5.git .\n```\n\n2.  **Install the Dependencies Using Poetry:**\n\n```bash\npoetry install\n```\n\n### Step 3: Run the Main File\n\nOnce the dependencies are installed, you can run the Notepad app by executing the main Python script:\n\n```bash\npython run.py\n```\n\nFollow these instructions to successfully set up and run the Notepad app. Enjoy using it!\n\nFor any issues, please raise an issue on GitHub or contribute by creating a pull request.\n\n### Conclusion:\n\nBy following these instructions, you will have set up a note-taking application using Python and PyQt5. This application provides a basic yet functional interface for creating and saving notes. You can extend this project further by adding features like note organization, search functionality, or more advanced file handling.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farvind-4%2Fnotepad-in-pyqt5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farvind-4%2Fnotepad-in-pyqt5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farvind-4%2Fnotepad-in-pyqt5/lists"}