driscoll42 / ebayMarketAnalyzer

Scrape all eBay sold listings to determine average/median pricing, plot listings over time with trend lines, and extract to excel
195 stars 26 forks source link

Move the filter search conditions from the main query into a parameter #25

Closed driscoll42 closed 3 years ago

driscoll42 commented 3 years ago

Is your feature request related to a problem? Please describe. Right now when searching the main query is forced to be similar to '5950X -image -jpeg -img -picture -pic -jpg' to remove false positives. this makes the final excel outputs be in the form of "5950X -image -jpeg -img -picture -pic -jpg.xlsx" which is cumbersome

Describe the solution you'd like It would be more legible and flexible to make the filters a parameter like ['image', 'jpeg', 'img', 'picture', 'pic', 'jpg'] to make the final outputs cleaner and to make it easier to add more filters to runs without needing to update each one. Functionality should still be allowed to directly add the -condition to the query if needed. For example RX 6800 -XT would be important to keep in the main query itself.

Describe alternatives you've considered Use as currently working.

Additional context None.