{"id":37067936,"url":"https://github.com/findhotel/boto3facade","last_synced_at":"2026-01-14T07:59:05.367Z","repository":{"id":57416062,"uuid":"43300823","full_name":"FindHotel/boto3facade","owner":"FindHotel","description":"A facade that simplifies boto3's interface to AWS","archived":true,"fork":false,"pushed_at":"2018-02-25T10:05:28.000Z","size":121,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-04T01:02:18.076Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FindHotel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-09-28T12:55:04.000Z","updated_at":"2022-12-14T09:03:19.000Z","dependencies_parsed_at":"2022-08-23T16:51:11.474Z","dependency_job_id":null,"html_url":"https://github.com/FindHotel/boto3facade","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/FindHotel/boto3facade","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FindHotel%2Fboto3facade","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FindHotel%2Fboto3facade/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FindHotel%2Fboto3facade/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FindHotel%2Fboto3facade/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FindHotel","download_url":"https://codeload.github.com/FindHotel/boto3facade/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FindHotel%2Fboto3facade/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28413527,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-14T07:59:04.808Z","updated_at":"2026-01-14T07:59:05.351Z","avatar_url":"https://github.com/FindHotel.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"boto3facade\n=========================\n\n[![Build Status](https://travis-ci.org/FindHotel/boto3facade.svg?branch=master)](https://travis-ci.org/FindHotel/boto3facade)\n[![PyPI](https://img.shields.io/pypi/v/boto3facade.svg?style=flat)](https://pypi.python.org/pypi/boto3facade)\n\nA simple facade for [boto3][boto3] that makes some common tasks easier. The \n`boto3facade` module is not intended to be used directly but as a shared\ncomponents of projects that use boto3.\n\n\n[boto3]: https://github.com/boto/boto3\n\n\n## Installation\n\nTo install the development version:\n\n```\n    pip install git+https://github.com/FindHotel/boto3facade\n```\n\nTo install the latest stable release:\n\n```\n    pip install boto3facade\n```\n\n## Quickstart\n\nThe `boto3facade` package contains a collection of modules that implement\nfacades to different AWS services. For instance the `boto3facade.ec2` module\nimplements the facade to [AWS EC2 service][ec2]. Each of these modules \ntypically contain just one class, named as the corresponding AWS service. E.g.\nthe `boto3facade.ec2` module contains an `Ec2` class. In some cases, there may\nalso be public module functions that implement utilities that don't require\naccess to the [AWS boto3 SDK][boto3]. For instance in the EC2 facade:\n\n[ec2]: https://aws.amazon.com/ec2/\n\n```python\nimport boto3facade.ec2 as ec2\n\n# Get the name of the role associated to the EC2 instance\nif ec2.in_ec2():\n    # If this code is running in an EC2 instance\n    role_name = ec2.get_instance_profile_role()\nelse:\n    role_name = None\n```\n\nFacade methods that actually use `boto3` are always implemented as instance\nmethods:\n\n```python\nfrom boto3facade.ec2 import Ec2\n\n# Create the facade object\nmy_ec2_facade = Ec2()\n\n# Get the list of AMIs that have tags matching the provided ones\nami_tags = {'Name': 'niceimage', 'Version', 'latest'}\nami_list = my_ec2_facade.get_ami_by_tag(ami_tags)\n\n# Get the SecurityGroup boto3 resource with a certain name\nmy_sg = my_ec2_facade.get_sg_by_name('sgname')\n```\n\n\n## Development\n\n```\n    make develop\n    . .env/bin/activate\n```\n\n\n## Contact\n\nIf you have questions, bug reports, suggestions, etc. please create an issue on\nthe [GitHub project page](http://github.com/FindHotel/boto3facade).\n\n\n## License\n\nThis software is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License)\n\nSee [License file](https://github.com/FindHotel/boto3facade/blob/master/LICENSE)\n\n\n© 2016 German Gomez-Herrero, and FindHotel.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffindhotel%2Fboto3facade","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffindhotel%2Fboto3facade","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffindhotel%2Fboto3facade/lists"}