{"id":17241441,"url":"https://answerdotai.github.io/fa6-icons/","last_synced_at":"2025-02-24T15:31:08.091Z","repository":{"id":254654340,"uuid":"847130143","full_name":"AnswerDotAI/fa6-icons","owner":"AnswerDotAI","description":"fontawesome 6 free icons as SVGs","archived":false,"fork":false,"pushed_at":"2024-12-22T01:04:12.000Z","size":1013,"stargazers_count":9,"open_issues_count":1,"forks_count":1,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-02-22T19:42:33.422Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://AnswerDotAI.github.io/fa6-icons","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AnswerDotAI.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}},"created_at":"2024-08-24T23:58:01.000Z","updated_at":"2024-12-22T01:04:15.000Z","dependencies_parsed_at":"2024-08-25T05:22:07.618Z","dependency_job_id":"fbc2301a-001d-452a-b93f-8929214299dd","html_url":"https://github.com/AnswerDotAI/fa6-icons","commit_stats":null,"previous_names":["answerdotai/fa6-icons"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ffa6-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ffa6-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ffa6-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ffa6-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnswerDotAI","download_url":"https://codeload.github.com/AnswerDotAI/fa6-icons/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240503564,"owners_count":19812022,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-10-15T06:09:33.930Z","updated_at":"2025-02-24T15:31:08.086Z","avatar_url":"https://github.com/AnswerDotAI.png","language":"Python","funding_links":[],"categories":["Icons"],"sub_categories":[],"readme":"# fa6-icons\n\n\n\u003c!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! --\u003e\n\nThis module provides the free icons from [Font\nAwesome](https://fontawesome.com/) v6 in a python-friendly form.\n\nThe actual SVGs and associated data are licensed on the same terms as\nthe originals – this package only adds a little on top to make them\neasier to use from Python.\n\n## Install\n\n``` sh\npip install fa6_icons\n```\n\n…or…\n\n``` sh\nconda install -c fastai fa6_icons\n```\n\n## How to use\n\nTwo objects are provided, `svgs` and `dims`.\n\n``` python\nfrom fa6_icons import svgs,dims\n```\n\nThese are both [AttrDict](https://fastcore.fast.ai/basics.html#attrdict)\nobjects, which behave as dicts, but can also be accessed with\ndotted-attrs. They contain the same keys. To search them, use standard\npython dict approaches, e.g:\n\n``` python\n[o for o in svgs if 'addr' in o]\n```\n\n    ['address_book', 'address_card']\n\nEach style is available as a key for each SVG and dims entry, e.g:\n\n``` python\ndims.address_card\n```\n\n``` json\n{'regular': (512, 576), 'solid': (512, 576)}\n```\n\nIn a notebook environment, SVGs are displayed:\n\n``` python\nsvgs.address_card.regular\n```\n\n\u003cdiv style=\"max-width: 150px; width: 100%;\"\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath d=\"M512 80c8.8 0 16 7.2 16 16l0 320c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16L48 96c0-8.8 7.2-16 16-16l448 0zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l448 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zM208 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16l192 0c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80l-64 0zM376 144c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-80 0zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-80 0z\"/\u003e\u003c/svg\u003e\u003c/div\u003e\n\nTo make attr access more convenient, hyphens are replaced with\nunderscores, and icon names starting with a digit are prefixed with an\nunderscore.\n\nUse `width` to view the svg in a notebook with a different width (it\ndefaults to 300px).\n\n``` python\nsvgs._9.solid.width(25)\n```\n\n\u003cdiv style=\"max-width: 25px; width: 100%;\"\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"\u003e\u003cpath d=\"M64 192a96 96 0 1 0 192 0A96 96 0 1 0 64 192zm87.5 159.8C67.1 347.4 0 277.5 0 192C0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9c-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z\"/\u003e\u003c/svg\u003e\u003c/div\u003e\n\nWhen stringified, the SVG text is returned:\n\n``` python\nprint(svgs._9.solid)\n```\n\n    \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"\u003e\u003cpath d=\"M64 192a96 96 0 1 0 192 0A96 96 0 1 0 64 192zm87.5 159.8C67.1 347.4 0 277.5 0 192C0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9c-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z\"/\u003e\u003c/svg\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/answerdotai.github.io%2Ffa6-icons%2F","html_url":"https://awesome.ecosyste.ms/projects/answerdotai.github.io%2Ffa6-icons%2F","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/answerdotai.github.io%2Ffa6-icons%2F/lists"}