{"id":20549300,"url":"https://github.com/samiyaalizaidi/fintrack","last_synced_at":"2026-04-25T03:03:26.818Z","repository":{"id":257935169,"uuid":"869669542","full_name":"samiyaalizaidi/FinTrack","owner":"samiyaalizaidi","description":"🛢️ A database driven accounting management system.","archived":false,"fork":false,"pushed_at":"2024-12-31T09:28:19.000Z","size":1646,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-16T16:41:39.753Z","etag":null,"topics":["database-management-system","ms-sql","pyqt6"],"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/samiyaalizaidi.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-10-08T17:25:36.000Z","updated_at":"2024-12-31T09:28:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"feac392b-a0b7-4fe5-ab43-fd6d869c7f76","html_url":"https://github.com/samiyaalizaidi/FinTrack","commit_stats":null,"previous_names":["samiyaalizaidi/fintrack"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samiyaalizaidi%2FFinTrack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samiyaalizaidi%2FFinTrack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samiyaalizaidi%2FFinTrack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samiyaalizaidi%2FFinTrack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samiyaalizaidi","download_url":"https://codeload.github.com/samiyaalizaidi/FinTrack/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242153374,"owners_count":20080491,"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":["database-management-system","ms-sql","pyqt6"],"created_at":"2024-11-16T02:17:15.687Z","updated_at":"2026-04-25T03:03:21.778Z","avatar_url":"https://github.com/samiyaalizaidi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FinTrack: A Comprehensive Accounting Management System :money_with_wings:\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/samiyaalizaidi/FinTrack/blob/main/Images/Logo.png\" alt=\"Centered Image\" width=\"300\"\u003e\n\u003c/p\u003e\n\nFinTrack is an advanced database-driven accounting system designed to streamline financial management\nprocesses for businesses of all sizes. The system provides a robust platform for managing financial\ntransactions, generating accurate reports, and ensuring compliance with accounting standards. Built using\na relational database, FinTrack enables secure storage, retrieval, and manipulation of financial data,\noffering users a reliable tool to monitor and manage their accounts.\n\nFinTrack is an ideal solution for businesses seeking to enhance their accounting processes, improve\nfinancial oversight, and ensure the accuracy of their financial data.\n\n## Repository Structure\n\n```\n│   .DS_Store\n│   FEATURES.md\n│   LICENSE\n│   README.md\n│\n├───docs\n├───images\n├───screens\n└───src\n    ├───database\n    └───interface\n        └───__pycache__\n```\n\n## Getting Started\n\n### Requirements\n- Python 3.x\n- Required Python packages (specified in `requirements.txt`)\n- QT Designer\n- ODBC Driver 17 for SQL Server for database connectivity\n- Microsoft SQL Server Management Studio (SSMS)\n\n### Installation\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/samiyaalizaidi/FinTrack.git\n   cd FinTrack\n   ```\n2. **Install dependencies**:\n   ```bash\n   pip install -r requirements.txt\n   ```\n3. **Set up the database in SSMS**:\n    - Install SQL Server Management Studio (SSMS)\n      -  Download and install from the [official Microsoft Website](https://learn.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver16)\n    - Open SQL Server Management Studio (SSMS).\n    - Create the database.\n      - Run ``src/database/script.sql`` in the ``master`` DB to create and populate the database.\n      - The database can also be created manually by right-clicking on ``Databases`` in the Object Explorer and selecting ``New Database``  \n    - Optional: If the DB was created manually, the dummy data can be populated by running the ``src/database/data.sql`` file in your newly created database.\n    - Ensure the database is correctly configured and available for connection.\n  \n4. **Update the database connection string in** ``src/interface/dashboard.py``:\n    \n      Replace the following code with your connection details:\n    \n      ```python\n      server = 'DESKTOP-6M55HJA\\\\SQLSERVER1'  # Update with your server name\n      database = 'FinTrack'  # Name of the FinTrack database\n      use_windows_authentication = True  # Set to True if using Windows Authentication\n      username = 'your_username'  # Specify a username if not using Windows Authentication\n      password = 'your_password'  # Specify a password if not using Windows Authentication\n      \n      # Create the connection string\n      if use_windows_authentication:\n          connection_string = f'DRIVER={{ODBC Driver 17 for SQL Server}};SERVER={server};DATABASE={database};Trusted_Connection=yes;'\n      else:\n          connection_string = f'DRIVER={{ODBC Driver 17 for SQL Server}};SERVER={server};DATABASE={database};UID={username};PWD={password}'\n      ```\n    - **Server**: Replace ``DESKTOP-6M55HJA\\\\SQLSERVER1`` with your server instance name.\n    - **Database**: Replace ``FinTrack`` with your database name if different.\n    - **Authentication**:\n        - For Windows Authentication: Set ``use_windows_authentication = True``.\n        - For SQL Server Authentication: Set ``use_windows_authentication = False`` and provide your username and password.\n      \n5. **Run the application**\n   ```bash\n   python src/interface/dashboard.py\n   ```\n\n## Features\nFinTrack is composed of multiple modules, each designed to address a specific aspect of accounting management. A detailed description of all features can be found in ``FEATURES.md``.\n\nKey highlights include:\n\n- **Intuitive Dashboard**: A central hub for accessing all features.\n- **Financial Transactions**: Track income, expenses, and other financial activities.\n- **Customizable Reports**: Generate detailed financial statements for any date range.\n- **Relational Database Integration**: Secure and efficient storage for your financial data.\n  \n## Screens and UI\nAll UI screens for the project are designed using ``.UI`` files, located in the ``/screens`` directory. These are integrated into the application through ``PyQt6``, ensuring a seamless and visually appealing interface.\n\n## Contributors\nThis project is developed and maintained by:\n- [Huzaifah Tariq Ahmed](https://github.com/huzaifahtariqahmed)\n- [Daniyal Rahim Areshia](https://github.com/Daniyal-R-A)\n- [Samiya Ali Zaidi](https://github.com/samiyaalizaidi)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamiyaalizaidi%2Ffintrack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamiyaalizaidi%2Ffintrack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamiyaalizaidi%2Ffintrack/lists"}