Телеграм бот питон

Консоль:
File "main.py", line 6, in <module>
import db
File "C:\Users\User\Desktop\ParserTGBot\db.py", line 8, in <module>
bot = telebot.TeleBot(cfg.token)
AttributeError: module 'telebot' has no attribute 'TeleBot'
код:
# -- coding: utf-8 --
import sqlite3
import telebot
import cfg
import shelve
import psutil
bot = telebot.TeleBot(cfg.token)
where_can_find = ["forum", "advertising", "friends"]
def send(chat_id, text, reply_markup):
try:
if reply_markup == '':
res = bot.send_message(chat_id, text, parse_mode="html", disable_web_page_preview=True)
else:
res = bot.send_message(chat_id, text, reply_markup=reply_markup, parse_mode="html", disable_web_page_preview=True)
with open('Temp/' + str(chat_id) + '_message_for_delete.txt', 'w', encoding='utf-8') as f:
f.write(str(res.id))
return res.id
except Exception as e:
pass