{"id":18022871,"url":"https://github.com/jakobht/azurex","last_synced_at":"2026-02-26T23:01:44.940Z","repository":{"id":47634131,"uuid":"310532185","full_name":"jakobht/azurex","owner":"jakobht","description":"Implementation of the Azure Blob Storage Rest API for elixir","archived":false,"fork":false,"pushed_at":"2025-05-10T07:59:13.000Z","size":142,"stargazers_count":18,"open_issues_count":6,"forks_count":28,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-12T01:53:07.767Z","etag":null,"topics":["api","azure","blob-storage","elixir"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jakobht.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-11-06T08:09:00.000Z","updated_at":"2025-09-16T17:02:48.000Z","dependencies_parsed_at":"2024-04-23T06:52:58.257Z","dependency_job_id":"515dd4d5-cfcf-43b7-b15f-2a3159ffa21b","html_url":"https://github.com/jakobht/azurex","commit_stats":{"total_commits":94,"total_committers":9,"mean_commits":"10.444444444444445","dds":0.5425531914893618,"last_synced_commit":"8dfc408f189ee81db6484324fe021ad022e4bb47"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/jakobht/azurex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakobht%2Fazurex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakobht%2Fazurex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakobht%2Fazurex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakobht%2Fazurex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jakobht","download_url":"https://codeload.github.com/jakobht/azurex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakobht%2Fazurex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29876341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T22:37:10.609Z","status":"ssl_error","status_checked_at":"2026-02-26T22:37:09.019Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["api","azure","blob-storage","elixir"],"created_at":"2024-10-30T07:06:05.720Z","updated_at":"2026-02-26T23:01:44.935Z","avatar_url":"https://github.com/jakobht.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Elixir CI](https://github.com/jakobht/azurex/actions/workflows/elixir.yml/badge.svg)](https://github.com/jakobht/azurex/actions/workflows/elixir.yml)\n[![Hex.pm](https://img.shields.io/hexpm/v/azurex)](https://hex.pm/packages/azurex)\n\n# Azurex\n\nImplementation of the Azure Blob Storage [Rest API](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api) for Elixir.\n\n## Supported actions\n\nCurrently supports:\n\n1. Downloading blobs\n2. Uploading blobs\n3. Deleting blobs\n4. Stream uploading blobs\n5. Listing blobs\n6. Creating containers\n7. Listing containers\n\n## Installation\n\n[Available in Hex](https://hex.pm/packages/azurex), the package can be installed\nby adding `azurex` to your list of dependencies in `mix.exs` e.g.:\n\n```elixir\ndef deps do\n  [\n    {:azurex, \"~\u003e 1.1.0\"}\n  ]\nend\n```\n\n## Configuration\n\nThe configuration should _either_ define `storage_account_name` and `storage_account_key` _or_ `storage_account_connection_string`.\n\n```elixir\nconfig :azurex, Azurex.Blob.Config,\n  api_url: \"https://sample.blob.core.windows.net\", # Optional\n  default_container: \"defaultcontainer\", # Optional\n  storage_account_name: \"name\",\n  storage_account_key: \"access key\",\n  storage_account_connection_string: \"Storage=Account;Connection=String\" # Required if storage account `name` and `key` not set\n```\n\nEach of these options is then overridable per-request, if you need to work with multiple instances:\n\n```elixir\nAzurex.Blob.list_blobs(container: \"other\", api_uri: \"https://other.blob.net\")\n\nAzurex.Blob.get_blob(\"file.txt\", [\n  storage_account_connection_string: \"Account=Storage;String=Connection\"\n])\n\nAzurex.Blob.put_blob(\"file.txt\", \"contents\", \"text/plain\", [\n  storage_account_key: \"key\",\n  storage_account_name: \"name\"\n])\n```\n\n## Documentation\n\nDocumentation can be found at [https://hexdocs.pm/azurex](https://hexdocs.pm/azurex). Or generated using [ExDoc](https://github.com/elixir-lang/ex_doc)\n\n## Development\n\nThe goal is to support all actions in the Azure Blob Storage [Rest API](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api) - PRs welcome :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakobht%2Fazurex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakobht%2Fazurex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakobht%2Fazurex/lists"}