• Fopen segmentation error?

    vesper-bot
    @vesper-bot
    Любитель файрволлов
    free(fp);
    fclose(fp);
    Вот тут ошибка, сначала fclose, потом free.
    Ответ написан
    Комментировать
  • Как определить разное поведение Бота Telegram для разных пользователей?

    @Stormx480
    Python Backend Developer
    У тебя есть два бота. Бот А - для господина Админа, Бот Б - для бом...холопов.
    Вынеси каждый из ботов в отдельный файл, можешь так и назвать.
    В мэйн скрипте (где вебхук ставишь) сделай в самом начале проверку, можешь через декортатор
    If message.id == 'айди твоего админа':
    botadmin.Bot()
    else:
    botbomzh.Bot()

    Что то типо такого, думаю ты понял.
    Ответ написан
    Комментировать
  • Flask UnicodeDecodeError 'UTF-8' при запуске сервера?

    sergey-gornostaev
    @sergey-gornostaev Куратор тега Python
    Седой и строгий
    Проблема в том, что имя вашего компьютера содержит кириллические символы.

    Hostnames are composed of series of labels concatenated with dots, as are all domain names. For example, "en.wikipedia.org" is a hostname. Each label must be between 1 and 63 characters long, and the entire hostname (including the delimiting dots but not a trailing dot) has a maximum of 253 ASCII characters.

    The Internet standards for protocols mandate that component hostname labels may contain only the ASCII letters 'a' through 'z' (in a case-insensitive manner), the digits '0' through '9', and the hyphen ('-'). The original specification of hostnames in RFC 952, mandated that labels could not start with a digit or with a hyphen, and must not end with a hyphen. However, a subsequent specification (RFC 1123) permitted hostname labels to start with digits. No other symbols, punctuation characters, or white space are permitted.
    Ответ написан
    Комментировать