mirror of
https://gitflic.ru/project/dbi471/git-switch.git
synced 2025-07-01 09:45:25 +00:00
Add comments and LICENSE
This commit is contained in:
parent
944b9e318c
commit
d141a28d6a
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -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.
|
12
main.py
12
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
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user