Wyko
Wyko
# Problem Currently, when the application runs and is interrupted, there is no code to gracefully exit execution. Especially when scanning with subprocesses, as they have a tenancy to stick...
# Objective All parts of the program need more tests. Optimal test coverage should reach over 80%. # Concerns A lot of the application depends on a populated database or...
# Objective For testing purposes, we should have fully populated structures to work with. For this, we need helper functions which create on-demand, populated interfaces and devices, as well as...
# Problem Netcrawl currently polls devices properly, but once the data is in the database there's no convenient way to interact with it outside of an SQL query # Objective...
I think there are extra SQL calls in there that can be very seriously trimmed down. Low priority.
# Objective When performing a scan with a pre-existing database, the application will identify pre-existing devices and update them rather than adding duplicate entries. # Possible Implementation After polling a...
When the error is raised, it looks like this: ``` File "/usr/local/lib/python3.9/site-packages/kafka/consumer/fetcher.py", line 857, in _parse_fetched_data | raise Errors.TopicAuthorizationFailedError(set(tp.topic)) | kafka.errors.TopicAuthorizationFailedError: [Error 29] TopicAuthorizationFailedError: {'c', 's', 't', 'n', 'b', 'u',...
Adding a textbox to a tab view leads to `AttributeError: 'CTkTextbox' object has no attribute '_x_scrollbar'`. Minimal example: ``` import customtkinter as ctk def create_tab_view(parent): tv = ctk.CTkTabview(parent, height=0) tv.grid(sticky="nsew")...
Using `set_config` with a plugin does not work. You must call it with an alias in order to get it to work. See below: ``` from aiocache import caches, SimpleMemoryCache,...