-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BadgeWatch Search through Python CLI #2
Comments
Currently, the algorithm needs improvement in data storage, easy usage, adding an improved grading system, and allowing more parameters in the search options. Below is the program in its first stage as I have it on my computer: import xlrd Opening and reading the Excel filefile_location = (r"C:\Users\jalbe\OneDrive\Documents\File_IN\2015-2020 CIP cases - Badge Watch.xlsx") Getting total number of officerstotal_officers = [] Setting up variables and listsgrading_list = [[0 for i in range (13)] for j in range (len(total_officers)+1)] # Number of valid rows (rows with badge ID) Filtration and data collection algorithmfor row in range (1, row_num):
print(no_BID, " Complaints have no Badge ID") Maintenance check#print(len(total_officers)) Searching for specific officer (User inputed)repeat = True while (repeat):
|
Notice: As a team, we're currently undergoing issues getting Django ready on our computers. We plan to use Docker to get the environment ready and our code together. |
As an end-user, I want to be able to search for cops by any parameters and see charts
based on the data to help give me a quick context of the data.
Challenge - Jose Hernandez has set this up in Python but is working on setting this up on the landing page.
Suggestion - Use Django web-based framework to host the front-end application
The text was updated successfully, but these errors were encountered: