This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ШАГ 1: Настроить SSH-доступ к VPS | |
GitHub Actions будет деплоить проект через SSH, поэтому нам нужно создать ключ и добавить его на сервер. | |
## 1.1. Создать SSH-ключ | |
На локальном ПК выполни: | |
\``` | |
ssh-keygen -t rsa -b 4096 -C "github-deploy-key" | |
\``` | |
Нажми Enter несколько раз, не вводя пароль. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Developed by MikyPo | |
# More code for DA here: https://dzen.ru/mikypo | |
# Библиотеки | |
import requests | |
import json | |
import time | |
import pandas as pd | |
import datetime | |
import locale |