Skip to content

Commit

Permalink
Started implementing NotebooksbilligerPriceSearchEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Jan 21, 2022
1 parent a758132 commit f0a25ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { SearchEngineBase } from '..';
import { ISearchResult } from '../../Interfaces';

export class NotebooksbilligerPriceSearchEngine extends SearchEngineBase {
async search(searchTerm: string): Promise<any> {
const baseUrl = 'https://www.notebooksbilliger.de';
const $ = await this.requestWebsite(`${baseUrl}/produkte/${encodeURIComponent(searchTerm)}`);
}
}
1 change: 1 addition & 0 deletions src/BL/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ export * from './PriceSearchEngines/SearchEngine';
export * from './PriceSearchEngines/CyberportPriceSearchEngine';
export * from './PriceSearchEngines/MediMaxPriceSearchEngine';
export * from './PriceSearchEngines/MindfactoryPriceSearchEngine';
export * from './PriceSearchEngines/NotebooksbilligerPriceSearchEngine';

0 comments on commit f0a25ed

Please sign in to comment.