16 Commits

Author SHA1 Message Date
Christopher Ahern
2758be8680 Fix/pylint cleanup (#8)
Some checks are pending
CI / build (3.10) (push) Waiting to run
CI / build (3.8) (push) Waiting to run
CI / build (3.9) (push) Waiting to run
* Fix pylint warnings across all 24 Python files in web_server

- Add module, class, and function docstrings (C0114, C0115, C0116)
- Fix import ordering: stdlib before third-party before local (C0411)
- Replace wildcard imports with explicit named imports (W0401)
- Remove trailing whitespace and add missing final newlines (C0303, C0304)
- Replace dict() with dict literals (R1735)
- Remove unused imports and variables (W0611, W0612)
- Narrow broad Exception catches to specific exceptions (W0718)
- Replace f-string logging with lazy % formatting (W1203)
- Fix variable naming: UPPER_CASE for constants, snake_case for locals (C0103)
- Add pylint disable comments for necessary global statements (W0603)
- Fix no-else-return, simplifiable-if-expression, singleton-comparison
- Fix bad indentation in stripe.py (W0311)
- Add encoding="utf-8" to open() calls (W1514)
- Add check=True to subprocess.run() calls (W1510)
- Register Celery task modules via conf.include

* Update `package-lock.json` add peer dependencies
2026-02-07 20:57:28 +00:00
white
87794b8f33 FIX: streams was returning users, fixed 2025-03-08 17:55:08 +00:00
white
eb0047903a UPDATE: fixed search bar algorithm (again) 2025-03-07 09:12:10 +00:00
white
ead61bbabd FEAT: Added vods to search bar (needs to be integrated with search bar 2025-03-06 17:17:32 +00:00
white
00b491ac02 FIX: made search algorithm work good 2025-03-06 16:45:46 +00:00
white
089eae46a4 UPDATE: removed unused search routes 2025-03-06 14:02:27 +00:00
white
9c89999ca9 UPDATE: increased number of search results to 4 2025-03-05 15:47:28 +00:00
white
34687671f7 UPDATE: rolled back search bar algorithm for now 2025-03-03 20:54:35 +00:00
white
51c1b3160f UPDATE: changed search bar functionality (will improve with more users) 2025-03-02 16:28:45 +00:00
Chris-1010
cd7ea461a8 UPDATE: Style ResultsPage;
UPDATE: Improve components;
2025-02-22 20:25:45 +00:00
Chris-1010
d0aa591116 FIX: Stream routing on ResultsPage; 2025-02-16 23:57:57 +00:00
white
46361c7960 UPDATE: Tidied up search bar and made changes to the specific search routes 2025-02-11 16:57:09 +00:00
white
1a572cc172 FEAT: Implemented working search bar using FTS and Ranking 2025-02-11 16:38:46 +00:00
JustIceO7
e6b8ad9b9e MAJOR: Restructured backend Flask application moved all non-routes into utils, renamed routes to not prefix get, created middleware.py to replace utils.py within blueprints 2025-02-08 14:35:46 +00:00
white
1841e08a09 UPDATE: Added database functionality for search bar, still need to integrate with webapp 2025-02-06 18:57:21 +00:00
white
4efef9d0c9 FEAT: Added a search bar feature (to be integrated with database
UPDATE: Removed html pages, as they were no longer being used
2025-02-06 18:33:38 +00:00