Budget: 2500 UAH Deadline: 2 days
Hello. I have extensive experience in developing Telegram bots. I am ready for collaboration.
Automation of adding job vacancies from our Telegram channel to Google Sheets. The bot reads new posts and adds them to Google Sheets.
📌 Goal:
• Automatically extract job vacancies from Telegram posts.
• Fill Google Sheets without manual input.
• Create a convenient system for storing and updating data.
2️⃣ Technical implementation (Python + Google Sheets API) or your option
• Telegram Bot API (so the bot can read messages). 7630111878:AAHfAldPAsF7kq2wGVbjzsiOgB2jBLe0gjM
• Google Sheets API (to write job vacancies to the table by fields) https://docs.google.com/spreadsheets/d/1cxY153GPVJsum_Dz5T4yuAQL10yyXOqfTxif6xK1Jpo/edit?usp=sharing
• Python (script for processing job vacancies).
• Heroku / VPS (so the bot works 24/7).
3️⃣ Bot operation algorithm
1️⃣ Reads new job vacancies from the channel. Add a link to the post in TG in the table.
2️⃣ Extracts data (location, salary, schedule, requirements, etc.).
3️⃣ Writes them to Google Sheets.
4️⃣ Sends a notification to the manager about the new vacancy.
4️⃣ Code for Telegram bot (Python)
import telebot
import gspread
from oauth2client.service_account import ServiceAccountCredentials
# Connecting to Google Sheets API
scope = ["https://spreadsheets.google.com/feeds", "https://www.googleapis.com/auth/drive"]
creds = ServiceAccountCredentials.from_json_keyfile_name("credentials.json", scope)
client = gspread.authorize(creds)
sheet = client.open("Table_Name").sheet1 # Select the sheet
# Connecting to Telegram API
TOKEN = "YOUR_BOT_TOKEN"
bot = telebot.TeleBot(TOKEN)
# Handler for new job vacancies
@bot.channel_post_handler(func=lambda message: True)
def handle_message(message):
text = message.text
lines = text.split("\n")
# Extracting data from the post
vacancy = {
"vacancy": lines[0],
"location": lines[1].split(": ")[1] if "Location" in lines[1] else "",
"salary": lines[2].split(": ")[1] if "Salary" in lines[2] else "",
"schedule": lines[3].split(": ")[1] if "Schedule" in lines[3] else "",
"requirements": lines[4].split(": ")[1] if "Requirements" in lines[4] else "",
"link": f"https://t.me/c/{message.chat.id}/{message.message_id}"
}
# Adding to the table
sheet.append_row([vacancy["vacancy"], vacancy["location"], vacancy["salary"], vacancy["schedule"], vacancy["requirements"], vacancy["link"]])
bot.send_message(message.chat.id, "✅ Vacancy added to the table!")
# Starting the bot
bot.polling()
1️⃣ Create a bot in → copy the API token.
2️⃣ Create a Google Sheet with columns: Vacancy, Location, Salary, Schedule, Requirements, Link.
3️⃣ Create a service account in Google Cloud → get credentials.json.
4️⃣ Deploy the bot on a server (Heroku / VPS).
6️⃣ What will this give?
Budget: 2500 UAH Deadline: 2 days
Hello. I have extensive experience in developing Telegram bots. I am ready for collaboration.
Budget: 10000 UAH Deadline: 7 days
Good day.
I am ready to take on your project.
I can develop such a bot for you using no-code/low-code tools and node.js (if needed)
Message me privately, we will discuss all the details and find the best solution for you.
Budget: 1000 UAH Deadline: 1 day
Good day, I have extensive experience in developing Telegram bots, I am ready to start working right now and complete it quickly, and most importantly, with quality.
Budget: 1000 UAH Deadline: 1 day
Hello!
I am interested in your project, I have extensive experience in automating/emulating user actions (JavaScript, Selenium, Playwright), asynchronous/multithreaded parsing (Requests, WebSockets, HTTPX, BS4), data processing (Openpyxl, JSON, MySQL, MongoDB), and developing Telegram bots of varying complexity (Telethon, Pyrogram, Aiogram).
Contact me to discuss the details and deadlines for this project!
Budget: 2000 UAH Deadline: 3 days
Hello. Ready to develop
Write to me in private messages to discuss the details
Budget: 5000 UAH Deadline: 7 days
Hello! 😊
I am ready to develop a bot for you that will automatically read job postings from your channel, extract the necessary data (title, location, salary, schedule, requirements) from the posts, and save it in a Google Sheet via the Google Sheets API. Additionally, the bot will send notifications to the manager about new job postings, which will significantly simplify the work.
Technologies used:
Python – the main programming language.
Telebot/aiogram – for creating the Telegram bot.
gspread and oauth2client – for integration with the Google Sheets API.
Heroku/VPS – to ensure the bot operates continuously 24/7.
I would be happy to discuss your project and deadlines in detail. I look forward to your response!
Best regards,
Andriy!)
Budget: 1000 UAH Deadline: 3 days
Hello, I professionally work with bots in Telegram!
I have extensive experience with telebot, aiogram, telegram API
I am waiting for your feedback :)
Budget: 1000 UAH Deadline: 3 days
Good afternoon
For the functionality you described, there is a simpler solution without Heroku / VPS and Google Sheets API.
Budget: 2000 UAH Deadline: 3 days
Good afternoon. I am ready to write such a bot. Let's get in touch and discuss the details.
Budget: 2000 UAH Deadline: 4 days
Hello! I can offer to implement this project using java + spring boot.
Budget: 1000 UAH Deadline: 2 days
Good day! Ready to complete today! Python + Google Sheets Api
Budget: 2000 UAH Deadline: 1 day
I can start working today and complete everything quickly within 3 hours. I write in Python and have extensive experience in creating bots. Telebot is a poor library; it's better to use Aiogram. It is much more reliable and works better with large volumes. If you need me to write in Telebot, I can do that too, no problem.
Budget: 700 UAH Deadline: 1 day
Good day. I am ready to complete it. I have many successful cases that I can tell you more about in private.
Technical task for a Telegram bot / mini-platform 1. Project goal Create a Telegram bot and mini-platform for finding specialists and posting requests from users. The user can leave a request, the specialist can respond, the administrator controls publications, moderation, payment, and security. 2. User roles User: can register; confirm phone number and email; create a request; view specialists; receive responses. Specialist: can register; fill out a questionnaire; specify services, prices, city, experience; add photos of completed work; respond to requests. Administrator: can moderate requests; verify specialists; review complaints; manage advertising; control payments; block users. 3. Registration Mandatory: confirmation of phone number via Telegram or code; confirmation of email via link or code; without confirmation of phone and email, the request is not published. 4. Requests The user fills out: service category; task description; city/region; deadline; budget; photo (if necessary); contact details. Limitations: no more than three requests per day from one user. 5. Moderation All requests initially go for moderation. Automatically block or send for manual review: photos of category 18+; spam; offensive statements; suspicious links; duplicate requests; mass requests from one account. 6. Specialists Specialist questionnaire: name; city; services; experience; prices; portfolio; photo; description; link; reviews; verification status. Important: the platform is not responsible for the quality of the specialist's services. This must be stated in the user agreement. 7. Payment Monetization options: paid placement of the specialist's profile; paid boosting of the profile; paid access to requests; advertising after approval by the administrator; subscription for specialists. Integrate payment: Stripe / Przelewy24 / PayU / Fondy — as per the developer's capabilities. 8. Administrative panel It is necessary to create a convenient admin panel: list of users; list of specialists; requests under moderation; complaints; payments; statistics; blocking users; editing categories; managing advertising; manual approval or rejection of publications. 9. Security Mandatory: protection against spam; request limit; message limit; protection against mass registrations; action logging; database backup; file and photo verification; CAPTCHA or other spam protection mechanism; blocking by phone number, IP address, or Telegram ID. 10. Responsibility The user agreement must specify: the platform is not an employer; the platform is not responsible for the actions of specialists; the user independently makes decisions about cooperation; the administration has the right to delete a request or profile without explanation; advertising is published only after approval by the administrator; spam, fraud, 18+ content, and any manifestations of aggression are prohibited.
Need a DevOps / Linux administrator for deploying a Telegram bot on a VPS. Specifically, server setup and production deployment are required. Project stack: Node.js 20+, Telegraf, Express, Prisma, PostgreSQL, Redis, Docker, Docker Compose, Telegram Mini Apps, OCR. What needs to be done: 1. Prepare Ubuntu VPS. 2. Set up SSH access with keys. 3. Configure the firewall. 4. Install Docker and Docker Compose. 5. Set up PostgreSQL. 6. Set up Redis. 7. Configure Nginx. 8. Connect the domain and SSL Let’s Encrypt. 9. Configure production .env. 10. Run Prisma migrations. 11. Launch the Node.js application. 12. Set up Telegram webhook. 13. Check /health and /ready. 14. Set up PostgreSQL backup. 15. Leave instructions on how to update, restart, view logs, and restore backup. Important: - No need to rewrite the code. - The project needs to be deployed on a VPS. - A person with experience in Docker + Node.js + PostgreSQL + Redis + Nginx is required. - It is preferable to show 2–3 similar projects.
I need a program or Telegram bot for bulk creation of shipping documents through the Nova Poshta API.Main Task I upload 50–100 orders at a time into an Excel/Google Sheets/CSV table or paste a list of orders into the program. Clients provide data in different formats, so the system must automatically recognize the data, sort it into the necessary fields, and create shipping documents through the Nova Poshta API.Input Requirements Possible options: Upload an Excel/CSV file. Copy a list of orders into the program. Paste client messages in free format.What the Program Must Recognize From each order, it is necessary to determine: Recipient's full name; Phone number; City; Nova Poshta branch; Product/comment; Cash on delivery amount; Weight/dimensions, if specified.Operational Logic I upload 50–100 orders. The program processes each order. Data is automatically distributed into columns. The program checks the city and branch through the Nova Poshta API. If there is an error or missing data for an order, it highlights that order and indicates what needs to be corrected. If everything is correct, it creates the shipping document. After creation, it shows a list of completed shipping documents. It allows exporting the result to Excel.Output After Processing For each order, it is necessary to obtain: Shipping document number; Client's full name; Phone; City; Branch; Cash on delivery amount; Delivery cost; Status: created / error / needs verification.Mandatory Functions Bulk creation of 50–100 shipping documents at once; Verification of city and Nova Poshta branch; Ability to edit an order before creating the shipping document; Saving sender data; Working with cash on delivery; Exporting created shipping documents to Excel; Log of created shipments.Desirable Telegram bot or simple program for Windows; Excel/CSV upload; Ability to paste a list of orders as text; Saving a database of regular clients; Reordering with one click; Product and weight templates; Printing/downloading labels for packages.Important I need not just a form for manual filling, but a tool for bulk processing of orders. Main scenario: I upload 50–100 data entries, the program sorts the information itself, checks for errors, and bulk generates shipping documents through the Nova Poshta API.
Good afternoon. I need a keyword parser that outputs results through a Telegram bot. How it should work: Automatic search on 4 websites for keywords that change from time to time. Search queries are sent every few minutes. The words are uploaded in the form of a .txt file. The Telegram bot should have buttons: start bot, stop bot, download file (downloads a file with active keywords), upload file (uploads an edited file with new words). The bot should ignore previously found results, i.e., it should not indicate the same ad twice. The result comes to the bot in the form of a link with a photo, but just a link is sufficient. P.S. searching websites without API, VPS with 6TB and 50 IPs are already available. For detailed information, please contact me via private message.
Good day, it is necessary to set up automation for reminders to people regarding the auto-webinar with automatic changes of dates and times of the auto-webinar. That is, there is a landing page with the date and time of the auto-webinar, the information should be sent to ManyChat, and ManyChat should send the corresponding reminders one day, 6 hours, 2 hours, 1 hour, and at the moment of the start of the auto-webinar.