Síða 1 af 1

Sms service api

Sent: Lau 05. Feb 2022 05:17
af Semboy

Kóði: Velja allt

import requests
from Auth import auth
from latnlong import find_location
from twilio.rest import Client

OWM_ENDPOINT = auth["end_point"]
# lets find our location, if nothing given a default will be presented, based on the location of your phone.
# returns tuples with 2 decimal and 1 function.
(latn,lonn,language) = find_location()
#the information i am looking for
parameters = {
    "lat": latn,
    "lon": lonn,
    "appid":auth["api_key"],
    "exclude": "current,minutely,daily"
}

#pipe that thing to our endpoint
response = requests.get(OWM_ENDPOINT,params=parameters)
# please let me know if something went wrong
response.raise_for_status()
weather_data = response.json()


# function that only looks out for rain drops
def find_for_rain(weather_data):
    for index in weather_data["hourly"][:12]:
        for weather in index["weather"]:
            if weather["id"] < 700:
                return True
    return False
#for example calling the rain function
# will give us a message that, it found rain drops
if find_for_rain(weather_data):
    client = Client(auth["twilacc_sid"], auth["twil_token"])
    message = client.messages \
        .create(
       
        #language function will try to translate the text into whatever language the user wanted
        body=f"{auth['api_name']}: {language('it's going to rain')},
        from_=auth["api_number"],
        to=auth["my_number"])

er ad bua simple forrit sem mun lata mig vita. Hvernig vedrid verdur naesta dag.
vitidi um odyrara leid eda okeypis, hef heyrt um telegram en vitidi um eithvad annad?
twilio frekar dyrt, finnst mer.

Re: Sms service api

Sent: Lau 05. Feb 2022 09:42
af Viktor
Push notifications eru frí leið til að gera það sama og SMS gera, basically

https://onesignal.com/

Re: Sms service api

Sent: Lau 05. Feb 2022 13:21
af izelord
Ég nota Telegram í mest allt svona enda ókeypis og býður upp á góða bot möguleika, interaction, multimedia ofl.

Ef þú ert harður á SMS þá hef ég verið að nota Vonage og er bæði með hringinúmer og sms þjónustu hjá þeim. Þetta kostar eitthvað en er hægt að nota sem prepaid.

Re: Sms service api

Sent: Lau 05. Feb 2022 14:26
af Televisionary
Ég er ekki að nota SMS en þetta er það sem ég nota í Android notifications:

https://pushover.net/

Re: Sms service api

Sent: Lau 05. Feb 2022 20:42
af Semboy
izelord skrifaði:Ég nota Telegram í mest allt svona enda ókeypis og býður upp á góða bot möguleika, interaction, multimedia ofl.

Ef þú ert harður á SMS þá hef ég verið að nota Vonage og er bæði með hringinúmer og sms þjónustu hjá þeim. Þetta kostar eitthvað en er hægt að nota sem prepaid.



takk ætla athuga thetta.
Eg thakka alla fyrir svorin