{"id":15456422,"url":"https://github.com/codlocker/cse-531-project","last_synced_at":"2025-10-23T22:33:25.339Z","repository":{"id":200153462,"uuid":"704319694","full_name":"codlocker/CSE-531-Project","owner":"codlocker","description":"Decentralized Banking System","archived":false,"fork":false,"pushed_at":"2023-12-10T20:14:29.000Z","size":3444,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-10-08T02:50:53.451Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","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/codlocker.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,"publiccode":null,"codemeta":null}},"created_at":"2023-10-13T02:28:54.000Z","updated_at":"2024-02-12T03:32:40.000Z","dependencies_parsed_at":"2024-02-12T05:30:51.247Z","dependency_job_id":"b4924bd2-44e6-46dc-8618-d45be15c456b","html_url":"https://github.com/codlocker/CSE-531-Project","commit_stats":null,"previous_names":["codlocker/cse-531-project"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codlocker%2FCSE-531-Project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codlocker%2FCSE-531-Project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codlocker%2FCSE-531-Project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codlocker%2FCSE-531-Project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codlocker","download_url":"https://codeload.github.com/codlocker/CSE-531-Project/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246631454,"owners_count":20808679,"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":[],"created_at":"2024-10-01T22:28:42.950Z","updated_at":"2025-10-23T22:33:20.307Z","avatar_url":"https://github.com/codlocker.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## GENERAL SETUP FOR WINDOWS\n\n1. Install git (version **2.40.1.windows.1**}) [Windows](https://git-scm.com/download/win)\n2. Install python version **3.9.13** [Windows](https://www.python.org/downloads/). Ensure python is accessible via [Powershell](https://learn.microsoft.com/en-us/windows/python/beginners)\n3. Install pip version **23.2.1**``` py -m ensurepip --upgrade ``` [Source](https://pip.pypa.io/en/stable/installation/)\n4. Create a new [virtual environment](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/) for pip and install the following packages\n   - grpcio==1.59.0\n   - grpcio-tools==1.33.2\n   - protobuf==3.14.0\n5. Activate the newly created environment\n6. Clone the repository [CSE-531-Project](https://github.com/codlocker/CSE-531-Project)\n   - ```git clone https://github.com/codlocker/CSE-531-Project.git```\n\n## PROJECT 1\n---------------------------\n\n### RUN INSTRUCTIONS\n1. Run the command ```cd CSE-531-Project/Project 1``` after cloning\n2. Run the following the command the build the proto files: ```python -m grpc_tools.protoc -I . .\\BankService.proto  --python_out=. --grpc_python_out=.```\n3. The entry point of the code is through main.py\n   - -i 'Input file path'\n   - -o 'Output file path'\n   - Example command : python main.py -o output.json -i input.json\n  \n### RESULTS\n\n- On running the [input.json](./Project%201/input.json), the output is as follows : [output.json](./Project%201/output.json)\n- On running the [input1.json](./Project%201/input1.json), the output is as follows : [output1.json](./Project%201/output1.json)\n\n![Project1-result](Project1-Result.png)\n\n## PROJECT 2\n---------------------------\n\n### RUN INSTRUCTIONS\n1. Run the command ```cd CSE-531-Project/Project 2``` after cloning\n2. Run the following the command the build the proto files: ```python -m grpc_tools.protoc -I . .\\BankService2.proto  --python_out=. --grpc_python_out=.```\n3. The entry point of the code is through main.py and add input.json or any name as the input file \n   - Example command : ```python main.py input.json```\n\n4. To run the checker scripts. Note there are 3 files customer_output.json, branch_output.json and output.json\n   - ```python checker_part_1.py customer_output.json```\n   - ```python checker_part_2.py branch_output.json```\n   - ```python checker_part_3.py output.json```\n  \n### RESULTS\n\n- Running the checker_scipt for customers we get\n![Customer](Project-2-customer-checker.png)\n\n- Running the checker_scipt for branch we get\n![Branch](Project-2-branch-checker.png)\n\n- Running the checker_scipt for overall we get\n![Overall](Project-2-overall-checker.png)\n\n\n## PROJECT 3\n---------------------------\n\n### RUN INSTRUCTIONS\n1. Run the command ```cd CSE-531-Project/Project 3``` after cloning\n2. Run the following the command the build the proto files: ```python -m grpc_tools.protoc -I . .\\BankService3.proto  --python_out=. --grpc_python_out=.```\n3. The entry point of the code is through main.py and add input.json or any name as the input file \n   - Example command : ```python main.py input.json```\n\n4. To run the checker scripts. Note the file is output.json\n   - ```python checker.py output.json```\n  \n### RESULTS\n\n- Running the checker_scipt for small input\n![Customer](Project3-input_checker.png)\n\n- Running the checker_scipt for big input\n![Branch](Project3-input_big_checker.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodlocker%2Fcse-531-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodlocker%2Fcse-531-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodlocker%2Fcse-531-project/lists"}