feat: add check for published docker images
Closes #102 (closed)
Now, in python.py we have additional method get_all_python_docker_tags that return a a list of all published Python docker images tags.
Docker hub api supports ?page_size=100 as a max size so had to implement simple paging mechanism.
As a result, we now invoke get_all_python_docker_tags inside all_python_versions to get a list of all tags and store in python_docker_tags variable. In turn the all_python_versions now return list of parse(name_match.group(1)) only if name_match.group(1) in python_docker_tags .