Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bogdanp/racket-twilio
A Twilio client for Racket.
https://github.com/bogdanp/racket-twilio
racket sms twilio
Last synced: 7 days ago
JSON representation
A Twilio client for Racket.
- Host: GitHub
- URL: https://github.com/bogdanp/racket-twilio
- Owner: Bogdanp
- Created: 2019-04-08T13:39:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T07:54:04.000Z (almost 2 years ago)
- Last Synced: 2024-08-08T10:44:47.451Z (3 months ago)
- Topics: racket, sms, twilio
- Language: Racket
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# racket-twilio
A tiny Twilio client for racket.
## Example
```racket
(require twilio)(define client
(twilio "ACCOUNT_SID_HERE" "AUTH_TOKEN_HERE"))(twilio-send-message client
#:to "+15551231234"
#:from "+15551231234"
#:body "Hello!")
```## License
racket-twilio is licensed under the 3-Clause BSD license.