{"id":29624992,"url":"https://github.com/maglovskinenad/hopplo","last_synced_at":"2026-05-19T03:10:45.652Z","repository":{"id":302424566,"uuid":"989574026","full_name":"maglovskiNenad/hopplo","owner":"maglovskiNenad","description":"A simple way to send digital tips\"","archived":false,"fork":false,"pushed_at":"2025-07-08T21:04:17.000Z","size":186,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-09T21:05:48.649Z","etag":null,"topics":["customtkinter","macos","project","pytho"],"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/maglovskiNenad.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,"zenodo":null}},"created_at":"2025-05-24T11:30:48.000Z","updated_at":"2025-07-08T21:25:16.000Z","dependencies_parsed_at":"2025-07-02T10:39:24.925Z","dependency_job_id":"16391378-f287-4803-9472-85b1667bc5f9","html_url":"https://github.com/maglovskiNenad/hopplo","commit_stats":null,"previous_names":["maglovskinenad/hopplo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maglovskiNenad/hopplo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maglovskiNenad%2Fhopplo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maglovskiNenad%2Fhopplo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maglovskiNenad%2Fhopplo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maglovskiNenad%2Fhopplo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maglovskiNenad","download_url":"https://codeload.github.com/maglovskiNenad/hopplo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maglovskiNenad%2Fhopplo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266248501,"owners_count":23899056,"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":["customtkinter","macos","project","pytho"],"created_at":"2025-07-21T06:06:16.201Z","updated_at":"2026-05-19T03:10:45.647Z","avatar_url":"https://github.com/maglovskiNenad.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TIPPLY \n\nAutomatically read and clean exported CSV files with employees’ working hours. \nThe app detects and handles different file encodings using the Chardet library, \nsupports a drag-and-drop interface for intuitive file uploads, and extracts only \nconfirmed work hours (‘Bestätigte Arbeitszeit’) for accurate calculations. It also loads daily \ntip amounts from a separate tab-separated file, matches each employee’s working hours \nwith the relevant day’s tip amount, calculates fair tip distribution proportionally based on hours worked, and presents the final results in a clean, \nformatted table inside the app.\n\n# Project Description\n\nThis Python application automatically reads and processes exported CSV files containing employees’ working hours to fairly distribute tips based on actual hours worked.\n\nKey features include:\n\n•\tDetects and handles different file encodings using the Chardet library.\n\n•\tIntuitive drag-and-drop interface for file uploads.\n\n•\tExtracts only confirmed work hours (‘Bestätigte Arbeitszeit’) for accurate calculations.\n\n•\tLoads daily tip amounts from a separate tab-separated file.\n\n•\tMatches each employee’s working hours with the corresponding daily tip amount.\n\n•\tCalculates fair tip distribution proportionally based on hours worked.\n\n•\tPresents the final results in a clean, formatted table within the app.\n\nThis project enables quick and precise tip calculations for teams, eliminating manual errors and saving time.\n\nInstallation\n\n1. Prerequisites\n\t•\tPython ≥ 3.10\n\t•\tpip (Python package manager)\n\n2. Clone the repository\n\n\t     git clone https://github.com/username/tipply_app.git\n\t     cd hopplo\n\n3. Create a virtual environment (recommended)\n\t\t\t\t\t\t\t\t\t\n\t\tpython -m venv venv\n\t\tsource venv/bin/activate   # Linux/macOS\n\t\tvenv\\Scripts\\activate      # Windows\n\n4. Install dependencies\n\n\t\tpip install -r requirements.txt\n\n## Release build\n\nPrebuilt desktop packages can be attached to GitHub Releases.\n\nLocal release build:\n\n```bash\npip install -r requirements-build.txt\npyinstaller --clean hopplo.spec\n```\n\nThe packaged app will be created in `dist/hopplo/`.\n\nAutomated GitHub Release build:\n\n1. Push a tag like `v1.0.1`\n2. GitHub Actions workflow `Build Release` builds packages for Linux, Windows, and macOS\n3. The generated archives are uploaded to the matching GitHub Release automatically\n\n## Usage\n\n1.\tRun the application:\n\t\t\t\t\t\t\t\n\t\tpython main.py\n\n2.\tUpload the CSV file containing employees’ working hours using drag-and-drop or file browsing.\n3.\tUpload the tab-separated file with daily tip amounts.\n4.\tThe app will automatically:\n\n\t•\tClean and format the data\n\n\t•\tMatch working hours with daily tips\n\n\t•\tCalculate proportional tip distribution\n\n5.\tResults are displayed in a clear table, ready to export or print.\n \n## Project Structure\n\n\ttipply_app/\n\t│\n\t├─ app/                     # Main application package\n\t│   ├─ images/              # Image assets used in the app\n\t│   ├─ config.py            # Configuration settings\n\t│   ├─ home_page.py         # Home page UI logic\n\t│   ├─ main.py              # Entry point of the application\n\t│   ├─ popup.py             # Popup dialogs and messages\n\t│   ├─ settings.py          # Settings page logic\n\t│   ├─ tests.py             # Unit tests for the app\n\t│   ├─ trinkgeld_actions.py # Tip calculation and data processing logic\n\t│   ├─ update.py            # Update checking logic\n\t│   ├─ version.txt          # Current app version\n\t│   └─ warning_msg.py       # Warning and error messages\n\t│\n\t├─ .gitignore               # Git ignore rules\n\t├─ LICENSE                  # MIT License file\n\t├─ README.md                # Project documentation\n\t└─ requirements.txt         # Python dependencies\n\n\n## License\n\nThis project is licensed under the MIT License – feel free to use, modify, and distribute.\n\n## Contributing\n\nWe welcome contributions! To contribute:\n1.\tFork the repository\n2.\tCreate a new branch for your feature:\n\n\t\tgit checkout -b feature/new-feature\n\n3.\tMake your changes and test thoroughly\n4.\tSubmit a Pull Request with a clear description\n\nContribution guidelines:\n\n•\tUse black or flake8 for code formatting\n\n•\tAdd tests for new functionality\n\n•\tWrite clear, readable code with comments where necessary\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaglovskinenad%2Fhopplo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaglovskinenad%2Fhopplo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaglovskinenad%2Fhopplo/lists"}