mkdir my_project && cd my_project
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
| /** | |
| * ════════════════════════════════════════════════════════════════════════ | |
| * WB API - Полная интеграция для Google Sheets | |
| * ════════════════════════════════════════════════════════════════════════ | |
| * | |
| * ИНСТРУКЦИЯ ПО УСТАНОВКЕ: | |
| * 1. Откройте Google Sheets → Расширения → Apps Script | |
| * 2. Вставьте этот код в редактор | |
| * 3. Сохраните проект | |
| * 4. Вернитесь в Google Sheets - появится меню "WB API" |
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
| function createSheetsFromTemplate() { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var templateSheet = ss.getSheetByName('Шаблон'); | |
| var dataSheet = ss.getSheetByName('Sheet3'); | |
| if (!templateSheet) { | |
| Logger.log('Лист "Шаблон" не найден!'); | |
| return; | |
| } | |
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
| from aiogram import Bot, Dispatcher, executor, types | |
| from aiogram.types import InlineKeyboardButton, InlineKeyboardMarkup | |
| from aiogram.utils.exceptions import BotBlocked | |
| import asyncio | |
| import requests | |
| bot = Bot(token="") | |
| dp = Dispatcher(bot) | |
| TEMPLATES = { |
🎯 Цель: Научиться создавать интерактивные веб-страницы с помощью Vue.js:
- Установить Vue
- Создать страницу
- Переходить между страницами
- [Отправлять запросы на сервер](https://gist.github.com/ShilGen/57a141f71df9166c0a58da76ac63b015#%
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 |
Пример структуры проекта:
project-root/
├── .github/
│ └── workflows/
│ └── python-tests.yml
├── tests/
│ ├── test_example.py
│ └── test_another.py
├── requirements.txt
NewerOlder
