Skip to content

Instantly share code, notes, and snippets.

View ShilGen's full-sized avatar
🥷
Timelord of tech, juggling backend spells and marketing charms

Shilov Gennady ShilGen

🥷
Timelord of tech, juggling backend spells and marketing charms
View GitHub Profile
@Pavelob7
Pavelob7 / gist:fe4cc9a992c7274f55b7b25aab00fad3
Created March 2, 2025 12:49
Настройка CI/CD
# ШАГ 1: Настроить SSH-доступ к VPS
GitHub Actions будет деплоить проект через SSH, поэтому нам нужно создать ключ и добавить его на сервер.
## 1.1. Создать SSH-ключ
На локальном ПК выполни:
\```
ssh-keygen -t rsa -b 4096 -C "github-deploy-key"
\```
Нажми Enter несколько раз, не вводя пароль.
@MikyPo
MikyPo / wb_advco_fullstats.py
Last active January 19, 2025 01:36
Получение статистики рек.кампаний через Wildberries API
# 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