typeset-soren-n


Nametypeset-soren-n JSON
Version 2.0.6 PyPI version JSON
download
home_pagehttps://docs.rs/typeset/latest/typeset/
SummaryA DSL for defining source code pretty printers
upload_time2024-04-14 09:53:52
maintainerNone
docs_urlNone
authorSoren Norbaek <sorennorbaek@gmail.com>
requires_python>=3.8
licenseNone
keywords dsl pretty printer
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # typeset-py
An embedded DSL for defining source code pretty printers.

## Concept
The layout language is designed such that it fits well over a structurally recursive pass of some inductive data-structure; an abstract representation of the thing you wish to pretty print.

A layout is a tree of text literals composed together with either padded, unpadded compositions or with a line-break. The layout solver will select compositions in a layout and convert them into line-breaks, in order to make the layout fit within a given layout buffer width. It will do this in a greedy way, fitting as many literals on a line as possible. While doing so it will respect the annotated properties that the compositions are constructed under.

The solver being an abstract concept, is concretely implemented via two accompanying functions, a _compiler_ implemented as `compile`, and a _renderer_ implemented as `render`. Where the compiler takes a `Layout` and produces an immutable optimized layout called a `Document`. The renderer takes a `Document` along with arguments for indentation and buffer width, and produces the final text output.

## Null constructor
Sometimes in a data-structure there can be optional data (e.g. of type 'string option'), which when omitted should not have a layout. To make this case easy to handle, the `null` element of layout composition is available.

```Python
def layout_option(maybe_string: Optional[str]) -> Layout:
  match maybe_string:
    case None: return null()
    case data: return text(data)
```

The `null` will be eliminated from the layout by the compiler, and will not be rendered, e.g:
```Python
foobar = comp(text('foo'), comp(null(), text('bar'), False, False), False, False)
```

When rendering `foobar`, when the layout fits in the layout buffer, the result will be:
```Text
       7
       |
foobar |
       |
```

## Word literal constructor
These are the visible terminals that we are typesetting.
```Python
foo = text('foo')
```
When rendering `foo`, when the layout fits in the layout buffer, the result will be:
```Text
    4
    |
foo |
    |
```
It will simply overflow the buffer when it does not:
```Text
  2
  |
fo|o
  |
```

## Fix constructor
Sometimes you need to render a part of some layout as inline, i.e. that its compositions should not be broken; this is what the `fix` constructor is for. In other words a fixed layout is treated as a literal.

```Python
foobar = fix(comp(text('foo'), text('bar'), False, False))
```

When rendering the fixed layout `foobar`, when the layout fits in the layout buffer, the result will be:
```Text
       7
       |
foobar |
       |
```
It will overflow the buffer when it does not:
```Text
  2
  |
fo|obar
  |
```

## Grp constructor
The `grp` constructor prevents the solver from breaking its compositions, as long as there are compositions to the left of the group which could still be broken. This is useful when you need part of the layout to be treated as an item.

```Python
foobarbaz = comp(text('foo'), grp(comp(text('bar'), text('baz'), False, False)), False, False)
```

When rendering `foobarbaz`, when the layout fits in the layout buffer, the result will be:
```Text
          10
          |
foobarbaz |
          |
```
If one of the literals does not fit within the layout buffer, the result will be:
```Text
       7
       |
foo    |
barbaz |
       |
```
In contrast, had the group not been annotated, the result would have been:
```Text
       7
       |
foobar |
baz    |
       |
```
Since the composition between _bar_ and _baz_ was not guarded, and the layout solver is greedy and wants to fit as many literals on the same line as possible without overflowing the buffer. If the group still does not fit within the layout buffer, the group will be broken and the result will be:
```Text
    4
    |
foo |
bar |
baz |
    |
```

## Seq constructor
The `seq` constructor forces the solver to break all of its compositions as soon as one of them is broken. This is useful when you have data that is a sequence or is list-like in nature; when one item in the sequence is put on a new line, then so should the rest of the items in the sequence.

```Python
foobarbaz = seq(comp(text('foo'), comp(text('bar'), text('baz'), False, False), False, False))
```

When rendering `foobarbaz`, when the layout fits in the layout buffer, the result will be:
```Text
          10
          |
foobarbaz |
          |
```
If one of the literals does not fit within the layout buffer, the result will be:
```text
       7
       |
foo    |
bar    |
baz    |
       |
```
Since the compositions were part of a sequence; i.e when one of them broke, they all broke.

## Nest constructor
The `nest` constructor is simply there to provide an extra level of indentation for all literals that it ranges over. The width of each level of indentation is given as a parameter to the `render` function.

```Python
foobarbaz = comp(text('foo'), nest(comp(text('bar'), text('baz'), False, False)), False, False)
```

When rendering `foobarbaz` with a indentation width of 2, when the layout fits in the layout buffer, the result will be:
```Text
          10
          |
foobarbaz |
          |
```
If one of the literals does not fit within the layout buffer, the result will be;
```Text
       7
       |
foobar |
  baz  |
       |
```
And when the layout buffer will only hold one of the literals, the result will be:
```Text
    4
    |
foo |
  ba|r
  ba|z
    |
```
In this case _bar_ and _baz_ will overflow the layout buffer because of the given indentation.

## Pack constructor
The `pack` constructor defines an indentation level, but implicitly sets the indentation width to the index of the first literal in the layout it annotates. This is e.g. useful if you are pretty printing terms in a lisp-like language, where all other arguments to an application is often 'indented' to the same buffer index as the first argument.

```Python
foobarbaz = comp(text('foo'), pack(comp(text('bar'), text('baz'), False, False)), False, False)
```

When rendering `foobarbaz`, when the layout fits in the layout buffer, the result will be:
```Text
          10
          |
foobarbaz |
          |
```
When one of the literals do not fit, the result will be:
```Text
       7
       |
foobar |
   baz |
       |
```
When the layout buffer will only hold one literal, the result will be:
```Text
    4
    |
foo |
bar |
baz |
    |
```
The calculation of which buffer index to indent to is:
```Python
max((indent_level * indent_width), mark)
```
I.e the mark index will only be chosen if it is greater than the current indentation.

## Forced linebreak composition
The forced linebreak composition does just that, it is a pre-broken composition.

```Python
foobar = line(text('foo'), text('bar'))
```

When rendering `foobar`, whether or not the layout fits in the layout buffer, the result will be:
```Text
        8
        |
foo     |
bar     |
        |
```

## Unpadded composition
The unpadded composition will compose two layouts without any whitespace.

```Python
foobar = comp(text('foo'), text('bar'), False, False)
```

When rendering `foobar`, when the layout fits in the layout buffer, the result will be:
```Text
        8
        |
foobar  |
        |
```

## Padded composition
The padded composition will compose two layouts with whitespace.

```Python
foobar = comp(text('foo'), text('bar'), True, False)
```

When rendering `foobar`, when the layout fits in the layout buffer, the result will be:
```Text
        8
        |
foo bar |
        |
```

## Infix fixed compositions
The infix fixed compositions are syntactic sugar for compositions where the leftmost literal of the left operand, and the rightmost literal of the right operand are fixed together. I.e. the two following layouts are equivalent:

```Python
foobarbaz1 = comp(text('foo'), comp(text('bar'), text('baz'), False, True), False, False)
foobarbaz2 = comp(text('foo'), fix(comp(text('bar'), text('baz'), False, False)), False, False)
```

The example above might make it seem trivial, and that infix fixed compositions do not give you much value; but remember that you are composing layouts, not just literals. As such normalising the infix fixed composition is actually quite challenging since there are many different cases to consider when the fix is 'sunk in place' in the layout tree; this is part of what the compiler is responsible for.

Infix fixed compositions are useful when you need to fix a literal to the beginning or end of some other layout, e.g. separators between items in a sequence or list-like data structure. Without this feature you would again need to use an accumulator variable if you want to fix to the next literal, and probably need continuations if you want to fix to the last literal.

## Compiling the layout
Your custom layout function (pretty printer) will build a layout, which you then need to compile and render:
```Python
...
document = compile(layout)
result = render(document, 2, 80)
print(result)
...
```
I.e. the layout should be given to the compiler, which gives you back a document ready for rendering, which you in turn give to the renderer along with arguments for indentation width and layout buffer width; in the above case indentation width is 2 and the layout buffer width is 80.

