Skip to main content

fabricatio-typst

MIT Python Versions PyPI Version PyPI Downloads PyPI Downloads Bindings: PyO3 Build Tool: uv + maturin

Academic article generation and Typst document tooling, built on Fabricatio's event-based agent framework.

Installation

pip install fabricatio[typst]

For RAG-backed article writing:

pip install fabricatio[typst,rag]

Overview

Two layers compose this package:

Rust extension (fabricatio_typst.rust) — performance-critical utilities:

  • TeX-to-Typst math conversion (raw LaTeX and delimited $/$$/\(/\[ math)
  • BibTeX bibliography management with fuzzy citation lookup
  • Typst comment manipulation and YAML front-matter handling
  • Markdown section extraction

Python layer — agent-based academic content generation:

  • Extract paper essences and generate structured research proposals
  • Build hierarchical article outlines and generate full content
  • RAG-backed article writing with citation-aware iterative retrieval
  • Store and query article chunks in LanceDB
  • Compile .typ documents to PDF, PNG, or SVG via the typst compiler

Rust API

from fabricatio_typst.rust import (
    BibManager,
    tex_to_typst,
    convert_all_tex_math,
    comment,
    uncomment,
    strip_comment,
    split_out_metadata,
    to_metadata,
    extract_body,
    replace_thesis_body,
    extract_sections,
    fix_misplaced_labels,
)

TeX Conversion

Function Description
tex_to_typst(string) Convert raw LaTeX code to Typst math
convert_all_tex_math(string) Convert $, $$, \(, \[ math delimiters to Typst $
tex_to_typst(r"\frac{1}{\sqrt{x^2 + 1}}")
# => '#frac(1, sqrt(x^2 + 1))'

convert_all_tex_math("Einstein's $E = mc^2$ is famous.")
# => "Einstein's $E = m c^2$ is famous."

Comment Utilities

Function Description
comment(string) Prepend // to every line
uncomment(string) Remove // prefix from every line
strip_comment(string) Strip leading and trailing comment lines

BibManager

Loads a BibTeX bibliography file and provides fuzzy citation lookup.

bib = BibManager("references.bib")
cite_key = bib.get_cite_key_by_title("Attention Is All You Need")
# => "vaswani2017attention"

key = bib.get_cite_key_fuzzy("transformers attention mechanism")
authors = bib.get_author_by_key(key)
abstract = bib.get_abstract_by_key(key)
Method Description
get_cite_key_by_title(title) Exact-match citation key by title
get_cite_key_by_title_fuzzy(title) Fuzzy-match citation key by title
get_cite_key_fuzzy(query) Fuzzy-match citation key by arbitrary query
list_titles(is_verbatim=False) List all bibliography titles
get_author_by_key(key) Authors for a citation key
get_year_by_key(key) Publication year for a citation key
get_abstract_by_key(key) Abstract for a citation key
get_title_by_key(key) Title for a citation key
get_field_by_key(key, field) Arbitrary BibTeX field for a citation key

Document Utilities

Function Description
split_out_metadata(string) Extract YAML front matter as (metadata, rest)
to_metadata(data) Serialize Python object to YAML comment block
extract_body(string, wrapper) Extract content between wrapper markers
replace_thesis_body(string, wrapper, new_body) Replace content between wrapper markers
extract_sections(string, level=1, section_char="#") Parse markdown sections at given header level
fix_misplaced_labels(string) Move \<label\> tags outside display math blocks

Python Models

Hierarchical article representation from proposal through completed paper:

Model Description
ArticleProposal Research proposal: problems, approaches, methods, aims, keywords
ArticleEssence Semantic fingerprint: title, authors, equations, figures, contributions
ArticleOutline Hierarchical outline: chapters → sections → subsections
ArticleChapterOutline Chapter-level outline node
ArticleSectionOutline Section-level outline node
ArticleSubsectionOutline Subsection-level outline node
Article Complete paper with full content and validation
ArticleChapter Chapter with sections
ArticleSection Section with subsections
ArticleSubsection Subsection with paragraphs
Paragraph Structured paragraph blueprint with word count
ArticleChunk LanceDB-storable chunk with bibtex metadata
ArticleEssenceStorable ArticleEssence with LanceDB storage capability
CitationManager Deduplicated, iteratively expanded citation set for RAG
ChunkKwargs TypedDict for chunking parameters

Actions

Each action is a Fabricatio Action — an async callable unit in the agent workflow. Available actions:

Content Extraction

Action Description
ExtractArticleEssence Extract article essences from files on disk
FixArticleEssence Fix extracted essences using BibTeX reference data
ExtractOutlineFromRaw Parse an outline from raw text

Generation

Action Description
GenerateArticleProposal Generate a research proposal from a briefing
GenerateInitialOutline Build an outline from a proposal
GenerateArticle Generate full article content from an outline
LoadArticle Load a complete article from outline + Typst code
WriteChapterSummary Write summaries for each chapter
WriteResearchContentSummary Write a research content summary

RAG-Backed Writing

Action Description
WriteArticleContentRAG Write article content with citation-aware RAG
ArticleConsultRAG Retrieve relevant citations for article sections
TweakArticleLancedbRAG Refine article content using LanceDB RAG
ChunkArticle Split an article into storeable chunks
StoreArticleEssence Store article essences into LanceDB

Compilation

Action Description
CompileTypstDocument Compile a .typ file or source string to PDF/PNG/SVG
CompileArticle Compile a previously dumped article .typ to PDF
from pathlib import Path
from fabricatio_typst.actions.article import CompileArticle, CompileTypstDocument

# Compile a standalone .typ file
result = await CompileTypstDocument().act({
    "typst_source": Path("paper.typ"),
    "output_path": Path("paper.pdf"),
})
# result["compiled_path"] → Path("paper.pdf")

# Compile a generated article (after DumpFinalizedOutput)
result = await CompileArticle().act({
    "article_path": Path("output.typ"),
})
# result["compiled_path"] → Path("output.pdf")

Citation Capability

CitationLancedbRAG — citation-aware iterative search that expands queries over multiple rounds and deduplicates by bibtex key.

Workflows

Pre-composed action pipelines:

Workflow Steps
WriteOutlineCorrectedWorkFlow GenerateArticleProposalGenerateInitialOutline → dump output
CompileArticleWorkflow Compile a .typ article to PDF
StoreArticle ExtractArticleEssenceStoreArticleEssence

Usage:

from fabricatio_typst.actions.article import GenerateArticleProposal, GenerateInitialOutline
from fabricatio_typst.models.article_proposal import ArticleProposal
from fabricatio_typst.models.article_outline import ArticleOutline

async def generate_outline():
    result = await GenerateArticleProposal().act({
        "article_briefing": "Quantum error correction in near-term devices",
    })
    proposal: ArticleProposal = result["article_proposal"]
    print(f"Proposal: {proposal.title}")

    result = await GenerateInitialOutline().act({
        "article_proposal": proposal,
    })
    outline: ArticleOutline = result["initial_article_outline"]
    print(f"Outline chapters: {len(outline.chapters)}")

Dependencies

  • fabricatio-core — agent framework and core models
  • fabricatio-tool — filesystem utilities
  • fabricatio-capabilities — capability mixins (Extract, Censor, etc.)
  • typst — Typst compiler Python bindings (for compilation actions)

Optional for article generation workflows:

  • fabricatio-actions — output dumping actions
  • fabricatio-improve, fabricatio-rule — content improvement and validation

Optional for RAG features:

  • fabricatio-lancedb — vector storage and retrieval

CLI

The package includes the ttm (TeX to Typst Math) binary:

# Convert math in a file
ttm file input.md -o output.md

# Convert raw LaTeX string
ttm raw "\frac{a}{b}"

# Convert a string with math delimiters
ttm string "The formula $\int_0^\infty e^{-x} dx$ is useful."

Configuration

All options below are read through the fabricatio configuration chain (see the Configuration Guide). Set them under the [ext.typst] table in fabricatio.toml, equivalently under [tool.fabricatio.ext.typst] in pyproject.toml, or via FABRICATIO_EXT__TYPST__<FIELD_UPPER> environment variables.

[ext.typst]
chap_summary_template = "built-in/chap_summary"
Option Type Default Description
chap_summary_template str "built-in/chap_summary" The name of the chap summary template which will be used to generate a chapter summary.
research_content_summary_template str "built-in/research_content_summary" The name of the research content summary template which will be used to generate a summary of research content.
paragraph_sep str "// - - -" The separator used to separate paragraphs.
article_wrapper str "// =-=-=-=-=-=-=-=-=-=" The wrapper used to wrap an article.
extract_essence_template str "built-in/extract_essence" The name of the extract essence template which will be used to extract the essence of a text.
generate_outline_template str "built-in/generate_outline" The name of the generate outline template which will be used to generate an outline.

Access at runtime: from fabricatio_typst.config import typst_config.

License

MIT — see LICENSE

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fabricatio_typst-0.1.34-cp314-cp314-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.14Windows x86-64

fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

fabricatio_typst-0.1.34-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fabricatio_typst-0.1.34-cp313-cp313-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.13Windows x86-64

fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

fabricatio_typst-0.1.34-cp313-cp313-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fabricatio_typst-0.1.34-cp312-cp312-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86-64

fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

fabricatio_typst-0.1.34-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

File details

Details for the file fabricatio_typst-0.1.34-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5474fbb7dd40de8dd7c0dba1eae4c912efcccaebfbe6e0cf34bad365d483384c
MD5 506c6beb77bf11364fb83f4c74622be1
BLAKE2b-256 fcfdb25e4845ee27e547bcbda2722ee2c1a030257fcd11a761efdff73a71e31a

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 88b12cad7ce489b4fb1b36c86494d509ea93f65f54bfa213581aca63804c3978
MD5 00d0cdf13a7dc8ff931e3be2ea1b530b
BLAKE2b-256 fc5d109a5c2c26fe097c640fbe6cdd688a9c69a2b518342f0e437c870d3a2dc2

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 cdc0e919eea9c27d0e6281622bc8a1cf849526907668d526e0299fd21368cd1c
MD5 10e46bc0f007afc8583a629de252f4cd
BLAKE2b-256 df4c43445859348c8d8db2dcba5624242468604e3dc0fea7e925b198ead1ef3c

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 405e0e77362c7cba54eb642e0124383b0bd26c73a8c25aa644a302026da28096
MD5 8e7b4d806c8c326b933876ae154466a5
BLAKE2b-256 36ca4f328d19313b10e72ffb8e5c4b84142cc76180b1eb0348e66d1a436b9b66

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 30de9a666c0d69d116d4732602845683ae9fb2cdd35a207c70ccc47b410d6b61
MD5 35bc1eccca65de3bbcb9617801b0336b
BLAKE2b-256 c73e1510a348bf10394567fe7f6576ef811944c9cafd8f59b1f0cefa98afd3dd

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ce4d2beef12e5b518b3a6a2e28ea3e3e39a9be275c79f353ca95351be86bec91
MD5 e7f710340b975bc023f4249aa3d00068
BLAKE2b-256 2f588105e3e71ea21274c4f73ddd746acfdfda90905b484aa0514572caf386ec

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c9f376bcc0f5eb056674cc3f465bd02d3c64698ec80c51feb14a0075c7dbdb7d
MD5 ff2a0454f5cff7646fbdeff16e6d5822
BLAKE2b-256 93ce108bb697d847398ec0e3eab80d276901f96ff2c476f3bbb8e41fd581d9a9

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bed16ed773bdbd97c464f6de0748b53a3c9fa4c3da76d373536de0f82fd30bc6
MD5 7ca2790624d70725b6ba1ca376775275
BLAKE2b-256 591e3d174c8be7ade834374b4b32280a6cc30ca9c58f32312636b0a0f776719d

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0f8a858c143820425094248835964cc646884838b3c72561fce4952bb2ea090b
MD5 1cb361a197cc923b756766757d62dc72
BLAKE2b-256 e3c1c355fea9e177ef45e00d7dc45427eab54fdde2f2241573652e43662f5af7

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 3492dc7bb518b9209a122ee7cd6ad7ab9293db430f3129d8fa453d4ff1728180
MD5 d873685a729f525177f9fbe2cda76c85
BLAKE2b-256 9eaf821b64eda1590aa404daf57d50e093ae3c051bacb69eba0af1780ce613c0

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 6c27397e9d2f7ad23ff182fbd47bdea4d4dc3b694991e9376cc8de4ad9047348
MD5 67b6dfd6ed9da59b150203ad83ff0ff1
BLAKE2b-256 c7cec96276bf60f99e9c1a909a897fa9d61c2674af1bcecf531dde6ab858fa7f

See more details on using hashes here.

File details

Details for the file fabricatio_typst-0.1.34-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fabricatio_typst-0.1.34-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_typst-0.1.34-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87f137e0f82415421d86b0acdc3257060a5244206d6038049222d18609cb94a0
MD5 a3f03481b6f22ed1d1281399789a8aa0
BLAKE2b-256 d8ded77bbbef4eddb651fba2fb8fe0a8fad90ee7a02b5dc2590e109925b59d44

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.34 This release

12 files

0.1.33

12 files

0.1.32

12 files

0.1.31

12 files

0.1.30

12 files

0.1.28

12 files

0.1.27

12 files

0.1.25

12 files

0.1.24

12 files

0.1.23

12 files

0.1.22

12 files

0.1.21

12 files

0.1.20

12 files

0.1.19

8 files

0.1.18

8 files

0.1.17

8 files

0.1.16

8 files

0.1.15

8 files

0.1.14

8 files

0.1.13

8 files

0.1.12

8 files

0.1.11

8 files

0.1.10

8 files

0.1.9

4 files

0.1.8

4 files

0.1.7

3 files

0.1.6

3 files

0.1.5

4 files

0.1.4

4 files

0.1.3

4 files

0.1.1

4 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page