Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zezs/app2_flatmate_bill_generator
https://github.com/zezs/app2_flatmate_bill_generator
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zezs/app2_flatmate_bill_generator
- Owner: zezs
- Created: 2022-10-09T12:48:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-10T19:59:46.000Z (about 2 years ago)
- Last Synced: 2023-08-14T01:44:47.320Z (over 1 year ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# App2_Flatmate_Bill_Generator
Title: Flatmates Bill
-----------------------------------------------------------------------------------------------------------
Description: An app that takes
- I/p:
(i) Total monthly rent amount
(ii) Particular period: Month and year(to be sure of 30 or 31 days)
(iii) Name and days each flatmate resided in the house for that monthO/P:
(i) Returns how much each flatmate has to pay(depending on number of days they resided)
(ii) It also generates Bill split in PDF format
------------------------------------------------------------------------------------------------------------
Listing Nouns from problem statement to design Oops(Class, objects and its attributes):
App, Bill, amount, period// Tentative
Bill -> Amount, Period
Flatmate -> Name, Days, Pay(days, totalBillForThatMonth)
PDFReport -> filename, generate(Bill, Flatmates1, Flatmates2, totalBillForThatMonth1, totalBillForThatMonth2 )
-------------------------------------------------------------------------------------------------------------