The reason for splitting the solver into `compile` and `render`, is in case the result is to be displayed in a buffer where the width is variable; i.e. you will not need to re-compile the layout between renderings using varying buffer width.

## DSL and parsing
Additionally a small DSL has been defined, and a parser implemented, which allow you to write your layouts more succinctly (versus spelling out the full layout tree with the given constructors, which we've so far been doing throughout in this introduction!):
```Python
...
layout = parse('{0} @ null @ {1}', fragment1, fragment2)
...
```

The full grammar is as such:
```text
{i}       (Indexed variable for layout fragment substitution with index i)
null      (Constructor for the empty layout)
"x"       (Constructor for a word/text layout literal over a string x)
fix u     (Constructor for a fixed layout over a layout u)
grp u     (Constructor for a group layout over a layout u)
seq u     (Constructor for a sequence layout over a layout u)
nest u    (Constructor for a indented/nested layout over a layout u)
pack u    (Constructor for a indexed margin layout over a layout u)
u @ v     (Forced linebreak composition of layouts u and v)
u @@ v    (Forced double linebreak composition of layouts u and v)
u & v     (Unpadded composition of layouts u and v)
u !& v    (Infix fixed unpadded composition of layouts u and v)
u + v     (Padded composition of layouts u and v)
u !+ v    (Infix fixed padded composition of layouts u and v)
```

## Examples
For some examples of how to put all these layout constructors together into something more complex and useful, please reference in the examples directory.


            

Raw data

            {
    "_id": null,
    "home_page": "https://docs.rs/typeset/latest/typeset/",
    "name": "typeset-soren-n",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Soren Norbaek <sorennorbaek@gmail.com>",
    "keywords": "dsl, pretty, printer",
    "author": "Soren Norbaek <sorennorbaek@gmail.com>",
    "author_email": "Soren Norbaek <sorennorbaek@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/54/db/f9f5f8d6acb2e3285b5414fe4a9639e14f569d50ec30905a293fc6efebc1/typeset_soren_n-2.0.6.tar.gz",
    "platform": null,
    "description": "# typeset-py\nAn embedded DSL for defining source code pretty printers.\n\n## Concept\nThe layout language is designed such that it fits well over a structurally recursive pass of some inductive data-structure; an abstract representation of the thing you wish to pretty print.\n\nA layout is a tree of text literals composed together with either padded, unpadded compositions or with a line-break. The layout solver will select compositions in a layout and convert them into line-breaks, in order to make the layout fit within a given layout buffer width. It will do this in a greedy way, fitting as many literals on a line as possible. While doing so it will respect the annotated properties that the compositions are constructed under.\n\nThe solver being an abstract concept, is concretely implemented via two accompanying functions, a _compiler_ implemented as `compile`, and a _renderer_ implemented as `render`. Where the compiler takes a `Layout` and produces an immutable optimized layout called a `Document`. The renderer takes a `Document` along with arguments for indentation and buffer width, and produces the final text output.\n\n## Null constructor\nSometimes in a data-structure there can be optional data (e.g. of type 'string option'), which when omitted should not have a layout. To make this case easy to handle, the `null` element of layout composition is available.\n\n```Python\ndef layout_option(maybe_string: Optional[str]) -> Layout:\n  match maybe_string:\n    case None: return null()\n    case data: return text(data)\n```\n\nThe `null` will be eliminated from the layout by the compiler, and will not be rendered, e.g:\n```Python\nfoobar = comp(text('foo'), comp(null(), text('bar'), False, False), False, False)\n```\n\nWhen rendering `foobar`, when the layout fits in the layout buffer, the result will be:\n```Text\n       7\n       |\nfoobar |\n       |\n```\n\n## Word literal constructor\nThese are the visible terminals that we are typesetting.\n```Python\nfoo = text('foo')\n```\nWhen rendering `foo`, when the layout fits in the layout buffer, the result will be:\n```Text\n    4\n    |\nfoo |\n    |\n```\nIt will simply overflow the buffer when it does not:\n```Text\n  2\n  |\nfo|o\n  |\n```\n\n## Fix constructor\nSometimes you need to render a part of some layout as inline, i.e. that its compositions should not be broken; this is what the `fix` constructor is for. In other words a fixed layout is treated as a literal.\n\n```Python\nfoobar = fix(comp(text('foo'), text('bar'), False, False))\n```\n\nWhen rendering the fixed layout `foobar`, when the layout fits in the layout buffer, the result will be:\n```Text\n       7\n       |\nfoobar |\n       |\n```\nIt will overflow the buffer when it does not:\n```Text\n  2\n  |\nfo|obar\n  |\n```\n\n## Grp constructor\nThe `grp` constructor prevents the solver from breaking its compositions, as long as there are compositions to the left of the group which could still be broken. This is useful when you need part of the layout to be treated as an item.\n\n```Python\nfoobarbaz = comp(text('foo'), grp(comp(text('bar'), text('baz'), False, False)), False, False)\n```\n\nWhen rendering `foobarbaz`, when the layout fits in the layout buffer, the result will be:\n```Text\n          10\n          |\nfoobarbaz |\n          |\n```\nIf one of the literals does not fit within the layout buffer, the result will be:\n```Text\n       7\n       |\nfoo    |\nbarbaz |\n       |\n```\nIn contrast, had the group not been annotated, the result would have been:\n```Text\n       7\n       |\nfoobar |\nbaz    |\n       |\n```\nSince the composition between _bar_ and _baz_ was not guarded, and the layout solver is greedy and wants to fit as many literals on the same line as possible without overflowing the buffer. If the group still does not fit within the layout buffer, the group will be broken and the result will be:\n```Text\n    4\n    |\nfoo |\nbar |\nbaz |\n    |\n```\n\n## Seq constructor\nThe `seq` constructor forces the solver to break all of its compositions as soon as one of them is broken. This is useful when you have data that is a sequence or is list-like in nature; when one item in the sequence is put on a new line, then so should the rest of the items in the sequence.\n\n```Python\nfoobarbaz = seq(comp(text('foo'), comp(text('bar'), text('baz'), False, False), False, False))\n```\n\nWhen rendering `foobarbaz`, when the layout fits in the layout buffer, the result will be:\n```Text\n          10\n          |\nfoobarbaz |\n          |\n```\nIf one of the literals does not fit within the layout buffer, the result will be:\n```text\n       7\n       |\nfoo    |\nbar    |\nbaz    |\n       |\n```\nSince the compositions were part of a sequence; i.e when one of them broke, they all broke.\n\n## Nest constructor\nThe `nest` constructor is simply there to provide an extra level of indentation for all literals that it ranges over. The width of each level of indentation is given as a parameter to the `render` function.\n\n```Python\nfoobarbaz = comp(text('foo'), nest(comp(text('bar'), text('baz'), False, False)), False, False)\n```\n\nWhen rendering `foobarbaz` with a indentation width of 2, when the layout fits in the layout buffer, the result will be:\n```Text\n          10\n          |\nfoobarbaz |\n          |\n```\nIf one of the literals does not fit within the layout buffer, the result will be;\n```Text\n       7\n       |\nfoobar |\n  baz  |\n       |\n```\nAnd when the layout buffer will only hold one of the literals, the result will be:\n```Text\n    4\n    |\nfoo |\n  ba|r\n  ba|z\n    |\n```\nIn this case _bar_ and _baz_ will overflow the layout buffer because of the given indentation.\n\n## Pack constructor\nThe `pack` constructor defines an indentation level, but implicitly sets the indentation width to the index of the first literal in the layout it annotates. This is e.g. useful if you are pretty printing terms in a lisp-like language, where all other arguments to an application is often 'indented' to the same buffer index as the first argument.\n\n```Python\nfoobarbaz = comp(text('foo'), pack(comp(text('bar'), text('baz'), False, False)), False, False)\n```\n\nWhen rendering `foobarbaz`, when the layout fits in the layout buffer, the result will be:\n```Text\n          10\n          |\nfoobarbaz |\n          |\n```\nWhen one of the literals do not fit, the result will be:\n```Text\n       7\n       |\nfoobar |\n   baz |\n       |\n```\nWhen the layout buffer will only hold one literal, the result will be:\n```Text\n    4\n    |\nfoo |\nbar |\nbaz |\n    |\n```\nThe calculation of which buffer index to indent to is:\n```Python\nmax((indent_level * indent_width), mark)\n```\nI.e the mark index will only be chosen if it is greater than the current indentation.\n\n## Forced linebreak composition\nThe forced linebreak composition does just that, it is a pre-broken composition.\n\n```Python\nfoobar = line(text('foo'), text('bar'))\n```\n\nWhen rendering `foobar`, whether or not the layout fits in the layout buffer, the result will be:\n```Text\n        8\n        |\nfoo     |\nbar     |\n        |\n```\n\n## Unpadded composition\nThe unpadded composition will compose two layouts without any whitespace.\n\n```Python\nfoobar = comp(text('foo'), text('bar'), False, False)\n```\n\nWhen rendering `foobar`, when the layout fits in the layout buffer, the result will be:\n```Text\n        8\n        |\nfoobar  |\n        |\n```\n\n## Padded composition\nThe padded composition will compose two layouts with whitespace.\n\n```Python\nfoobar = comp(text('foo'), text('bar'), True, False)\n```\n\nWhen rendering `foobar`, when the layout fits in the layout buffer, the result will be:\n```Text\n        8\n        |\nfoo bar |\n        |\n```\n\n## Infix fixed compositions\nThe infix fixed compositions are syntactic sugar for compositions where the leftmost literal of the left operand, and the rightmost literal of the right operand are fixed together. I.e. the two following layouts are equivalent:\n\n```Python\nfoobarbaz1 = comp(text('foo'), comp(text('bar'), text('baz'), False, True), False, False)\nfoobarbaz2 = comp(text('foo'), fix(comp(text('bar'), text('baz'), False, False)), False, False)\n```\n\nThe example above might make it seem trivial, and that infix fixed compositions do not give you much value; but remember that you are composing layouts, not just literals. As such normalising the infix fixed composition is actually quite challenging since there are many different cases to consider when the fix is 'sunk in place' in the layout tree; this is part of what the compiler is responsible for.\n\nInfix fixed compositions are useful when you need to fix a literal to the beginning or end of some other layout, e.g. separators between items in a sequence or list-like data structure. Without this feature you would again need to use an accumulator variable if you want to fix to the next literal, and probably need continuations if you want to fix to the last literal.\n\n## Compiling the layout\nYour custom layout function (pretty printer) will build a layout, which you then need to compile and render:\n```Python\n...\ndocument = compile(layout)\nresult = render(document, 2, 80)\nprint(result)\n...\n```\nI.e. the layout should be given to the compiler, which gives you back a document ready for rendering, which you in turn give to the renderer along with arguments for indentation width and layout buffer width; in the above case indentation width is 2 and the layout buffer width is 80.\n\nThe reason for splitting the solver into `compile` and `render`, is in case the result is to be displayed in a buffer where the width is variable; i.e. you will not need to re-compile the layout between renderings using varying buffer width.\n\n## DSL and parsing\nAdditionally a small DSL has been defined, and a parser implemented, which allow you to write your layouts more succinctly (versus spelling out the full layout tree with the given constructors, which we've so far been doing throughout in this introduction!):\n```Python\n...\nlayout = parse('{0} @ null @ {1}', fragment1, fragment2)\n...\n```\n\nThe full grammar is as such:\n```text\n{i}       (Indexed variable for layout fragment substitution with index i)\nnull      (Constructor for the empty layout)\n\"x\"       (Constructor for a word/text layout literal over a string x)\nfix u     (Constructor for a fixed layout over a layout u)\ngrp u     (Constructor for a group layout over a layout u)\nseq u     (Constructor for a sequence layout over a layout u)\nnest u    (Constructor for a indented/nested layout over a layout u)\npack u    (Constructor for a indexed margin layout over a layout u)\nu @ v     (Forced linebreak composition of layouts u and v)\nu @@ v    (Forced double linebreak composition of layouts u and v)\nu & v     (Unpadded composition of layouts u and v)\nu !& v    (Infix fixed unpadded composition of layouts u and v)\nu + v     (Padded composition of layouts u and v)\nu !+ v    (Infix fixed padded composition of layouts u and v)\n```\n\n## Examples\nFor some examples of how to put all these layout constructors together into something more complex and useful, please reference in the examples directory.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A DSL for defining source code pretty printers",
    "version": "2.0.6",
    "project_urls": {
        "Homepage": "https://docs.rs/typeset/latest/typeset/",
        "documentation": "https://github.com/soren-n/typeset-py",
        "homepage": "https://github.com/soren-n/typeset-py",
        "repository": "https://github.com/soren-n/typeset-py"
    },
    "split_keywords": [
        "dsl",
        " pretty",
        " printer"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81ed46598abdbcae045d442ea4c973ee324cca221f3380c01fb0cdf047d3d2b8",
                "md5": "ef7fe8d9cd7ff155fd873f54e6cd4909",
                "sha256": "0d1443f81070c352dd9916eefec0b63a21e65007682ca9b32857bdfcb2a75b8c"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef7fe8d9cd7ff155fd873f54e6cd4909",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 395077,
            "upload_time": "2024-04-14T09:53:47",
            "upload_time_iso_8601": "2024-04-14T09:53:47.302772Z",
            "url": "https://files.pythonhosted.org/packages/81/ed/46598abdbcae045d442ea4c973ee324cca221f3380c01fb0cdf047d3d2b8/typeset_soren_n-2.0.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76a886c8bf6c873b29dbbc5919699f15367b65950354e59896b441589d5aaab5",
                "md5": "ca52ad4431d342ed4408ab12421df1cf",
                "sha256": "edc1dd7167f9311c2b677a924463c5b11720b6cb69ed32a9cdaf6d095a211b67"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ca52ad4431d342ed4408ab12421df1cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 388612,
            "upload_time": "2024-04-14T09:53:42",
            "upload_time_iso_8601": "2024-04-14T09:53:42.030735Z",
            "url": "https://files.pythonhosted.org/packages/76/a8/86c8bf6c873b29dbbc5919699f15367b65950354e59896b441589d5aaab5/typeset_soren_n-2.0.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0db7e16882712eeac6fc24f98b79c1a16e1885bb9d04cea9de753ce5c7aa254",
                "md5": "92f089a6d52926f19286e8c6dde18e60",
                "sha256": "5255657220e3fdc9525cc3c619cf5bf64fa9c8516462e82d8236fa511c2ad3bd"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92f089a6d52926f19286e8c6dde18e60",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 449975,
            "upload_time": "2024-04-14T09:52:00",
            "upload_time_iso_8601": "2024-04-14T09:52:00.979255Z",
            "url": "https://files.pythonhosted.org/packages/e0/db/7e16882712eeac6fc24f98b79c1a16e1885bb9d04cea9de753ce5c7aa254/typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "023f60f31f03981ec57843508134cc1b30eab87d7fa90d7a736ad657761057da",
                "md5": "f96616144f2732b3037a635f56550001",
                "sha256": "fcd4e91c5ccf828b8d6a4d3e31943fe83ce2bfe9f98185815e9010c12bb7c3fb"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f96616144f2732b3037a635f56550001",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 447627,
            "upload_time": "2024-04-14T09:52:17",
            "upload_time_iso_8601": "2024-04-14T09:52:17.964366Z",
            "url": "https://files.pythonhosted.org/packages/02/3f/60f31f03981ec57843508134cc1b30eab87d7fa90d7a736ad657761057da/typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ecd0e8ecf081c3609c64cb15b0d2dfffc13363ea0a06128dd00f468eec29d718",
                "md5": "031fd72a2a860c213cc09ff99d4b3e82",
                "sha256": "e4c5f0c19a386d5c87c37ed1bee5f8c5345662a75db2f608002b0d3737ab150b"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "031fd72a2a860c213cc09ff99d4b3e82",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 483273,
            "upload_time": "2024-04-14T09:52:34",
            "upload_time_iso_8601": "2024-04-14T09:52:34.800710Z",
            "url": "https://files.pythonhosted.org/packages/ec/d0/e8ecf081c3609c64cb15b0d2dfffc13363ea0a06128dd00f468eec29d718/typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ae38404495d09196b253b6aab714565695297e6c20638528baf3a7ac7d85437",
                "md5": "4d5b00d36b28f617ddc2392a583a583e",
                "sha256": "c16c0cf027249513a831ff62bc1b6c9ce94ba2f1ae3b7264909ca8166805aba0"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4d5b00d36b28f617ddc2392a583a583e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 517226,
            "upload_time": "2024-04-14T09:52:51",
            "upload_time_iso_8601": "2024-04-14T09:52:51.543471Z",
            "url": "https://files.pythonhosted.org/packages/9a/e3/8404495d09196b253b6aab714565695297e6c20638528baf3a7ac7d85437/typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6d0a5af2bcbcf8ccebcb852b5cc5c236f805ca58c2130a05a2cff7e932d0bd2",
                "md5": "26f26e44e1c9b6510ad31da326477033",
                "sha256": "1ed28d23dcd9dd27a654e9e85fcd771c55ad6722f1696039efde4137dead65ff"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26f26e44e1c9b6510ad31da326477033",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 442288,
            "upload_time": "2024-04-14T09:53:25",
            "upload_time_iso_8601": "2024-04-14T09:53:25.491276Z",
            "url": "https://files.pythonhosted.org/packages/f6/d0/a5af2bcbcf8ccebcb852b5cc5c236f805ca58c2130a05a2cff7e932d0bd2/typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa1ae0cb88a79828c30696623a489ccc4a8272eb2842995e61e9a29d87779cda",
                "md5": "b146eef830589d861aeda2827ddc0df6",
                "sha256": "e32edeafc1fd947e460ead23314bdfad5a87abeee70de522fac5695df84250d0"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b146eef830589d861aeda2827ddc0df6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 467062,
            "upload_time": "2024-04-14T09:53:09",
            "upload_time_iso_8601": "2024-04-14T09:53:09.901596Z",
            "url": "https://files.pythonhosted.org/packages/fa/1a/e0cb88a79828c30696623a489ccc4a8272eb2842995e61e9a29d87779cda/typeset_soren_n-2.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e54614c98e896bde46ec8586b8d30176dcc02bf7187a53804ac2251b285a8e77",
                "md5": "ae2256762183a365e54ddb449059c1f7",
                "sha256": "4dab0022074c297f239dcce8fd291a70062edcfd3bcbceba68ff3f65bb89b6ca"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ae2256762183a365e54ddb449059c1f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 266149,
            "upload_time": "2024-04-14T09:54:03",
            "upload_time_iso_8601": "2024-04-14T09:54:03.425354Z",
            "url": "https://files.pythonhosted.org/packages/e5/46/14c98e896bde46ec8586b8d30176dcc02bf7187a53804ac2251b285a8e77/typeset_soren_n-2.0.6-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7935cd31287a9d6311831533b2b3ae604eae1b6b6ed37e211f763076ec348429",
                "md5": "8f0c7bda1534ecc324be5c69c9ba9a6c",
                "sha256": "399d07c3a8947611a57b94e66790b73f55a374a0d5a91991d0edf9536627ebce"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8f0c7bda1534ecc324be5c69c9ba9a6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 283759,
            "upload_time": "2024-04-14T09:53:53",
            "upload_time_iso_8601": "2024-04-14T09:53:53.705363Z",
            "url": "https://files.pythonhosted.org/packages/79/35/cd31287a9d6311831533b2b3ae604eae1b6b6ed37e211f763076ec348429/typeset_soren_n-2.0.6-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0146112973d097354fb2a513b917acf4bd7f4985b54231dc5d855b49080a9962",
                "md5": "a4699fa251ab644e65e09c67c27446ce",
                "sha256": "610dff19a5cb44e874ff1025acc0d855dd5a26323c14283dc5991285aa2f42de"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4699fa251ab644e65e09c67c27446ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 395516,
            "upload_time": "2024-04-14T09:53:49",
            "upload_time_iso_8601": "2024-04-14T09:53:49.046056Z",
            "url": "https://files.pythonhosted.org/packages/01/46/112973d097354fb2a513b917acf4bd7f4985b54231dc5d855b49080a9962/typeset_soren_n-2.0.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e71aecc42a04937ec6c8adfe7134d7f007833d54505c9b0903470985b3a34273",
                "md5": "4ec8b2685b55341acf0faf83869140f8",
                "sha256": "1a09d4a7ec0c1a41928a56d071b1300a0f2d7694a03d33304ec63248817634a2"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4ec8b2685b55341acf0faf83869140f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 388516,
            "upload_time": "2024-04-14T09:53:43",
            "upload_time_iso_8601": "2024-04-14T09:53:43.712062Z",
            "url": "https://files.pythonhosted.org/packages/e7/1a/ecc42a04937ec6c8adfe7134d7f007833d54505c9b0903470985b3a34273/typeset_soren_n-2.0.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f3f391d9475822c269ce7ac50076c4760a15ef7b29d94df8c5af78f2b556a15",
                "md5": "b129f4306c47df4b0a506fed145f79c2",
                "sha256": "909d7fb1d9d6c476e69bd4fcd1d3318aea8c3340052e13a8877d17145faf2c55"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b129f4306c47df4b0a506fed145f79c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 449982,
            "upload_time": "2024-04-14T09:52:03",
            "upload_time_iso_8601": "2024-04-14T09:52:03.340265Z",
            "url": "https://files.pythonhosted.org/packages/4f/3f/391d9475822c269ce7ac50076c4760a15ef7b29d94df8c5af78f2b556a15/typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d569b1d28f9d516220887d41770a60fccb3241e8d3cb7b1193aa67dc6f5bf93",
                "md5": "bb4638ff3310fe541e99886581de44ef",
                "sha256": "489dc25bb55de2b7e08ac5f8f0cb526ccd5c302e33ca97d628b8c34d1d3a7f5f"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bb4638ff3310fe541e99886581de44ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 447749,
            "upload_time": "2024-04-14T09:52:20",
            "upload_time_iso_8601": "2024-04-14T09:52:20.103797Z",
            "url": "https://files.pythonhosted.org/packages/1d/56/9b1d28f9d516220887d41770a60fccb3241e8d3cb7b1193aa67dc6f5bf93/typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "984fd71fb8997cbb2e56cda251a14e9d13a95fcdeb5f7120ae27f0da7d986e38",
                "md5": "fa721cd1a6ac2a7694c4dd805036f845",
                "sha256": "34fad94eb51ae423d65d5e57c02194fa5ac6d58edbca992f18c9a392a38f559d"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fa721cd1a6ac2a7694c4dd805036f845",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 483193,
            "upload_time": "2024-04-14T09:52:36",
            "upload_time_iso_8601": "2024-04-14T09:52:36.596549Z",
            "url": "https://files.pythonhosted.org/packages/98/4f/d71fb8997cbb2e56cda251a14e9d13a95fcdeb5f7120ae27f0da7d986e38/typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e64535a51e6e0f96522172a29a68942314e211afd111a0b8f510a5516ef2609",
                "md5": "657b4da1acb5e916f03dd4099b2a07c6",
                "sha256": "26c61fe730f7d49f3827bfe16568fb1d5325a99570b2751ee4d3adf42396c095"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "657b4da1acb5e916f03dd4099b2a07c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 516931,
            "upload_time": "2024-04-14T09:52:54",
            "upload_time_iso_8601": "2024-04-14T09:52:54.094130Z",
            "url": "https://files.pythonhosted.org/packages/5e/64/535a51e6e0f96522172a29a68942314e211afd111a0b8f510a5516ef2609/typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99378f32fffe4109db05024ca74ac8430c5f290de9850a6c329480d05c0d4f03",
                "md5": "681690fd2a0294d62f2cf50d0af5a228",
                "sha256": "789f6835f6d05853d35cd755a3ea85c44670b9456259d20513d68767461586dd"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "681690fd2a0294d62f2cf50d0af5a228",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 442249,
            "upload_time": "2024-04-14T09:53:27",
            "upload_time_iso_8601": "2024-04-14T09:53:27.036946Z",
            "url": "https://files.pythonhosted.org/packages/99/37/8f32fffe4109db05024ca74ac8430c5f290de9850a6c329480d05c0d4f03/typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3cfe8494d8f017a3cf996cc41d6b1e0a1b53b2feb829295418ebdcdc9f2fd72f",
                "md5": "db4b0b344d5bcd41683195629af7c05e",
                "sha256": "ea8346f6a59a4f8ee312fe70e804790cd1c470d99a66d94961f9f47136c8725c"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "db4b0b344d5bcd41683195629af7c05e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 467264,
            "upload_time": "2024-04-14T09:53:11",
            "upload_time_iso_8601": "2024-04-14T09:53:11.561252Z",
            "url": "https://files.pythonhosted.org/packages/3c/fe/8494d8f017a3cf996cc41d6b1e0a1b53b2feb829295418ebdcdc9f2fd72f/typeset_soren_n-2.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "879d752b0f98f652bf7e3dc6185ed81b9ba2de394cc6a847a9a9d1b22f8f0534",
                "md5": "a30a60bf5a04343e6112e166678fbcd8",
                "sha256": "71bad2320917258c8c2d694ae83b1dfc4c49b059adb70c1e58d8c8e1dc389ff0"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a30a60bf5a04343e6112e166678fbcd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 266179,
            "upload_time": "2024-04-14T09:54:05",
            "upload_time_iso_8601": "2024-04-14T09:54:05.546144Z",
            "url": "https://files.pythonhosted.org/packages/87/9d/752b0f98f652bf7e3dc6185ed81b9ba2de394cc6a847a9a9d1b22f8f0534/typeset_soren_n-2.0.6-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4053270b5aa57d5d1c48f8c165c65d9df1a2cb629f6370013f3ddf116d13901",
                "md5": "88e9167b536cbd308ab2477061e577f5",
                "sha256": "f2a1c1c1825d2a9bf45abe85321b3e314490bed160e56c3a485f42bfa4957e93"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "88e9167b536cbd308ab2477061e577f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 283393,
            "upload_time": "2024-04-14T09:53:55",
            "upload_time_iso_8601": "2024-04-14T09:53:55.859738Z",
            "url": "https://files.pythonhosted.org/packages/e4/05/3270b5aa57d5d1c48f8c165c65d9df1a2cb629f6370013f3ddf116d13901/typeset_soren_n-2.0.6-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7aa6ab724bf6fb0d7e0465020e852d0b4033bb4353afb47dbc4f78c9eaab18d",
                "md5": "9d42dbfff3bc9cca30de82c21b7bc2f5",
                "sha256": "e36d22ecbc109ed30c06eeb03d7039653474ede7b7db7eaf69ed3af33f43a056"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d42dbfff3bc9cca30de82c21b7bc2f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 393100,
            "upload_time": "2024-04-14T09:53:51",
            "upload_time_iso_8601": "2024-04-14T09:53:51.152724Z",
            "url": "https://files.pythonhosted.org/packages/d7/aa/6ab724bf6fb0d7e0465020e852d0b4033bb4353afb47dbc4f78c9eaab18d/typeset_soren_n-2.0.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b89ea91ceecb9a74535edda703960fcc9abe0fca66d3ac43505e5b77a69f9674",
                "md5": "86843d5cd8ca6f6cf582b5d9ebf88dd2",
                "sha256": "f0b496252ea4b3bcd1f023e5b0905be22f7429cee09389d81e404ee8cccaa160"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "86843d5cd8ca6f6cf582b5d9ebf88dd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 387538,
            "upload_time": "2024-04-14T09:53:45",
            "upload_time_iso_8601": "2024-04-14T09:53:45.409223Z",
            "url": "https://files.pythonhosted.org/packages/b8/9e/a91ceecb9a74535edda703960fcc9abe0fca66d3ac43505e5b77a69f9674/typeset_soren_n-2.0.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b29cbfde539ce5f0d96f66852c55fa9ebf6883743088325f832adf425b5eaecf",
                "md5": "133f7af81c2772fbf2e324b5a9fd139b",
                "sha256": "4cab123ddbe81e036239589445925b237e0c0513d9f13d1b4be027e7e2750274"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "133f7af81c2772fbf2e324b5a9fd139b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 449580,
            "upload_time": "2024-04-14T09:52:05",
            "upload_time_iso_8601": "2024-04-14T09:52:05.300146Z",
            "url": "https://files.pythonhosted.org/packages/b2/9c/bfde539ce5f0d96f66852c55fa9ebf6883743088325f832adf425b5eaecf/typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71aedd462f769fb39d2f27ad5dc7f9dc86a07d6af18278a8f32ff22d6070d324",
                "md5": "be3f794ab92c1e0938a7a7ba89b958bb",
                "sha256": "4f92c1ab2964c0d4231a47b7ccbf3b92159d7425d7bdbc6e774d16e1aec90c6a"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "be3f794ab92c1e0938a7a7ba89b958bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 446155,
            "upload_time": "2024-04-14T09:52:21",
            "upload_time_iso_8601": "2024-04-14T09:52:21.793570Z",
            "url": "https://files.pythonhosted.org/packages/71/ae/dd462f769fb39d2f27ad5dc7f9dc86a07d6af18278a8f32ff22d6070d324/typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64c6148cf21d3b0f63bfd85f0572e57dc71f73a47d99ae25272a5e8c9c63ba32",
                "md5": "08fb0282cc02b0aa649252d752b21843",
                "sha256": "1682e56295352702b90ca40b39717858bf7673644e5fe93f984cb5b30f64ead4"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "08fb0282cc02b0aa649252d752b21843",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 481609,
            "upload_time": "2024-04-14T09:52:38",
            "upload_time_iso_8601": "2024-04-14T09:52:38.312539Z",
            "url": "https://files.pythonhosted.org/packages/64/c6/148cf21d3b0f63bfd85f0572e57dc71f73a47d99ae25272a5e8c9c63ba32/typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "955a159f0095ee0d54c9ec61be97c19fd06d5af13259c048e3fce2fc1f1e3eb0",
                "md5": "7f39fbe3d460eb0ffc0924cb0260cc81",
                "sha256": "067bc19e07bb75c9e6f235a0f1d1ec2b761431221108ab9c6af4b7e951b5579f"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f39fbe3d460eb0ffc0924cb0260cc81",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 505306,
            "upload_time": "2024-04-14T09:52:56",
            "upload_time_iso_8601": "2024-04-14T09:52:56.563048Z",
            "url": "https://files.pythonhosted.org/packages/95/5a/159f0095ee0d54c9ec61be97c19fd06d5af13259c048e3fce2fc1f1e3eb0/typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "add074e98648cfa3a66db8086313c2d096f601396e579f4eda05b90d265a6135",
                "md5": "ab3053a5c5b0d73c547774077f0a0e4c",
                "sha256": "60f904caa435cb886c0f09de4ada7c3b00965363aa40515ed1b6fc2a040f1610"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab3053a5c5b0d73c547774077f0a0e4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 441861,
            "upload_time": "2024-04-14T09:53:29",
            "upload_time_iso_8601": "2024-04-14T09:53:29.092844Z",
            "url": "https://files.pythonhosted.org/packages/ad/d0/74e98648cfa3a66db8086313c2d096f601396e579f4eda05b90d265a6135/typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a93ada78b988724a973f28ca78263772dc730778a7df1913a37840d650b55de2",
                "md5": "97387e534c06f8b75bf9875b03ae1626",
                "sha256": "9b6b9b0affab3384193465306b379c3b54f2d1b7068c681cb317a393b96a21a5"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "97387e534c06f8b75bf9875b03ae1626",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 464674,
            "upload_time": "2024-04-14T09:53:13",
            "upload_time_iso_8601": "2024-04-14T09:53:13.772623Z",
            "url": "https://files.pythonhosted.org/packages/a9/3a/da78b988724a973f28ca78263772dc730778a7df1913a37840d650b55de2/typeset_soren_n-2.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edc2e834bf52998258b5073dccff47d04c1ea1e2d551ff4f8fa03766fa535367",
                "md5": "4e2edf1f32f8017e8656761179addb48",
                "sha256": "55e56b223d29bda77fc2c89d331e93ffecb5b54a4c70abb8710c4a79971ed8ea"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4e2edf1f32f8017e8656761179addb48",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 265047,
            "upload_time": "2024-04-14T09:54:07",
            "upload_time_iso_8601": "2024-04-14T09:54:07.204491Z",
            "url": "https://files.pythonhosted.org/packages/ed/c2/e834bf52998258b5073dccff47d04c1ea1e2d551ff4f8fa03766fa535367/typeset_soren_n-2.0.6-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e9bdf0ee7e81d797fd811c6bd84de6fbf7e9b0b21693dc2283bf651557e9d8f",
                "md5": "feec46f6395f93b219e9fea442225f1b",
                "sha256": "a74a0dbf431aaf2a31639057769fc92075a739bb15bf42aadd49e8d981edf9c8"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "feec46f6395f93b219e9fea442225f1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 282191,
            "upload_time": "2024-04-14T09:53:57",
            "upload_time_iso_8601": "2024-04-14T09:53:57.640557Z",
            "url": "https://files.pythonhosted.org/packages/4e/9b/df0ee7e81d797fd811c6bd84de6fbf7e9b0b21693dc2283bf651557e9d8f/typeset_soren_n-2.0.6-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4d6906a0a9c568d81816a812333a7be624894c8999299e7e07c959ee09d5108",
                "md5": "61254200f329803131412ce960e2bb1a",
                "sha256": "94d8049efd8d346b110d549e42a2cb51747048fdad9446f678939e17badf539d"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "61254200f329803131412ce960e2bb1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 450343,
            "upload_time": "2024-04-14T09:52:07",
            "upload_time_iso_8601": "2024-04-14T09:52:07.640947Z",
            "url": "https://files.pythonhosted.org/packages/f4/d6/906a0a9c568d81816a812333a7be624894c8999299e7e07c959ee09d5108/typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9268ffa1de6c6dc4f8eb52990668483dd7b9627e48e959e287fb1055ec3ef6ee",
                "md5": "fc3d327a04780442d1ba3723afda9adc",
                "sha256": "f37690a20a746d46d25c58e07dfc3ef9ccb5ac018c7261777581ea27d635cddd"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fc3d327a04780442d1ba3723afda9adc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 448417,
            "upload_time": "2024-04-14T09:52:24",
            "upload_time_iso_8601": "2024-04-14T09:52:24.254883Z",
            "url": "https://files.pythonhosted.org/packages/92/68/ffa1de6c6dc4f8eb52990668483dd7b9627e48e959e287fb1055ec3ef6ee/typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f342bc85d8abbe5f78a3f50319872a142a9460689ef63d63e615a73349411f1f",
                "md5": "4ed3ed176b0d2efc5b3b27ac597e3282",
                "sha256": "59bf7b386730162f09675e891c0a228359c79d58fac26435985c91ba07896f62"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4ed3ed176b0d2efc5b3b27ac597e3282",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 483537,
            "upload_time": "2024-04-14T09:52:40",
            "upload_time_iso_8601": "2024-04-14T09:52:40.592084Z",
            "url": "https://files.pythonhosted.org/packages/f3/42/bc85d8abbe5f78a3f50319872a142a9460689ef63d63e615a73349411f1f/typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c12ebbb2e3b3fa97c828d44475d7f25fc6a4467f67a8dad8089722116453f5f",
                "md5": "f141843e25f8ae38b3f6c12e78164945",
                "sha256": "7c4327dcd72580cd57c0c9dd9fe8e068b55744ab35e2383857c360cb2e9448bd"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f141843e25f8ae38b3f6c12e78164945",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 517573,
            "upload_time": "2024-04-14T09:52:58",
            "upload_time_iso_8601": "2024-04-14T09:52:58.860083Z",
            "url": "https://files.pythonhosted.org/packages/8c/12/ebbb2e3b3fa97c828d44475d7f25fc6a4467f67a8dad8089722116453f5f/typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a42b39b09d9ff69fbbdbfd8a45db088d9897ba5e05c0ccb6ed8276ed8ebe426",
                "md5": "10c7ed62847a5ad52a0e4fc71ee39a1f",
                "sha256": "7bf21eea16f51216f74007f5bbc82ee8966a1bea306f84dcba039e9ec2ba7e70"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10c7ed62847a5ad52a0e4fc71ee39a1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 442082,
            "upload_time": "2024-04-14T09:53:31",
            "upload_time_iso_8601": "2024-04-14T09:53:31.130995Z",
            "url": "https://files.pythonhosted.org/packages/3a/42/b39b09d9ff69fbbdbfd8a45db088d9897ba5e05c0ccb6ed8276ed8ebe426/typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7753c81506799ed7b8a3bc0bb4b5aadf73391da9eb696d0dbca7b410da53e837",
                "md5": "68f4233cb192ce6cbbbd4c2fe783e847",
                "sha256": "970d69381f6d62fca9398a9ee90f57c190b5acfa94f0115e88d8899cceba70ed"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "68f4233cb192ce6cbbbd4c2fe783e847",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 466928,
            "upload_time": "2024-04-14T09:53:15",
            "upload_time_iso_8601": "2024-04-14T09:53:15.762939Z",
            "url": "https://files.pythonhosted.org/packages/77/53/c81506799ed7b8a3bc0bb4b5aadf73391da9eb696d0dbca7b410da53e837/typeset_soren_n-2.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "346b053ce57f77d9b42065a1393b8c88e4ee774ebe678e768e87fffa4d87594d",
                "md5": "ca2d8193fe863b72e57987f4592329c7",
                "sha256": "a4c9f968c178da1ee66a956b4603e2b6f13df3e6c55f6a364e929a1ac763fa19"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ca2d8193fe863b72e57987f4592329c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 265976,
            "upload_time": "2024-04-14T09:54:08",
            "upload_time_iso_8601": "2024-04-14T09:54:08.831262Z",
            "url": "https://files.pythonhosted.org/packages/34/6b/053ce57f77d9b42065a1393b8c88e4ee774ebe678e768e87fffa4d87594d/typeset_soren_n-2.0.6-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae3cc0c13e4e6dda1fc225dd6f6d68301d3c2fd23bb0c08bd6357a448a9ba97a",
                "md5": "aa298a45be6f08152de03f1d8c160d39",
                "sha256": "9fdf5e30c8abbd0331fd36505964a6941b4a04ab37a5b9527adfe5750c8b984e"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aa298a45be6f08152de03f1d8c160d39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 283312,
            "upload_time": "2024-04-14T09:53:59",
            "upload_time_iso_8601": "2024-04-14T09:53:59.295500Z",
            "url": "https://files.pythonhosted.org/packages/ae/3c/c0c13e4e6dda1fc225dd6f6d68301d3c2fd23bb0c08bd6357a448a9ba97a/typeset_soren_n-2.0.6-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36a67215f2ec63d325584876a66ff91eab99653a5598f3c8701f8d00d125e82f",
                "md5": "7a8686137b3db17f093a2199661e975b",
                "sha256": "5989f58cdff8adcd5820eb0eedcfdf4be14967066e6ff775f2974630500c1b19"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7a8686137b3db17f093a2199661e975b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 450510,
            "upload_time": "2024-04-14T09:52:09",
            "upload_time_iso_8601": "2024-04-14T09:52:09.298746Z",
            "url": "https://files.pythonhosted.org/packages/36/a6/7215f2ec63d325584876a66ff91eab99653a5598f3c8701f8d00d125e82f/typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94e5a2da7169b56361489a3057b1e4e789450137ddb539a29585c922c7d449f8",
                "md5": "6cb3c7a63a16c6c1e9e8dd207f4bb21d",
                "sha256": "98a81d726176461bb03cc1eeffcbcc9348ef472b6bb6ff3429290ab51a7ada05"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6cb3c7a63a16c6c1e9e8dd207f4bb21d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 448306,
            "upload_time": "2024-04-14T09:52:26",
            "upload_time_iso_8601": "2024-04-14T09:52:26.386070Z",
            "url": "https://files.pythonhosted.org/packages/94/e5/a2da7169b56361489a3057b1e4e789450137ddb539a29585c922c7d449f8/typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adda4fd358ed2fcdf7c741167f2ece9ceadf49f975e196ea443c14d04a727877",
                "md5": "a0c47383a3d31b8e3a88fbd8a8ac457e",
                "sha256": "0990145aa680a3c65f9d387a41b8059e363c866cdb9408e4778c8ade391c2a67"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a0c47383a3d31b8e3a88fbd8a8ac457e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 483550,
            "upload_time": "2024-04-14T09:52:42",
            "upload_time_iso_8601": "2024-04-14T09:52:42.859228Z",
            "url": "https://files.pythonhosted.org/packages/ad/da/4fd358ed2fcdf7c741167f2ece9ceadf49f975e196ea443c14d04a727877/typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22f3ad12b4a246e8d6593269ef7cd9712b8d9defebe875da2b0090f05e515d98",
                "md5": "b6436792ea0694a70a0689fc95b11e8a",
                "sha256": "40b0ccdb563c18159edc0a3a1c4a38ca2bed4b33b92a761d4ad30fa2678e4e74"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b6436792ea0694a70a0689fc95b11e8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 517741,
            "upload_time": "2024-04-14T09:53:00",
            "upload_time_iso_8601": "2024-04-14T09:53:00.596289Z",
            "url": "https://files.pythonhosted.org/packages/22/f3/ad12b4a246e8d6593269ef7cd9712b8d9defebe875da2b0090f05e515d98/typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd75763b7a4d1bb395c0954e339f8c6efc400a719d6e77df4fea119ba849560e",
                "md5": "71343ad45e19b12d47e88d92a8ea4651",
                "sha256": "4f1dc2aff012c71c963e2514cfca62f98380d4cd0dfa804c71ad26b689833104"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71343ad45e19b12d47e88d92a8ea4651",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 443207,
            "upload_time": "2024-04-14T09:53:33",
            "upload_time_iso_8601": "2024-04-14T09:53:33.291329Z",
            "url": "https://files.pythonhosted.org/packages/bd/75/763b7a4d1bb395c0954e339f8c6efc400a719d6e77df4fea119ba849560e/typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aaa5391cb1a39bd25e1612825c3d594d5c6a0ef1dcd4c96f8426cb89519c625a",
                "md5": "7387482970cfaf1e814f22b9798af57b",
                "sha256": "2bc147eadf404259e53c9f53023b1f0615f1839a880d5dfd2dc57fbe68736fb4"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7387482970cfaf1e814f22b9798af57b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 466937,
            "upload_time": "2024-04-14T09:53:17",
            "upload_time_iso_8601": "2024-04-14T09:53:17.709187Z",
            "url": "https://files.pythonhosted.org/packages/aa/a5/391cb1a39bd25e1612825c3d594d5c6a0ef1dcd4c96f8426cb89519c625a/typeset_soren_n-2.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb6f74da7b16b2907cbe24fc8156921f475bc0957c513dd4b7fa560396e49ff5",
                "md5": "8602445ba78a8f87967ced4f84c3d974",
                "sha256": "638a4d47c8bc5c6ab05136b976e684cf98eba74d3a3e74471771d6b40e2161a1"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "8602445ba78a8f87967ced4f84c3d974",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 266353,
            "upload_time": "2024-04-14T09:54:10",
            "upload_time_iso_8601": "2024-04-14T09:54:10.687064Z",
            "url": "https://files.pythonhosted.org/packages/cb/6f/74da7b16b2907cbe24fc8156921f475bc0957c513dd4b7fa560396e49ff5/typeset_soren_n-2.0.6-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d329199fb02fd92bd36914b71f3c36063f7c6af8d5fc7b4c29291438a7518b4",
                "md5": "2a4b62808f8228dbdaf31cff922a9563",
                "sha256": "8a9071c7b16018629cd540ab7e15577b7da5cab528dd1658d5a841b3d90f75e0"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2a4b62808f8228dbdaf31cff922a9563",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 283955,
            "upload_time": "2024-04-14T09:54:01",
            "upload_time_iso_8601": "2024-04-14T09:54:01.542537Z",
            "url": "https://files.pythonhosted.org/packages/6d/32/9199fb02fd92bd36914b71f3c36063f7c6af8d5fc7b4c29291438a7518b4/typeset_soren_n-2.0.6-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c25389e8f01cab6e60a1b196c544a8ea654f051865893c9b68d4271433a2fdeb",
                "md5": "704ea6a1e125d30b1094b97246c3c436",
                "sha256": "91d50ba58bbd1ef9950f7a6bb2a1f425061ff3da433aa2dbb1405cdd1d440b09"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "704ea6a1e125d30b1094b97246c3c436",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 450971,
            "upload_time": "2024-04-14T09:52:11",
            "upload_time_iso_8601": "2024-04-14T09:52:11.409343Z",
            "url": "https://files.pythonhosted.org/packages/c2/53/89e8f01cab6e60a1b196c544a8ea654f051865893c9b68d4271433a2fdeb/typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edf9692165682f59133930772ec74bde8d9338be726d616e4ade6e69c950d0b0",
                "md5": "7af95f3813db3872a444824404d6b0fd",
                "sha256": "d1e3f2f5b75ca2a2837218599feee6b35a99de4eafdec88dbe82a14e98be4f8a"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7af95f3813db3872a444824404d6b0fd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 448803,
            "upload_time": "2024-04-14T09:52:28",
            "upload_time_iso_8601": "2024-04-14T09:52:28.638821Z",
            "url": "https://files.pythonhosted.org/packages/ed/f9/692165682f59133930772ec74bde8d9338be726d616e4ade6e69c950d0b0/typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75b3e6bae9fb7113b46586f9be109be52f4dbe9feb4593a69ccb90ecca3ec640",
                "md5": "605ee358e8b3af015d12d978f3766e4b",
                "sha256": "33ad6f553b6890a6fbaec1f66a3995f20019009f1c7560de1ca7caa0d5234a23"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "605ee358e8b3af015d12d978f3766e4b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 482887,
            "upload_time": "2024-04-14T09:52:45",
            "upload_time_iso_8601": "2024-04-14T09:52:45.107915Z",
            "url": "https://files.pythonhosted.org/packages/75/b3/e6bae9fb7113b46586f9be109be52f4dbe9feb4593a69ccb90ecca3ec640/typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcb5dd5112d570c58670f6dc5e9e77bf0a2b71a1d770c91623e24b32f8f4e154",
                "md5": "6a63db1ccf7d0b3cf5dee4e70763b5a3",
                "sha256": "6fb170997ec5b5477f0026de7a75851ab602f7c4205fe0342c5beddd798abac9"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6a63db1ccf7d0b3cf5dee4e70763b5a3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 517504,
            "upload_time": "2024-04-14T09:53:03",
            "upload_time_iso_8601": "2024-04-14T09:53:03.207462Z",
            "url": "https://files.pythonhosted.org/packages/fc/b5/dd5112d570c58670f6dc5e9e77bf0a2b71a1d770c91623e24b32f8f4e154/typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f3982a70ceed555f1690aa6eae1b100c028c0ae9d1b2dc57eae53726064b335",
                "md5": "d145f7d5a063149ac37e7ece7e864c08",
                "sha256": "bbad5a79a143f3c542644f86af1660d89c806cd17e7b3065f1b2048506446653"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d145f7d5a063149ac37e7ece7e864c08",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 442447,
            "upload_time": "2024-04-14T09:53:35",
            "upload_time_iso_8601": "2024-04-14T09:53:35.182189Z",
            "url": "https://files.pythonhosted.org/packages/8f/39/82a70ceed555f1690aa6eae1b100c028c0ae9d1b2dc57eae53726064b335/typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed2cb1282cf3d204ff252f72c343045799272d962a658ced436e14fdf46d52c7",
                "md5": "c419c60c91778959e90683f253dcd86e",
                "sha256": "225924a0fe49f009b7c7944b7f4c8e67cd0e282b24807999586e796d6a1e4fb4"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c419c60c91778959e90683f253dcd86e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 467492,
            "upload_time": "2024-04-14T09:53:19",
            "upload_time_iso_8601": "2024-04-14T09:53:19.424399Z",
            "url": "https://files.pythonhosted.org/packages/ed/2c/b1282cf3d204ff252f72c343045799272d962a658ced436e14fdf46d52c7/typeset_soren_n-2.0.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aca17f55ea2d0512636ac549250f7065bbadaac590154aae4e38e3b251b5338d",
                "md5": "2265895bc1211b9a1bb445f7ab4ee57b",
                "sha256": "4f2fafbc8690491c078cf496e3db7f6a86130fa9b0dcb6382b201b59213695db"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2265895bc1211b9a1bb445f7ab4ee57b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 450563,
            "upload_time": "2024-04-14T09:52:13",
            "upload_time_iso_8601": "2024-04-14T09:52:13.866974Z",
            "url": "https://files.pythonhosted.org/packages/ac/a1/7f55ea2d0512636ac549250f7065bbadaac590154aae4e38e3b251b5338d/typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f5e9a693a5a6749a16df9e05344d7eb5e2bdb2afea2a526f2bdfc3d17a926bb",
                "md5": "42b512e1af8e83776139fdae14f219f9",
                "sha256": "0baa8affd38bc9ec096b990c1dead5ae102ccbf8a205ea83aef25f3f956f8e0b"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "42b512e1af8e83776139fdae14f219f9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 448347,
            "upload_time": "2024-04-14T09:52:30",
            "upload_time_iso_8601": "2024-04-14T09:52:30.508917Z",
            "url": "https://files.pythonhosted.org/packages/0f/5e/9a693a5a6749a16df9e05344d7eb5e2bdb2afea2a526f2bdfc3d17a926bb/typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5c063b5d3430ddba68f612540a6c7ca3afe4895c2842487a21231f0f57d9f4b",
                "md5": "b3874c4794a5031dd59d8c760644aed9",
                "sha256": "61be7ffed8b3fd49f99148a0e94a8b55df3f30617270d3679bce290824866fd5"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b3874c4794a5031dd59d8c760644aed9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 482636,
            "upload_time": "2024-04-14T09:52:47",
            "upload_time_iso_8601": "2024-04-14T09:52:47.085678Z",
            "url": "https://files.pythonhosted.org/packages/d5/c0/63b5d3430ddba68f612540a6c7ca3afe4895c2842487a21231f0f57d9f4b/typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2b5a9b7fc92577a57f81b13232443c84766cdd299a93e9bddb97c56d57a4a6b",
                "md5": "5b818b17a71ef87dab073f7dd3394eda",
                "sha256": "c07dad72a1bc87f2626c01902c4632ee41f53a84a1ee4266e201644dceea0772"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5b818b17a71ef87dab073f7dd3394eda",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 517158,
            "upload_time": "2024-04-14T09:53:05",
            "upload_time_iso_8601": "2024-04-14T09:53:05.219594Z",
            "url": "https://files.pythonhosted.org/packages/b2/b5/a9b7fc92577a57f81b13232443c84766cdd299a93e9bddb97c56d57a4a6b/typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c1be756e043e0cd5191aa94364072adf41cf24b78ae05a56787772d1b0f1faf",
                "md5": "61399d3277217ff6c42fe6b476c2100a",
                "sha256": "67b777fb8d697dfe53da996c7d7c388248b09966a646c9eb46a738a207d48712"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61399d3277217ff6c42fe6b476c2100a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 442113,
            "upload_time": "2024-04-14T09:53:37",
            "upload_time_iso_8601": "2024-04-14T09:53:37.475557Z",
            "url": "https://files.pythonhosted.org/packages/5c/1b/e756e043e0cd5191aa94364072adf41cf24b78ae05a56787772d1b0f1faf/typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2afed5e13703be3fd78795bbdbfb263815e59f2db8636ecd02328e91ac115faf",
                "md5": "70beaeca667c3d4fb612560290765394",
                "sha256": "50d38601f7856abb3dfcade67c19357b6726a80516ed742c703df8a219943371"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "70beaeca667c3d4fb612560290765394",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 466708,
            "upload_time": "2024-04-14T09:53:21",
            "upload_time_iso_8601": "2024-04-14T09:53:21.472953Z",
            "url": "https://files.pythonhosted.org/packages/2a/fe/d5e13703be3fd78795bbdbfb263815e59f2db8636ecd02328e91ac115faf/typeset_soren_n-2.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d964adf6344ede5037279474d374f8bf263901f03452420cc6490064707210a",
                "md5": "d26461931a119202aefbfd0e4e286135",
                "sha256": "350d5332e042d079bc090aecca82289ce5ddb72c459bc05161a0493160d68aa6"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d26461931a119202aefbfd0e4e286135",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 450872,
            "upload_time": "2024-04-14T09:52:16",
            "upload_time_iso_8601": "2024-04-14T09:52:16.260316Z",
            "url": "https://files.pythonhosted.org/packages/8d/96/4adf6344ede5037279474d374f8bf263901f03452420cc6490064707210a/typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdada8797ecc8e415304cf12fc72d67db60a90ff89af6f3744182051850d93af",
                "md5": "8e772bb89e360b571819def07533bc67",
                "sha256": "9b089b3cb2002f528cd93aa515903e6ce02c4afbd52739c4eb6202e37ebb9dec"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8e772bb89e360b571819def07533bc67",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 448782,
            "upload_time": "2024-04-14T09:52:33",
            "upload_time_iso_8601": "2024-04-14T09:52:33.094699Z",
            "url": "https://files.pythonhosted.org/packages/cd/ad/a8797ecc8e415304cf12fc72d67db60a90ff89af6f3744182051850d93af/typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c39a4bfa6118221b9cebb1e4e2806b96747e23483a183a296c49fd1fbc5bb93d",
                "md5": "d347a0d4b1a0d64ee1647ef2b7c78899",
                "sha256": "1adcb2321cd8188702022ee1f4ad8198c43fe4d894cc97923ff8a9bb1635d812"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d347a0d4b1a0d64ee1647ef2b7c78899",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 482796,
            "upload_time": "2024-04-14T09:52:49",
            "upload_time_iso_8601": "2024-04-14T09:52:49.039258Z",
            "url": "https://files.pythonhosted.org/packages/c3/9a/4bfa6118221b9cebb1e4e2806b96747e23483a183a296c49fd1fbc5bb93d/typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "062ee66010638de7786f1b12c5e4056476cace051cd2dc45ebb397eb7ae1f524",
                "md5": "effe7fea09fe66d66185af1c96a97bee",
                "sha256": "ca98ce1c0549f5ff9165c9c483df3a2a34b90ff817ccfac1d6697d94005d170f"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "effe7fea09fe66d66185af1c96a97bee",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 517347,
            "upload_time": "2024-04-14T09:53:07",
            "upload_time_iso_8601": "2024-04-14T09:53:07.602571Z",
            "url": "https://files.pythonhosted.org/packages/06/2e/e66010638de7786f1b12c5e4056476cace051cd2dc45ebb397eb7ae1f524/typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26019f013879eb4f84055e173513e5f07df80fd066e3aa8730a94054bbc40fa8",
                "md5": "3b080f165d8cf6affacf1acdb24e32af",
                "sha256": "e7408ce9493f75af1456b05c7763522af377d67b1879cdd230b1ef5275751abc"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b080f165d8cf6affacf1acdb24e32af",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 442114,
            "upload_time": "2024-04-14T09:53:39",
            "upload_time_iso_8601": "2024-04-14T09:53:39.593476Z",
            "url": "https://files.pythonhosted.org/packages/26/01/9f013879eb4f84055e173513e5f07df80fd066e3aa8730a94054bbc40fa8/typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d788face570138019a37b7ca677349ea29a49a042c5fa2f4ab52f2a71bcff5e",
                "md5": "2dd420441b417f8fd8efe4a555ce92eb",
                "sha256": "dafc3ce82a673d7babaa12a366c2bbade6b42164a8e7555aa4118a5584effa83"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2dd420441b417f8fd8efe4a555ce92eb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 467483,
            "upload_time": "2024-04-14T09:53:23",
            "upload_time_iso_8601": "2024-04-14T09:53:23.080808Z",
            "url": "https://files.pythonhosted.org/packages/2d/78/8face570138019a37b7ca677349ea29a49a042c5fa2f4ab52f2a71bcff5e/typeset_soren_n-2.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54dbf9f5f8d6acb2e3285b5414fe4a9639e14f569d50ec30905a293fc6efebc1",
                "md5": "ee0ae9a00615e73177d4218dd30a7174",
                "sha256": "fd90b81861079c09b0bf31d516f61ee117284ced9c4cde456fa7590f4a3648f1"
            },
            "downloads": -1,
            "filename": "typeset_soren_n-2.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "ee0ae9a00615e73177d4218dd30a7174",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 28298,
            "upload_time": "2024-04-14T09:53:52",
            "upload_time_iso_8601": "2024-04-14T09:53:52.459082Z",
            "url": "https://files.pythonhosted.org/packages/54/db/f9f5f8d6acb2e3285b5414fe4a9639e14f569d50ec30905a293fc6efebc1/typeset_soren_n-2.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-14 09:53:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "soren-n",
    "github_project": "typeset-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "typeset-soren-n"
}
        
Elapsed time: 0.22668s