├── README.md ├── docker-compose.yml └── microservice ├── Dockerfile ├── bcs_parser.py ├── config.py ├── main.py ├── rss_parser.py ├── telegram_parser.py ├── user_agents.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /microservice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/Dockerfile -------------------------------------------------------------------------------- /microservice/bcs_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/bcs_parser.py -------------------------------------------------------------------------------- /microservice/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/config.py -------------------------------------------------------------------------------- /microservice/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/main.py -------------------------------------------------------------------------------- /microservice/rss_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/rss_parser.py -------------------------------------------------------------------------------- /microservice/telegram_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/telegram_parser.py -------------------------------------------------------------------------------- /microservice/user_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/user_agents.py -------------------------------------------------------------------------------- /microservice/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdies/news_aggregator/HEAD/microservice/utils.py --------------------------------------------------------------------------------