Budget: 550 UAH Deadline: 2 days
Good day, interested in your project, ready to perform similar tasks. Need to clarify more details about the functionality that should be.
Budget: 550 UAH Deadline: 2 days
Good day, interested in your project, ready to perform similar tasks. Need to clarify more details about the functionality that should be.
Budget: 1000 UAH Deadline: 1 day
Hello.
I develop Telegram bots in NodeJS. Ready to start. Write me, let's discuss.
Budget: 500 UAH Deadline: 1 day
The code is already prepared, all that's left is to set up the bot through Bot Father.
Budget: 1000 UAH Deadline: 2 days
Good day, ready to create a bot according to your brief, quickly and qualitatively, and will be able to deliver the project to you soon, waiting for your message to discuss one detail.
Budget: 20000 UAH Deadline: 1 day
Good day!
I am ready to help you with the implementation of this project.
I look forward to the opportunity to clarify all the details and start working on it!
Budget: 6000 UAH Deadline: 3 days
Maxim, hello!
I suggest creating a Telegram bot based on SendPulse. It is also possible to connect GPT-4o and set up a prompt that will respond to user requests independently, if necessary, you will be able to engage in dialogue on behalf of the bot.
Budget: 2000 UAH Deadline: 2 days
Good day.
I can take on the implementation of your project.
When users write to the bot, it forwards these messages to you. If you reply to a specific message from the bot, the bot will send your response to the sender of the original message.
Budget: 500 UAH Deadline: 1 day
Good day! There is a ready solution, my own Telegram-CRM with a convenient interface, precisely for this purpose.
Several people can sit in the chat and reply.
Budget: 1500 UAH Deadline: 3 days
Hello!
I have a solution ready for you! I have already created a bot almost identical for feedback in a large corporation. I will be very happy to help you!
Looking forward to cooperating with you! Feel free to contact me via direct messages 😉
Budget: 2500 UAH Deadline: 2 days
Congratulations, I develop Telegram bots on NodeJS with over 2 years of experience. Messages will be coming to you on the bot, and you will have the functionality to switch to personal messages or we will make it so that you can reply to messages and they will be forwarded to the user on behalf of the bot (like in the bot from Freelance Hunt).
Budget: 3500 UAH Deadline: 3 days
Вітаю! Потрібно більше детальне ТЗ. Від себе можу запропонувати наступне:
1. Команду для перегляду всіх повідомлень від користувача
2. Команду для видалення повідомлень.
3. Команду для відповіді на конкретне повідомлення
4. Команду для відправки шаблонних відповідей
5. Команду для перегляду статистики
6.Команду для встановлення статусу “Не турбувати”
7. Командудля автоматичного відповіді
Типу такого:
from telegram import Update
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters, CallbackContext
# Словник для зберігання повідомлень
messages = {}
def start(update: Update, context: CallbackContext) -> None:
update.message.reply_text('Привіт! Я ваш бот.')
def echo(update: Update, context: CallbackContext) -> None:
# Зберігаємо повідомлення від користувача
user = update.message.from_user.username
if user not in messages:
messages[user] = []
messages[user].append(update.message)
update.message.reply_text(update.message.text)
def reply(update: Update, context: CallbackContext) -> None:
# Відповідаємо на останнє повідомлення від обраного користувача
user = update.message.from_user.username
if user in messages and messages[user]:
last_message = messages[user][-1]
last_message.reply_text(update.message.text)
else:
update.message.reply_text("Немає повідомлень для відповіді.")
def view_messages(update: Update, context: CallbackContext) -> None:
# Переглядаємо всі повідомлення від користувача
user = update.message.from_user.username
if user in messages:
for message in messages[user]:
update.message.reply_text(message.text)
else:
update.message.reply_text("Немає повідомлень від цього користувача.")
def delete_messages(update: Update, context: CallbackContext) -> None:
# Видаляємо всі повідомлення від користувача
user = update.message.from_user.username
if user in messages:
del messages[user]
update.message.reply_text("Повідомлення видалено.")
else:
update.message.reply_text("Немає повідомлень для видалення.")
def main() -> None:
updater = Updater("TOKEN", use_context=True)
dispatcher = updater.dispatcher
dispatcher.add_handler(CommandHandler("start", start))
dispatcher.add_handler(CommandHandler("reply", reply))
dispatcher.add_handler(CommandHandler("view_messages", view_messages))
dispatcher.add_handler(CommandHandler("delete_messages", delete_messages))
Budget: 1000 UAH Deadline: 3 days
Hello, I can create a bot for "support/suggestions". I started doing something similar for myself.
Budget: 500 UAH Deadline: 2 days
Hello, I can implement your bot quickly and qualitatively
I will be happy to help you in private messages
Budget: 600 UAH Deadline: 3 days
Good day! Your project looks very promising. Ready to start work and complete it at the highest level.
Budget: 500 UAH Deadline: 1 day
Good day.
Interested in your project.
Would like to discuss cooperation terms and full project brief in private messages.
Write to me, looking forward to collaborating.
5 proposals 14:52
88 proposals 10:43
67 proposals 4 August
68 proposals 4 August
Python 71 proposals 31 July