This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbot.py
73 lines (51 loc) · 2.35 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from telegram.ext import Updater
from telegram.ext import MessageHandler, Filters
from telegram.ext import CommandHandler
from telegram import ReplyKeyboardMarkup
from telegram import KeyboardButton
import openrandonaut
from telegram import ReplyKeyboardRemove
updater = Updater(token="TELEGRAM_TOKEN_HERE", use_context=True)
dispatcher = updater.dispatcher
import logging
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO
)
def start(update, context):
context.bot.send_message(
chat_id=update.effective_chat.id, text="USAGE: Share you location."
)
def caps(update, context):
# text_caps = " ".join(context.args).upper()
for i in context.args:
context.bot.send_message(chat_id=update.effective_chat.id, text=i)
def got_location(update, context):
gps = update.message.location
print("Latitude: {}, Longitude: {}".format(gps.latitude, gps.longitude))
text = f"Please wait..."
context.bot.send_message(chat_id=update.effective_chat.id, text=text)
reply = openrandonaut.main_generate_location(
gps.latitude, gps.longitude, 5000, 4096
)
text = f"Coordinate based on gaussian kernel density estimate of {reply[3]} QRNG data points, within a radius of {reply[2]}m from your shared location:"
context.bot.send_message(chat_id=update.effective_chat.id, text=text)
link = f"http://maps.google.com/maps?q={reply[0]},{reply[1]}"
context.bot.send_location(
chat_id=update.effective_chat.id, latitude=reply[0], longitude=reply[1]
)
start_handler = CommandHandler("start", start)
dispatcher.add_handler(start_handler)
dispatcher.add_handler(MessageHandler(Filters.location, got_location))
updater.start_polling()