You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This is a whatsapp bot that uses Cricket API to fetch different types of match data including lives ones, past and upcoming ones and send them on your whatsapp number. Too easy to use. Simply put your credentials from Twilio and Cric into the place, install twilio api and you will be ready to go.
2
+
fromtwilio.restimportClient
3
+
importrequests
4
+
importdatetime
5
+
importtime
6
+
7
+
# Your Account SID from twilio.com/console
8
+
account_sid="YouSID"
9
+
# Your Auth Token from twilio.com/console
10
+
auth_token="YouAuthToken"
11
+
12
+
client=Client(account_sid, auth_token)
13
+
#using the API to get match details from recently happend and going to happen matches
0 commit comments