diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..65c093b --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 SantaSpeen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/main.py b/main.py index e374753..671e44b 100644 --- a/main.py +++ b/main.py @@ -7,21 +7,23 @@ Программа была отрефакторена: @SantaSpeen """ +# Типы. Используется для <того, что бы тебя любило IDE>. +from typing import NoReturn, Union + # Удобная и встроенная в Python библиотека логирования. Подробнее: https://docs.python.org/3.10/library/logging.html import logging +# Встроенные библиотеки. Нужны для некоторых функций прогрммы. import os import sys import time # Библиотека для работы с аргументами. Подробнее: https://click.palletsprojects.com/en/8.0.x -from typing import NoReturn, Union - import click -# Библиотека для работы c GitHub API +# Библиотека для работы c GitHub API. Подробнее: https://github.com/PyGithub/PyGithub from github import Github, AuthenticatedUser, PaginatedList -# Библиотека для работы с Gitflic API +# Библиотека для работы с Gitflic API. Подробнее: https://github.com/SantaSpeen/gitflic from gitflic import GitflicAuth, Gitflic -# Библиотека для работы с git +# Библиотека для работы с git. Подробнее про систему git: https://habr.com/ru/post/588801/ from git import Repo