# airheads
> [!WARNING]
> While I think this library is ready to be used, I am not a SEO or metadata expert and have not extensively used it yet. I will release this library in V1 status after a few months of real usage when I am confident it is solid. I'd love help improving it!
A helper library for building social media cards, SEO tags, and head elements with the [Air framework](https://github.com/airatplants/air).
There is an example app deployed here, for testing: https://airheads-production.up.railway.app/
## Overview
`airheads` makes it easy to create properly formatted meta tags for:
- **SEO** - Standard meta tags that improve search engine visibility & ranking.
- **Open Graph** - Meta tags that control how your content appears on Facebook, LinkedIn, and other social platforms.
- **Twitter Cards** - Meta tags that create previews on Twitter/X. These make your shared links have images and descriptions.
- **Favicons** - Small icons that appear in browser tabs, bookmarks, and home screens. They help users quickly identify your site.
- **JSON-LD** - Structured data that search engines use to create snippets (star ratings, prices, etc.) in search results. This can improve click-through rates.
## Installation
```bash
pip install airheads
# Or with uv
uv add airheads
```
## Quick Start
### Simple Usage
```python
import air
from airheads import build_social_head
air.Html(
build_social_head(
title="My Awesome Site",
description="Welcome to my amazing website",
url="https://example.com",
image="https://example.com/og-image.jpg",
site_name="Example.com",
twitter_site="@example",
keywords=["python", "web", "framework"],
),
air.Body(
air.H1("Welcome to My Site")
)
)
```
### Advanced Usage
Build individual tag groups for more control:
```python
from air import Head, Title
from airheads import (
build_seo_meta,
build_open_graph,
build_twitter_card,
build_favicon_links,
)
# Build individual tag groups
seo_tags = build_seo_meta(
description="An in-depth guide",
keywords=["python", "tutorial"],
canonical_url="https://example.com/article",
author="Jane Developer",
)
og_tags = build_open_graph(
title="My Article",
description="An in-depth guide",
url="https://example.com/article",
image="https://example.com/article-cover.jpg",
image_width=1200,
image_height=630,
type="article",
site_name="My Blog",
article_author="Jane Developer",
article_section="Tutorials",
article_tags=["python", "beginner"],
)
twitter_tags = build_twitter_card(
card_type="summary_large_image",
site="@myblog",
creator="@janedev",
)
favicon_tags = build_favicon_links(
favicon_ico="/static/favicon.ico",
favicon_svg="/static/favicon.svg",
apple_touch_icon="/static/apple-touch-icon.png",
)
head = Head(
Title("My Article"),
*seo_tags,
*og_tags,
*twitter_tags,
*favicon_tags,
)
```
### JSON-LD Structured Data
Add structured data to help search engines display results (star ratings, recipes, events, etc.). The `airheads.schema` module provides helpers for common schema.org types so you don't have to manually build complex JSON structures:
```python
from airheads import build_social_head, build_json_ld
from airheads.schema import build_article_schema
# Easy way: Use schema helpers
json_ld_str = build_article_schema(
headline="My Article",
description="An informative piece",
image="https://example.com/article.jpg",
date_published="2025-01-15T10:00:00Z",
author_name="Jane Developer",
publisher_name="My Blog",
)
json_ld_tag = build_json_ld(json_ld_str)
# Include in head (pass as extra positional argument after required args)
head = build_social_head(
"My Article", # title (positional)
"An article with structured data", # description (positional)
"https://example.com/article", # url (positional)
"https://example.com/article.jpg", # image (positional)
json_ld_tag, # Extra children come after required positional args
)
```
#### Schema.org Helpers
Schema.org types are structured data formats that tell search engines exactly what your content is (an article, product, FAQ, etc.) so they can display it with rich features like star ratings, breadcrumbs, or expandable answers.
The `airheads.schema` module includes helpers for the most commonly needed schema types:
**Using Schema Helpers:**
- **Combine multiple schemas on one page** - Most pages benefit from 2-3 types. For example, an article page often has `build_article_schema()` + `build_breadcrumb_schema()` + `build_person_schema()` for the author.
- **Match schema to content type** - Use `build_article_schema()` for blog posts, `build_product_schema()` for product pages, etc. More specific is better than generic.
- **Not every page needs structured data** - Focus on content you want to stand out in search results. Articles, products, FAQs, and tutorials benefit most.
- **Pass multiple schemas to build_social_head()** - Create each schema with `build_json_ld()`, then pass them as positional args: `build_social_head("title", "desc", "url", "img", schema1, schema2)`
**Article & Content:**
- `build_article_schema()` - Blog posts, news articles, documentation. Helps search engines show author, publish date, and creates rich snippets.
- `build_video_schema()` - Video content. Makes videos eligible for Google Video Search and video rich results with thumbnails.
**Navigation & Structure:**
- `build_breadcrumb_schema()` - Navigation breadcrumbs. Shows your page's position in site hierarchy in search results.
- `build_website_schema()` - Homepage/site info. Enables sitelink search box in Google search results.
**Interactive Content:**
- `build_faq_schema()` - FAQ sections. Can appear as expandable FAQ rich results in search, great for voice search.
- `build_howto_schema()` - Step-by-step guides. Eligible for rich results showing steps directly in search.
**Business & Identity:**
- `build_product_schema()` - Products/services. Shows price, availability, reviews in search results. Critical for e-commerce.
- `build_person_schema()` - Author/person profiles. Helps establish authorship and knowledge graph entries.
- `build_organization_schema()` - Company/organization info. Enables knowledge panels and brand information.
See [schema.py](./src/airheads/schema.py) for complete API documentation and examples.
## API Reference
### `build_social_head()`
The main convenience function that builds a complete `Head` tag with all social and SEO elements. Use this when you want everything set up correctly in one call without managing individual tag groups.
**Signature:**
```python
build_social_head(
title: str,
description: str,
url: str,
image: str,
*extra_children: BaseTag,
**kwargs
) -> Head
```
**Parameters:**
- `title` (str): Page title
- `description` (str): Page description
- `url` (str): Canonical URL
- `image` (str): Social sharing image URL
- `keywords` (list[str], optional): SEO keywords
- `image_alt` (str, optional): Alt text for social image
- `image_width` (int, optional): Image width in pixels (default: 1200)
- `image_height` (int, optional): Image height in pixels (default: 630)
- `site_name` (str, optional): Site name for Open Graph
- `twitter_site` (str, optional): Twitter handle for the site (e.g., "@mysite")
- `twitter_creator` (str, optional): Twitter handle for the creator
- `author` (str, optional): Page author
- `theme_color` (str, optional): Browser theme color
- `og_type` (str): Open Graph type (default: "website")
- `twitter_card` (str): Twitter card type (default: "summary_large_image")
### `build_seo_meta()`
Build standard SEO meta tags. These improve your search engine visibility and help search engines understand your content's title, description, and keywords.
**Parameters:**
- `description` (str): Page description
- `keywords` (list[str], optional): Keywords for the page
- `canonical_url` (str, optional): Canonical URL
- `robots` (str): Robots meta tag value (default: "index, follow")
- `author` (str, optional): Page author
- `viewport` (str): Viewport settings (default: "width=device-width, initial-scale=1.0")
- `charset` (str): Character encoding (default: "utf-8")
- `theme_color` (str, optional): Theme color for browser UI
### `build_open_graph()`
Build Open Graph meta tags for Facebook, LinkedIn, and other platforms. These control how your content appears when shared on social media, including the preview image, title, and description.
**Parameters:**
- `title` (str): Content title
- `description` (str): Content description
- `url` (str): Canonical URL
- `image` (str): Image URL for social sharing
- `image_alt` (str, optional): Alt text for the image
- `image_width` (int, optional): Image width in pixels
- `image_height` (int, optional): Image height in pixels
- `type` (str): Content type (default: "website")
- `site_name` (str, optional): Site name
- `locale` (str): Locale/language (default: "en_US")
- Article-specific: `article_author`, `article_published_time`, `article_modified_time`, `article_section`, `article_tags`
### `build_twitter_card()`
Build Twitter Card meta tags. These create rich previews on Twitter/X with images and descriptions, making your shared links more engaging.
**Parameters:**
- `card_type` (str): Type of card (default: "summary_large_image")
- `title` (str, optional): Title (falls back to og:title)
- `description` (str, optional): Description (falls back to og:description)
- `image` (str, optional): Image URL (falls back to og:image)
- `image_alt` (str, optional): Alt text for the image
- `site` (str, optional): Twitter handle for the website
- `creator` (str, optional): Twitter handle for the creator
### `build_favicon_links()`
Build favicon and icon link tags. These display your site's icon in browser tabs, bookmarks, and mobile home screens, helping users quickly identify your site.
**Parameters:**
- `favicon_ico` (str, optional): Path to .ico favicon (default: "/favicon.ico")
- `favicon_svg` (str, optional): Path to .svg favicon
- `apple_touch_icon` (str, optional): Path to Apple touch icon
- `icon_192` (str, optional): Path to 192x192 PNG icon
- `icon_512` (str, optional): Path to 512x512 PNG icon
- `manifest` (str, optional): Path to web app manifest (default: "/manifest.json")
### `build_json_ld()`
Build a JSON-LD structured data script tag. This helps search engines create rich snippets (star ratings, prices, event details, etc.) in search results, which can improve click-through rates.
**Parameters:**
- `json_ld_script` (str): JSON-LD structured data as a string
## Examples
See the [examples](./examples) directory for more detailed usage examples:
- `basic_usage.py` - Comprehensive examples of all library features
Run the examples:
```bash
uv run python examples/basic_usage.py
```
## Best Practices
### Image Sizes
For optimal social sharing:
- **Open Graph**: 1200 x 630 pixels (1.91:1 ratio)
- **Twitter**: 1200 x 675 pixels (16:9 ratio) for summary_large_image
- **Favicon**: 32x32 pixels for .ico, any size for .svg
- **Apple Touch Icon**: 180x180 pixels
- **Android Icons**: 192x192 and 512x512 pixels
### Content Guidelines
- **Title**: Keep under 60 characters for SEO
- **Description**: 150-160 characters for optimal search results
- **Image Alt Text**: Be descriptive for accessibility
- **Keywords**: Use 5-10 relevant keywords, don't stuff
### Twitter Cards
Twitter will automatically fall back to Open Graph tags if Twitter Card tags are not specified. You can use this to reduce duplication:
```python
# Minimal Twitter Card - falls back to og: tags
twitter_tags = build_twitter_card(
card_type="summary_large_image",
site="@mysite",
)
```
## Testing
To test that your site's header metadata is working, these are helpful links:
**Social Media Validators:**
- **Twitter/X Card Validator**: https://cards-dev.twitter.com/validator
- **LinkedIn Post Inspector**: https://www.linkedin.com/post-inspector/
- **Facebook Sharing Debugger**: https://developers.facebook.com/tools/debug/
**Open Graph Preview Tools:**
- https://www.opengraph.xyz/
- https://www.heymeta.com/
- https://socialsharepreview.com/
**SEO & Structured Data:**
- **Google Rich Results Test**: https://search.google.com/test/rich-results
- **Schema Markup Validator**: https://validator.schema.org/
- **W3C HTML Validator**: https://validator.w3.org/nu/
## License
This project is licensed under the same license as the Air framework.
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Raw data
{
"_id": null,
"home_page": null,
"name": "airheads",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.13",
"maintainer_email": null,
"keywords": "air, html, meta-tags, open-graph, seo, social-media, twitter-cards",
"author": "Kentro Tech",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/e5/85/3bfb468ca969523887d70c0c77b75e1054266bbb74afa53283155a37cc22/airheads-0.4.0.tar.gz",
"platform": null,
"description": "# airheads\n\n> [!WARNING]\n> While I think this library is ready to be used, I am not a SEO or metadata expert and have not extensively used it yet. I will release this library in V1 status after a few months of real usage when I am confident it is solid. I'd love help improving it!\n\nA helper library for building social media cards, SEO tags, and head elements with the [Air framework](https://github.com/airatplants/air).\n\nThere is an example app deployed here, for testing: https://airheads-production.up.railway.app/\n\n## Overview\n\n`airheads` makes it easy to create properly formatted meta tags for:\n\n- **SEO** - Standard meta tags that improve search engine visibility & ranking.\n- **Open Graph** - Meta tags that control how your content appears on Facebook, LinkedIn, and other social platforms.\n- **Twitter Cards** - Meta tags that create previews on Twitter/X. These make your shared links have images and descriptions.\n- **Favicons** - Small icons that appear in browser tabs, bookmarks, and home screens. They help users quickly identify your site.\n- **JSON-LD** - Structured data that search engines use to create snippets (star ratings, prices, etc.) in search results. This can improve click-through rates.\n\n## Installation\n\n```bash\npip install airheads\n\n# Or with uv\nuv add airheads\n```\n\n## Quick Start\n\n### Simple Usage\n\n```python\nimport air\nfrom airheads import build_social_head\n\nair.Html(\n build_social_head(\n title=\"My Awesome Site\",\n description=\"Welcome to my amazing website\",\n url=\"https://example.com\",\n image=\"https://example.com/og-image.jpg\",\n site_name=\"Example.com\",\n twitter_site=\"@example\",\n keywords=[\"python\", \"web\", \"framework\"],\n ),\n air.Body(\n air.H1(\"Welcome to My Site\")\n )\n)\n```\n\n### Advanced Usage\n\nBuild individual tag groups for more control:\n\n```python\nfrom air import Head, Title\nfrom airheads import (\n build_seo_meta,\n build_open_graph,\n build_twitter_card,\n build_favicon_links,\n)\n\n# Build individual tag groups\nseo_tags = build_seo_meta(\n description=\"An in-depth guide\",\n keywords=[\"python\", \"tutorial\"],\n canonical_url=\"https://example.com/article\",\n author=\"Jane Developer\",\n)\n\nog_tags = build_open_graph(\n title=\"My Article\",\n description=\"An in-depth guide\",\n url=\"https://example.com/article\",\n image=\"https://example.com/article-cover.jpg\",\n image_width=1200,\n image_height=630,\n type=\"article\",\n site_name=\"My Blog\",\n article_author=\"Jane Developer\",\n article_section=\"Tutorials\",\n article_tags=[\"python\", \"beginner\"],\n)\n\ntwitter_tags = build_twitter_card(\n card_type=\"summary_large_image\",\n site=\"@myblog\",\n creator=\"@janedev\",\n)\n\nfavicon_tags = build_favicon_links(\n favicon_ico=\"/static/favicon.ico\",\n favicon_svg=\"/static/favicon.svg\",\n apple_touch_icon=\"/static/apple-touch-icon.png\",\n)\n\nhead = Head(\n Title(\"My Article\"),\n *seo_tags,\n *og_tags,\n *twitter_tags,\n *favicon_tags,\n)\n```\n\n### JSON-LD Structured Data\n\nAdd structured data to help search engines display results (star ratings, recipes, events, etc.). The `airheads.schema` module provides helpers for common schema.org types so you don't have to manually build complex JSON structures:\n\n```python\nfrom airheads import build_social_head, build_json_ld\nfrom airheads.schema import build_article_schema\n\n# Easy way: Use schema helpers\njson_ld_str = build_article_schema(\n headline=\"My Article\",\n description=\"An informative piece\",\n image=\"https://example.com/article.jpg\",\n date_published=\"2025-01-15T10:00:00Z\",\n author_name=\"Jane Developer\",\n publisher_name=\"My Blog\",\n)\n\njson_ld_tag = build_json_ld(json_ld_str)\n\n# Include in head (pass as extra positional argument after required args)\nhead = build_social_head(\n \"My Article\", # title (positional)\n \"An article with structured data\", # description (positional)\n \"https://example.com/article\", # url (positional)\n \"https://example.com/article.jpg\", # image (positional)\n json_ld_tag, # Extra children come after required positional args\n)\n```\n\n#### Schema.org Helpers\n\nSchema.org types are structured data formats that tell search engines exactly what your content is (an article, product, FAQ, etc.) so they can display it with rich features like star ratings, breadcrumbs, or expandable answers.\n\nThe `airheads.schema` module includes helpers for the most commonly needed schema types:\n\n**Using Schema Helpers:**\n- **Combine multiple schemas on one page** - Most pages benefit from 2-3 types. For example, an article page often has `build_article_schema()` + `build_breadcrumb_schema()` + `build_person_schema()` for the author.\n- **Match schema to content type** - Use `build_article_schema()` for blog posts, `build_product_schema()` for product pages, etc. More specific is better than generic.\n- **Not every page needs structured data** - Focus on content you want to stand out in search results. Articles, products, FAQs, and tutorials benefit most.\n- **Pass multiple schemas to build_social_head()** - Create each schema with `build_json_ld()`, then pass them as positional args: `build_social_head(\"title\", \"desc\", \"url\", \"img\", schema1, schema2)`\n\n**Article & Content:**\n- `build_article_schema()` - Blog posts, news articles, documentation. Helps search engines show author, publish date, and creates rich snippets.\n- `build_video_schema()` - Video content. Makes videos eligible for Google Video Search and video rich results with thumbnails.\n\n**Navigation & Structure:**\n- `build_breadcrumb_schema()` - Navigation breadcrumbs. Shows your page's position in site hierarchy in search results.\n- `build_website_schema()` - Homepage/site info. Enables sitelink search box in Google search results.\n\n**Interactive Content:**\n- `build_faq_schema()` - FAQ sections. Can appear as expandable FAQ rich results in search, great for voice search.\n- `build_howto_schema()` - Step-by-step guides. Eligible for rich results showing steps directly in search.\n\n**Business & Identity:**\n- `build_product_schema()` - Products/services. Shows price, availability, reviews in search results. Critical for e-commerce.\n- `build_person_schema()` - Author/person profiles. Helps establish authorship and knowledge graph entries.\n- `build_organization_schema()` - Company/organization info. Enables knowledge panels and brand information.\n\nSee [schema.py](./src/airheads/schema.py) for complete API documentation and examples.\n\n## API Reference\n\n### `build_social_head()`\n\nThe main convenience function that builds a complete `Head` tag with all social and SEO elements. Use this when you want everything set up correctly in one call without managing individual tag groups.\n\n**Signature:**\n```python\nbuild_social_head(\n title: str,\n description: str,\n url: str,\n image: str,\n *extra_children: BaseTag,\n **kwargs\n) -> Head\n```\n\n**Parameters:**\n- `title` (str): Page title\n- `description` (str): Page description\n- `url` (str): Canonical URL\n- `image` (str): Social sharing image URL\n- `keywords` (list[str], optional): SEO keywords\n- `image_alt` (str, optional): Alt text for social image\n- `image_width` (int, optional): Image width in pixels (default: 1200)\n- `image_height` (int, optional): Image height in pixels (default: 630)\n- `site_name` (str, optional): Site name for Open Graph\n- `twitter_site` (str, optional): Twitter handle for the site (e.g., \"@mysite\")\n- `twitter_creator` (str, optional): Twitter handle for the creator\n- `author` (str, optional): Page author\n- `theme_color` (str, optional): Browser theme color\n- `og_type` (str): Open Graph type (default: \"website\")\n- `twitter_card` (str): Twitter card type (default: \"summary_large_image\")\n\n### `build_seo_meta()`\n\nBuild standard SEO meta tags. These improve your search engine visibility and help search engines understand your content's title, description, and keywords.\n\n**Parameters:**\n- `description` (str): Page description\n- `keywords` (list[str], optional): Keywords for the page\n- `canonical_url` (str, optional): Canonical URL\n- `robots` (str): Robots meta tag value (default: \"index, follow\")\n- `author` (str, optional): Page author\n- `viewport` (str): Viewport settings (default: \"width=device-width, initial-scale=1.0\")\n- `charset` (str): Character encoding (default: \"utf-8\")\n- `theme_color` (str, optional): Theme color for browser UI\n\n### `build_open_graph()`\n\nBuild Open Graph meta tags for Facebook, LinkedIn, and other platforms. These control how your content appears when shared on social media, including the preview image, title, and description.\n\n**Parameters:**\n- `title` (str): Content title\n- `description` (str): Content description\n- `url` (str): Canonical URL\n- `image` (str): Image URL for social sharing\n- `image_alt` (str, optional): Alt text for the image\n- `image_width` (int, optional): Image width in pixels\n- `image_height` (int, optional): Image height in pixels\n- `type` (str): Content type (default: \"website\")\n- `site_name` (str, optional): Site name\n- `locale` (str): Locale/language (default: \"en_US\")\n- Article-specific: `article_author`, `article_published_time`, `article_modified_time`, `article_section`, `article_tags`\n\n### `build_twitter_card()`\n\nBuild Twitter Card meta tags. These create rich previews on Twitter/X with images and descriptions, making your shared links more engaging.\n\n**Parameters:**\n- `card_type` (str): Type of card (default: \"summary_large_image\")\n- `title` (str, optional): Title (falls back to og:title)\n- `description` (str, optional): Description (falls back to og:description)\n- `image` (str, optional): Image URL (falls back to og:image)\n- `image_alt` (str, optional): Alt text for the image\n- `site` (str, optional): Twitter handle for the website\n- `creator` (str, optional): Twitter handle for the creator\n\n### `build_favicon_links()`\n\nBuild favicon and icon link tags. These display your site's icon in browser tabs, bookmarks, and mobile home screens, helping users quickly identify your site.\n\n**Parameters:**\n- `favicon_ico` (str, optional): Path to .ico favicon (default: \"/favicon.ico\")\n- `favicon_svg` (str, optional): Path to .svg favicon\n- `apple_touch_icon` (str, optional): Path to Apple touch icon\n- `icon_192` (str, optional): Path to 192x192 PNG icon\n- `icon_512` (str, optional): Path to 512x512 PNG icon\n- `manifest` (str, optional): Path to web app manifest (default: \"/manifest.json\")\n\n### `build_json_ld()`\n\nBuild a JSON-LD structured data script tag. This helps search engines create rich snippets (star ratings, prices, event details, etc.) in search results, which can improve click-through rates.\n\n**Parameters:**\n- `json_ld_script` (str): JSON-LD structured data as a string\n\n## Examples\n\nSee the [examples](./examples) directory for more detailed usage examples:\n\n- `basic_usage.py` - Comprehensive examples of all library features\n\nRun the examples:\n\n```bash\nuv run python examples/basic_usage.py\n```\n\n## Best Practices\n\n### Image Sizes\n\nFor optimal social sharing:\n- **Open Graph**: 1200 x 630 pixels (1.91:1 ratio)\n- **Twitter**: 1200 x 675 pixels (16:9 ratio) for summary_large_image\n- **Favicon**: 32x32 pixels for .ico, any size for .svg\n- **Apple Touch Icon**: 180x180 pixels\n- **Android Icons**: 192x192 and 512x512 pixels\n\n### Content Guidelines\n\n- **Title**: Keep under 60 characters for SEO\n- **Description**: 150-160 characters for optimal search results\n- **Image Alt Text**: Be descriptive for accessibility\n- **Keywords**: Use 5-10 relevant keywords, don't stuff\n\n### Twitter Cards\n\nTwitter will automatically fall back to Open Graph tags if Twitter Card tags are not specified. You can use this to reduce duplication:\n\n```python\n# Minimal Twitter Card - falls back to og: tags\ntwitter_tags = build_twitter_card(\n card_type=\"summary_large_image\",\n site=\"@mysite\",\n)\n```\n\n## Testing\n\nTo test that your site's header metadata is working, these are helpful links:\n\n**Social Media Validators:**\n- **Twitter/X Card Validator**: https://cards-dev.twitter.com/validator\n- **LinkedIn Post Inspector**: https://www.linkedin.com/post-inspector/\n- **Facebook Sharing Debugger**: https://developers.facebook.com/tools/debug/\n\n**Open Graph Preview Tools:**\n- https://www.opengraph.xyz/\n- https://www.heymeta.com/\n- https://socialsharepreview.com/\n\n**SEO & Structured Data:**\n- **Google Rich Results Test**: https://search.google.com/test/rich-results\n- **Schema Markup Validator**: https://validator.schema.org/\n- **W3C HTML Validator**: https://validator.w3.org/nu/\n\n## License\n\nThis project is licensed under the same license as the Air framework.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Helper library for building social media cards, SEO tags, and head elements with air",
"version": "0.4.0",
"project_urls": {
"Homepage": "https://github.com/kentro-tech/airheads",
"Issues": "https://github.com/kentro-tech/airheads/issues",
"Repository": "https://github.com/kentro-tech/airheads"
},
"split_keywords": [
"air",
" html",
" meta-tags",
" open-graph",
" seo",
" social-media",
" twitter-cards"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9e10da09ef2780821521923b20d0c2082629d9b429341431454ea15574aeb345",
"md5": "584178987762595c6b174c381e26c155",
"sha256": "ec009b5d5c5c36f38debbec7ae5c788f6c75506da602c2b86d1af4e91efde49a"
},
"downloads": -1,
"filename": "airheads-0.4.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "584178987762595c6b174c381e26c155",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.13",
"size": 13761,
"upload_time": "2025-10-25T14:41:21",
"upload_time_iso_8601": "2025-10-25T14:41:21.365481Z",
"url": "https://files.pythonhosted.org/packages/9e/10/da09ef2780821521923b20d0c2082629d9b429341431454ea15574aeb345/airheads-0.4.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5853bfb468ca969523887d70c0c77b75e1054266bbb74afa53283155a37cc22",
"md5": "f7b0bf192071cbdb0b7f68b77114121a",
"sha256": "9f4a801e046c1256e486af4bdea2bfa71655499a418d1d06946697369afabc1a"
},
"downloads": -1,
"filename": "airheads-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "f7b0bf192071cbdb0b7f68b77114121a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.13",
"size": 70725,
"upload_time": "2025-10-25T14:41:22",
"upload_time_iso_8601": "2025-10-25T14:41:22.428557Z",
"url": "https://files.pythonhosted.org/packages/e5/85/3bfb468ca969523887d70c0c77b75e1054266bbb74afa53283155a37cc22/airheads-0.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-25 14:41:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "kentro-tech",
"github_project": "airheads",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "air",
"specs": []
},
{
"name": "uvicorn",
"specs": []
}
],
"lcname": "airheads"
}