Skip to content

Commit

Permalink
Merge pull request #6 from surenpoghosian/feature/readme
Browse files Browse the repository at this point in the history
[feature/readme] add readme filestructure tree modifications
  • Loading branch information
surenpoghosian authored Jul 23, 2024
2 parents 80ec6fa + 4ecb000 commit ceb7f77
Showing 1 changed file with 44 additions and 25 deletions.
69 changes: 44 additions & 25 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,51 @@ The Scraper project is designed to demonstrate the practical implementation of v

```
scraper/
├── src/
│ ├── factories/
│ │ ├── ScrapersFactory.ts
│ │ ├── ScrapableFactory.ts
│ │ ├── PathBuilderFactory.ts
│ │ └── ScrapeValidatorFactory.ts
│ ├── builders/
│ │ └── PathBuilder.ts
│ ├── singleton/
│ │ └── Scheduler.ts
│ ├── scrapers/
│ │ ├── BaseScraper.ts
│ │ └── PuppeteerScraper.ts
│ ├── interfaces/
│ │ └── IScraper.ts
│ ├── configs/
│ │ ├── types.ts
│ │ └── constants.ts
│ ├── utils/
│ │ ├── sleep.ts
│ │ └── getRandomInterval.ts
│ ├── main.ts
├── tests/
│ └── ...
├── README.md
├── src
│ ├── PathBuilderFactory
│ │ ├── index.ts
│ │ └── products
│ │ ├── ListAm.ts
│ │ └── MobileCentre.ts
│ ├── Scheduler
│ │ └── index.ts
│ ├── ScrapableFactory
│ │ ├── index.ts
│ │ └── products
│ │ ├── ListAm.ts
│ │ └── MobileCentre.ts
│ ├── ScrapeValidatorFactory
│ │ ├── index.ts
│ │ └── products
│ │ ├── ListAm.ts
│ │ └── MobileCentre.ts
│ ├── ScrapersFactory
│ │ ├── index.ts
│ │ └── products
│ │ ├── Https.ts
│ │ └── Puppetter.ts
│ ├── __tests__
│ │ └── pathBuilder.test.ts
│ ├── configs
│ │ ├── constants.ts
│ │ └── types.ts
│ ├── db
│ │ ├── MongoCRUD.ts
│ │ └── MongoDBConnection.ts
│ ├── index.ts
│ └── utils
│ ├── getDateTime.ts
│ ├── getRandomInterval.ts
│ ├── request.ts
│ └── sleep.ts
├── tsconfig.json
├── README.MD
├── eslint.config.mjs
├── jest.config.cjs
├── package-lock.json
└── package.json
15 directories, 29 files
```

## Getting Started
Expand Down

0 comments on commit ceb7f77

Please sign in to comment.