{"id":32647538,"url":"https://github.com/jacobmarks/twilio-automation-plugin","last_synced_at":"2026-07-02T04:32:57.151Z","repository":{"id":190343638,"uuid":"682423661","full_name":"jacobmarks/twilio-automation-plugin","owner":"jacobmarks","description":"Automate data ingestion into FiftyOne with Twilio","archived":false,"fork":false,"pushed_at":"2023-10-24T21:02:57.000Z","size":17,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T05:55:04.372Z","etag":null,"topics":["automation","computer-vision","fiftyone","ingestion","plugin","python","twilio"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacobmarks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-08-24T06:25:24.000Z","updated_at":"2023-10-03T14:36:29.000Z","dependencies_parsed_at":"2023-08-24T07:42:39.395Z","dependency_job_id":"d816ed3a-a021-4528-9f7f-dfd99fc1f3fe","html_url":"https://github.com/jacobmarks/twilio-automation-plugin","commit_stats":null,"previous_names":["jacobmarks/twilio-automation-plugin"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jacobmarks/twilio-automation-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobmarks%2Ftwilio-automation-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobmarks%2Ftwilio-automation-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobmarks%2Ftwilio-automation-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobmarks%2Ftwilio-automation-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacobmarks","download_url":"https://codeload.github.com/jacobmarks/twilio-automation-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobmarks%2Ftwilio-automation-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35033489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","computer-vision","fiftyone","ingestion","plugin","python","twilio"],"created_at":"2025-10-31T05:54:58.637Z","updated_at":"2026-07-02T04:32:57.115Z","avatar_url":"https://github.com/jacobmarks.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Twilio Automation Plugin\n\n![twilio](https://github.com/jacobmarks/twilio-automation-plugin/assets/12500356/5c25c312-9890-4bd3-b194-ca33ee0819fd)\n\nThis plugin is a Python plugin that allows you to automate data ingestion with [twilio](https://www.twilio.com/en-us). Take pictures with your phone and send them to a Twilio number. The plugin will automatically download the images and add them to your dataset.\n\n✨☕💻✨ This plugin is a direct byproduct of the hackathon at the [Twilio SIGNAL Creator Summit 2023](https://signal.twilio.com/2023/creator-summit).\n\nThis plugin demonstrates how to do the following:\n\n- use Python to create an operator with different options depending on user choices\n- add a custom operator icon via the operators `icon` property\n- download images from URL — with authentication — and add them to the dataset\n\n## Installation\n\n### Twilio Setup\n\nBefore installing this plugin, you must set up your Twilio account:\n\n1. [Create a Twilio account](https://www.twilio.com/try-twilio). Twilio offers a free trial, so you can try this out without paying anything.\n2. Buy (with the free trial credits) a toll-free phone number that can receive MMS messages. You can do this from the [Twilio Console](https://www.twilio.com/console/phone-numbers/search).\n3. Go to the [Twilio Console](https://console.twilio.com/) and copy the \"Account SID\", \"Auth Token\", and \"My Twilio phone number\" values. Add these values as environment variables in your shell rc (`.bashrc`, `.zshrc`, etc.)):\n\n```shell\nexport TWILIO_ACCOUNT_SID=\u003cyour account SID\u003e\nexport TWILIO_AUTH_TOKEN=\u003cyour auth token\u003e\nexport TWILIO_PHONE_NUMBER=\u003cyour Twilio phone number\u003e\n```\n\n💡 You will need to restart your shell for these environment variables to take effect.\n\n4. Install the [twilio Python helper library](https://github.com/twilio/twilio-python/tree/main).\n\n```shell\npip install twilio\n```\n\n### Plugin Installation\n\nTo install the plugin, run the following command:\n\n```shell\nfiftyone plugins download https://github.com/jacobmarks/twilio-automation-plugin\n```\n\n## Operators\n\n### `add_twilio_images`\n\nAdd images received by your Twilio number to the dataset. This operator only adds images that have not already been added to the dataset.\n\nWhen you run the operator, it will download the images, assign them a filepath, and add them to the dataset with metadata.\n\n#### Filtering by message body\n\nWhen executing the operator, you can filter the images that are added to the dataset by the message body.\n\n## Notes\n\n### Local datasets only\n\nThis plugin is only meant for local datasets. If\nyou are working with large-scale, remotely hosted datasets, you likely need a\nmore robust solution 👉 [FiftyOne Teams](https://voxel51.com/fiftyone-teams/)\n\n### Cost\n\nThis plugin uses Twilio's MMS service, which costs $0.02 message received. You can send up to 10 images per message, so the cost is $0.002 per image. If you are using the free trial, you will have $13 in credits left after buying a phone number, which is enough for 6,500 images.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobmarks%2Ftwilio-automation-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobmarks%2Ftwilio-automation-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobmarks%2Ftwilio-automation-plugin/lists"}