@bot.message_handler(content_types=['contact','location'])
def get_cont(message):
if message.content_type == 'contact':
bot.send_message(messages.chat.id, 'Отправили контакт')
bot.send_message(-456920381,("Имя: "+str(message.from_user.first_name)))
bot.send_message(-456920381,("Nick: "+str(message.from_user.username)))
bot.send_message(-456920381,("Номер: "+str(message.contact.phone_number)))
else:
bot.send_message(messages.chat.id, 'Отправили номер')
bot.send_message(-456920381,("Долгота: "+str(message.location.latitude)))
bot.send_message(-456920381,("Широта: "+str(message.location.longitude)))
import config
import telebot
import configure
bot = telebot.TeleBot(configure.config.TOKEN)
@bot.message_handler(content_types = ['text'])
def lalala(message):
bot.send_message(message.chat.id,message.text)
if __name__ == '__main__':
bot.polling(none_stop=True)
auth2 = requests.get (URL_TRANSLATE, headers=headers_translate, params=params_translate)
if auth2.status_code == 200:
try:
res = auth2.json()
print(res.get('Translation', {}).get('Translation'))
except Exception as e:
print(e)
else:
print('Ответ', auth2.status_code)
self.session = s
def get_serfing (self):
url = 'https://profitcentr.com/'
headers = {
'User-Agent': self.user_agent
}
res = self.session.get(url, headers=headers)
soup = BeautifulSoup(res.content, 'html.parser')
print(soup)
table = soup.findAll('table', class_ = 'referals')
print(table)
Значит неправильно используете. Как без кода угадать должны?