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
| import telebot | |
| import os | |
| from config import * | |
| from flask import Flask, request | |
| server = Flask(__name__) | |
| @server.route('/'+ TOKEN, methods=['POST']) | |
| def getMessage(): | |
| request_object = request.stream.read().decode("utf-8") |
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
| <template> | |
| <v-container> | |
| <v-row v-for="j in 100" :key="j" :class="j === 1 ? '' : 'mt-6'" no-gutters> | |
| <v-col v-for="i in j + 1" :key="i"> | |
| <v-card class="pa-5" outlined> | |
| {{ i }} of {{j + 1 }} | |
| </v-card> | |
| </v-col> | |
| </v-row> | |
| </v-container> |
NewerOlder