diff --git a/core/README.md b/core/README.md index 30d74d2..cf2bf55 100644 --- a/core/README.md +++ b/core/README.md @@ -1 +1,20 @@ -test \ No newline at end of file +# IMDB-SPIDER :: CORE + +_This is the core of IMDB-Spider._ + +The main ideology of this project is based on Tasks and Workers that perform given tasks in parallel. + +The [Task](core/src/main/java/ru/bvn13/imdbspider/spider/tasker/Task.java) contains everything need to grub any IMDB object. + +But tasks and workers would be nothing without their assistants. + +They are: + +- [Extractors](core/src/main/java/ru/bvn13/imdbspider/spider/extractor) +- [Processors](core/src/main/java/ru/bvn13/imdbspider/spider/processor) +- [Composers](core/src/main/java/ru/bvn13/imdbspider/spider/composer) + + + + +