# Stencila SDK for Python
**Bindings for using Stencila from Python**
<a href="https://pypi.org/project/stencila/">
<img src="https://img.shields.io/pypi/v/stencila.svg?logo=python&label=stencila&style=for-the-badge&color=1d3bd1&logoColor=66ff66&labelColor=3219a8">
</a>
## 👋 Introduction
This package provides Python classes for types in the [Stencila Schema](https://github.com/stencila/stencila/tree/main/schema#readme) and bindings to core [Stencila Rust](https://github.com/stencila/stencila/tree/main/rust#readme) functions.
The primary intended audience is developers who want to develop their own tools on top of Stencila's core functionality. For example, with this package you could construct Stencila documents programmatically using Python and write them to multiple formats (e.g. Markdown, JATS XML, PDF).
> [!IMPORTANT]
> At present, there are only bindings to functions for format conversion, but future versions will expand this scope to include document management (e.g branching and merging) and execution.
## 📦 Install
```console
python -m pip install stencila
```
> [!NOTE]
> If you encounter problems with the above command, you may need to upgrade Pip using `pip install --upgrade pip`.
>
> This is due to a [change in the dependency resolver](https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020) in Pip 20.3.
## ⚡ Usage
### Types
The `types` module contains representations of all types in the Stencila Schema.
#### Object types
Object types (aka product types) in the Stencila Schema are represented as a `dataclass`. At present the `__init__` function requires keywords to be used (this is likely to be improved soon).
For example, to construct an article with a single "Hello world!" paragraph, you can construct `Article`, `Paragraph` and `Text`:
```py
from stencila.types import Article, CreativeWork, Paragraph, Text, Thing
article = Article(content=[Paragraph(content=[Text(value="Hello world!")])])
assert isinstance(article, Article)
assert isinstance(article, CreativeWork)
assert isinstance(article, Thing)
assert isinstance(article.content[0], Paragraph)
assert isinstance(article.content[0].content[0], Text)
```
#### Union types
Union types (aka sum types) in the Stencila Schema are represented as `typing.Union`. For example, the `Block` union type is defined like so:
```py
Block = Union[
Call,
Claim,
CodeBlock,
CodeChunk,
Division,
Figure,
For,
Form,
Heading,
...
```
#### Enumeration types
Enumeration types in the Stencila Schema are represented as `StrEnum`. For example, the `CitationIntent` enumeration is defined like so:
```py
class CitationIntent(StrEnum):
"""
The type or nature of a citation, both factually and rhetorically.
"""
AgreesWith = "AgreesWith"
CitesAsAuthority = "CitesAsAuthority"
CitesAsDataSource = "CitesAsDataSource"
CitesAsEvidence = "CitesAsEvidence"
CitesAsMetadataDocument = "CitesAsMetadataDocument"
CitesAsPotentialSolution = "CitesAsPotentialSolution"
CitesAsRecommendedReading = "CitesAsRecommendedReading"
CitesAsRelated = "CitesAsRelated"
```
### Conversion
The `convert` module has five functions for encoding and decoding Stencila documents and for converting documents between formats. All functions are `async`.
#### `from_string`
Use `from_string` to decode a string in a certain format to a Stencila Schema type. Usually you will need to supply the `format` argument (it defaults to JSON). e.g.
```py
import asyncio
from stencila.convert import from_string
doc = asyncio.run(
from_string(
'''{
type: "Article",
content: [{
type: "Paragraph",
content: [{
type: "Text",
value: "Hello world"
}]
}]
}''',
format="json5",
)
)
```
#### `from_path`
Use `from_path` to decode a file system path (usually a file) to a Stencila Schema type. The format can be supplied but if it is not is inferred from the path. e.g.
```py
import asyncio
from stencila.convert import from_path
doc = asyncio.run(from_path("doc.jats.xml"))
```
#### `to_string`
Use `to_string` to encode a Stencila Schema type to a string. Usually you will want to supply the `format` argument (it defaults to JSON).
```py
import asyncio
from stencila.convert import to_string
from stencila.types import Article, Paragraph, Text
doc = Article([Paragraph([Text("Hello world!")])])
markdown = asyncio.run(to_string(doc, format="md"))
```
#### `to_path`
To encode a Stencila Schema type to a filesystem path, use `to_path`. e.g.
```py
import asyncio
from stencila.convert import to_path
from stencila.types import Article, Paragraph, Text
doc = Article([Paragraph([Text("Hello world!")])])
asyncio.run(to_path(doc, "doc.md"))
```
#### `from_to`
Use `from_to` when you want to convert a file to another format (i.e. as a more performant shortcut to combining `from_path` and `to_path`)
```py
import asyncio
from stencila.convert import from_to
asyncio.run(from_to("doc.md", "doc.html"))
```
> [!NOTE]
> Some of the usage examples above illustrate manually constructing in-memory Python representations of small documents. This is for illustration only and would be unwieldy for large documents. Instead we imagine developers using the `convert.from_string` or `convert.from_path` functions to load documents into memory from other formats, or writing functions to construct documents composed of the Stencila classes.
## 🛠️ Develop
### Bindings
This packages uses [PyO3](https://pyo3.rs) and [Maturin](https://maturin.rs) to generate a Python native extension from Stencila Rust functions. It uses the [layout](https://www.maturin.rs/project_layout#mixed-rustpython-project) recommended for mixed Rust/Python projects: Rust code is in `src` and Python code and tests is in `python`.
To build the native extension and use it in a Python shell:
```console
make run
```
To build the native extension for the current platform (for several versions of Python):
```console
make build
```
### Linting and testing
Please run linting and tests before contributing any code changes.
```console
make lint test
```
There is also a `make fix` recipe that will fix any formatting or linting issues.
### Testing on different Python versions
You can use `asdf` to test this package across different versions of Python:
```console
asdf install python 3.9.18
asdf local python 3.9.18
poetry env use 3.9.18
poetry install
make test
```
> [!NOTE]
> In the future, we may use `tox` (or similar) to run tests across Python versions. But how to make that work with `pyo3` and `maturin` is yet to be resolved.
### Code organization
#### `types` module
Most of the types are generated from the Stencila Schema by the Rust [`schema-gen`](https://github.com/stencila/stencila/tree/main/rust/schema-gen#readme) crate. See there for contributing instructions.
#### `convert` module
The `convert` module is implemented in Rust (`src/convert.rs`) with a thin Python wrapper (`python/stencila/convert.py`) to provide documentation and conversion to the types in the `types` module.
Raw data
{
"_id": null,
"home_page": null,
"name": "stencila",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "programmable, reproducible, interactive, documents, python, SDK",
"author": null,
"author_email": "Nokome Bentley <nokome@stencila.io>",
"download_url": null,
"platform": null,
"description": "# Stencila SDK for Python\n\n**Bindings for using Stencila from Python**\n\n<a href=\"https://pypi.org/project/stencila/\">\n <img src=\"https://img.shields.io/pypi/v/stencila.svg?logo=python&label=stencila&style=for-the-badge&color=1d3bd1&logoColor=66ff66&labelColor=3219a8\">\n</a>\n\n## \ud83d\udc4b Introduction\n\nThis package provides Python classes for types in the [Stencila Schema](https://github.com/stencila/stencila/tree/main/schema#readme) and bindings to core [Stencila Rust](https://github.com/stencila/stencila/tree/main/rust#readme) functions.\n\nThe primary intended audience is developers who want to develop their own tools on top of Stencila's core functionality. For example, with this package you could construct Stencila documents programmatically using Python and write them to multiple formats (e.g. Markdown, JATS XML, PDF).\n\n> [!IMPORTANT]\n> At present, there are only bindings to functions for format conversion, but future versions will expand this scope to include document management (e.g branching and merging) and execution.\n\n## \ud83d\udce6 Install\n\n```console\npython -m pip install stencila\n```\n\n> [!NOTE]\n> If you encounter problems with the above command, you may need to upgrade Pip using `pip install --upgrade pip`.\n>\n> This is due to a [change in the dependency resolver](https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020) in Pip 20.3.\n\n## \u26a1 Usage\n\n### Types\n\nThe `types` module contains representations of all types in the Stencila Schema.\n\n#### Object types\n\nObject types (aka product types) in the Stencila Schema are represented as a `dataclass`. At present the `__init__` function requires keywords to be used (this is likely to be improved soon).\n\nFor example, to construct an article with a single \"Hello world!\" paragraph, you can construct `Article`, `Paragraph` and `Text`:\n\n```py\nfrom stencila.types import Article, CreativeWork, Paragraph, Text, Thing\n\narticle = Article(content=[Paragraph(content=[Text(value=\"Hello world!\")])])\n\nassert isinstance(article, Article)\nassert isinstance(article, CreativeWork)\nassert isinstance(article, Thing)\n\nassert isinstance(article.content[0], Paragraph)\n\nassert isinstance(article.content[0].content[0], Text)\n```\n\n#### Union types\n\nUnion types (aka sum types) in the Stencila Schema are represented as `typing.Union`. For example, the `Block` union type is defined like so:\n\n```py\nBlock = Union[\n Call,\n Claim,\n CodeBlock,\n CodeChunk,\n Division,\n Figure,\n For,\n Form,\n Heading,\n...\n```\n\n#### Enumeration types\n\nEnumeration types in the Stencila Schema are represented as `StrEnum`. For example, the `CitationIntent` enumeration is defined like so:\n\n```py\nclass CitationIntent(StrEnum):\n \"\"\"\n The type or nature of a citation, both factually and rhetorically.\n \"\"\"\n\n AgreesWith = \"AgreesWith\"\n CitesAsAuthority = \"CitesAsAuthority\"\n CitesAsDataSource = \"CitesAsDataSource\"\n CitesAsEvidence = \"CitesAsEvidence\"\n CitesAsMetadataDocument = \"CitesAsMetadataDocument\"\n CitesAsPotentialSolution = \"CitesAsPotentialSolution\"\n CitesAsRecommendedReading = \"CitesAsRecommendedReading\"\n CitesAsRelated = \"CitesAsRelated\"\n```\n\n### Conversion\n\nThe `convert` module has five functions for encoding and decoding Stencila documents and for converting documents between formats. All functions are `async`.\n\n#### `from_string`\n\nUse `from_string` to decode a string in a certain format to a Stencila Schema type. Usually you will need to supply the `format` argument (it defaults to JSON). e.g.\n\n```py\nimport asyncio\n\nfrom stencila.convert import from_string\n\ndoc = asyncio.run(\n from_string(\n '''{\n type: \"Article\",\n content: [{\n type: \"Paragraph\",\n content: [{\n type: \"Text\",\n value: \"Hello world\"\n }]\n }]\n }''',\n format=\"json5\",\n )\n)\n```\n\n#### `from_path`\n\nUse `from_path` to decode a file system path (usually a file) to a Stencila Schema type. The format can be supplied but if it is not is inferred from the path. e.g.\n\n```py\nimport asyncio\n\nfrom stencila.convert import from_path\n\ndoc = asyncio.run(from_path(\"doc.jats.xml\"))\n```\n\n#### `to_string`\n\nUse `to_string` to encode a Stencila Schema type to a string. Usually you will want to supply the `format` argument (it defaults to JSON).\n\n```py\nimport asyncio\n\nfrom stencila.convert import to_string\nfrom stencila.types import Article, Paragraph, Text\n\ndoc = Article([Paragraph([Text(\"Hello world!\")])])\n\nmarkdown = asyncio.run(to_string(doc, format=\"md\"))\n```\n\n#### `to_path`\n\nTo encode a Stencila Schema type to a filesystem path, use `to_path`. e.g.\n\n```py\nimport asyncio\n\nfrom stencila.convert import to_path\nfrom stencila.types import Article, Paragraph, Text\n\ndoc = Article([Paragraph([Text(\"Hello world!\")])])\n\nasyncio.run(to_path(doc, \"doc.md\"))\n```\n\n#### `from_to`\n\nUse `from_to` when you want to convert a file to another format (i.e. as a more performant shortcut to combining `from_path` and `to_path`)\n\n```py\nimport asyncio\n\nfrom stencila.convert import from_to\n\nasyncio.run(from_to(\"doc.md\", \"doc.html\"))\n```\n\n> [!NOTE]\n> Some of the usage examples above illustrate manually constructing in-memory Python representations of small documents. This is for illustration only and would be unwieldy for large documents. Instead we imagine developers using the `convert.from_string` or `convert.from_path` functions to load documents into memory from other formats, or writing functions to construct documents composed of the Stencila classes.\n\n## \ud83d\udee0\ufe0f Develop\n\n### Bindings\n\nThis packages uses [PyO3](https://pyo3.rs) and [Maturin](https://maturin.rs) to generate a Python native extension from Stencila Rust functions. It uses the [layout](https://www.maturin.rs/project_layout#mixed-rustpython-project) recommended for mixed Rust/Python projects: Rust code is in `src` and Python code and tests is in `python`.\n\nTo build the native extension and use it in a Python shell:\n\n```console\nmake run\n```\n\nTo build the native extension for the current platform (for several versions of Python):\n\n```console\nmake build\n```\n\n### Linting and testing\n\nPlease run linting and tests before contributing any code changes.\n\n```console\nmake lint test\n```\n\nThere is also a `make fix` recipe that will fix any formatting or linting issues.\n\n### Testing on different Python versions\n\nYou can use `asdf` to test this package across different versions of Python:\n\n```console\nasdf install python 3.9.18\nasdf local python 3.9.18\npoetry env use 3.9.18\npoetry install\nmake test\n```\n\n> [!NOTE]\n> In the future, we may use `tox` (or similar) to run tests across Python versions. But how to make that work with `pyo3` and `maturin` is yet to be resolved.\n\n### Code organization\n\n#### `types` module\n\nMost of the types are generated from the Stencila Schema by the Rust [`schema-gen`](https://github.com/stencila/stencila/tree/main/rust/schema-gen#readme) crate. See there for contributing instructions.\n\n#### `convert` module\n\nThe `convert` module is implemented in Rust (`src/convert.rs`) with a thin Python wrapper (`python/stencila/convert.py`) to provide documentation and conversion to the types in the `types` module.\n\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Python SDK for Stencila",
"version": "2.0.0b2",
"project_urls": {
"Homepage": "https://github.com/stencila/stencila/tree/main/python#readme",
"Repository": "https://github.com/stencila/stencila"
},
"split_keywords": [
"programmable",
" reproducible",
" interactive",
" documents",
" python",
" sdk"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "f7347196823800faef7685b1feafb5a1b8c64c9917d003cc027c47afa733189d",
"md5": "848586317e5af34f9bf49072bf9b468f",
"sha256": "188a0845f4f08ab09c854e037e42eb1d90550c52779929f6c821979ec092a6ce"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "848586317e5af34f9bf49072bf9b468f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 11508071,
"upload_time": "2024-08-07T01:36:45",
"upload_time_iso_8601": "2024-08-07T01:36:45.203788Z",
"url": "https://files.pythonhosted.org/packages/f7/34/7196823800faef7685b1feafb5a1b8c64c9917d003cc027c47afa733189d/stencila-2.0.0b2-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ee0e096bcee3501239473e0f80a8d6532186a3a4bec702a03f69c04c16cab24",
"md5": "fae4fe248f5c67672c5dd5c9d4d09541",
"sha256": "4b1b1dd2c206b004ce10a176bc141900bd08b74615010f5ec2efe7ebeb197a46"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fae4fe248f5c67672c5dd5c9d4d09541",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 10530995,
"upload_time": "2024-08-07T01:36:48",
"upload_time_iso_8601": "2024-08-07T01:36:48.096322Z",
"url": "https://files.pythonhosted.org/packages/6e/e0/e096bcee3501239473e0f80a8d6532186a3a4bec702a03f69c04c16cab24/stencila-2.0.0b2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b199fa87239ec7bd8d6554d63b994a1810c3a828e786c0247ddb5ff49076f12",
"md5": "dd4b1993033a7ee08c283428a1c7db43",
"sha256": "ceaf4e1dacc58155a85b273c58838a197069981da2c02125de0d96b81265adfd"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp310-cp310-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "dd4b1993033a7ee08c283428a1c7db43",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 11910607,
"upload_time": "2024-08-07T01:36:50",
"upload_time_iso_8601": "2024-08-07T01:36:50.335481Z",
"url": "https://files.pythonhosted.org/packages/1b/19/9fa87239ec7bd8d6554d63b994a1810c3a828e786c0247ddb5ff49076f12/stencila-2.0.0b2-cp310-cp310-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f41bc2e582390a210b590acbc42dae79059d11ca7e960afcee3bc00bc8c017f",
"md5": "68cf7609e159ac9820ecb116d2abb2ec",
"sha256": "4537bf8b3caad83b66526b5f18c54eaf6abfec2a29ce2ea97cdf639b7e09ee19"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp310-cp310-manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "68cf7609e159ac9820ecb116d2abb2ec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 11907521,
"upload_time": "2024-08-07T01:36:53",
"upload_time_iso_8601": "2024-08-07T01:36:53.962455Z",
"url": "https://files.pythonhosted.org/packages/5f/41/bc2e582390a210b590acbc42dae79059d11ca7e960afcee3bc00bc8c017f/stencila-2.0.0b2-cp310-cp310-manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d8ec874176f6ae2b64355828ca54b3d40b44c531ebb0101db5ae7f82b6f36e3",
"md5": "8f08a8d7ce9da07503f42b1a01a39440",
"sha256": "e692798d486a326814f40483b81597eec521cb21dbcf0eab11a70ea35a226d77"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f08a8d7ce9da07503f42b1a01a39440",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 11219546,
"upload_time": "2024-08-07T01:36:57",
"upload_time_iso_8601": "2024-08-07T01:36:57.762920Z",
"url": "https://files.pythonhosted.org/packages/4d/8e/c874176f6ae2b64355828ca54b3d40b44c531ebb0101db5ae7f82b6f36e3/stencila-2.0.0b2-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f4c019b459efb62dfdf7ba2812e57d23d8217e38f2aed88dee31c04ca31d322",
"md5": "3869a74731a11c02d7d5a178a0086412",
"sha256": "9566f94d88aad579f1885254b40d17a985804eef46eda1022e6f0c4245971c05"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "3869a74731a11c02d7d5a178a0086412",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 11507725,
"upload_time": "2024-08-07T01:37:01",
"upload_time_iso_8601": "2024-08-07T01:37:01.427879Z",
"url": "https://files.pythonhosted.org/packages/3f/4c/019b459efb62dfdf7ba2812e57d23d8217e38f2aed88dee31c04ca31d322/stencila-2.0.0b2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2eddbd30936ff922c24a4fd53716085017f4775ca7e8c05158b022640694e544",
"md5": "fcb6bdb5e2ee43fea9f21e84941cbd99",
"sha256": "953e5945dc0350037aff049407723d80efa50c146c7afe736554bc99b7798bf6"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fcb6bdb5e2ee43fea9f21e84941cbd99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 10530949,
"upload_time": "2024-08-07T01:37:03",
"upload_time_iso_8601": "2024-08-07T01:37:03.877746Z",
"url": "https://files.pythonhosted.org/packages/2e/dd/bd30936ff922c24a4fd53716085017f4775ca7e8c05158b022640694e544/stencila-2.0.0b2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65477e2ae4d0eb0bc74ac221324243a3af4af33d05d88fa7bdbbdd873b0f7c33",
"md5": "b0349471c58bc2bc285e05f2465bf8cb",
"sha256": "617a1adc887dc3e01c682d10ab9c35e47127c7485dfb34b946fbe37fb80ab45a"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp311-cp311-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "b0349471c58bc2bc285e05f2465bf8cb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 11910720,
"upload_time": "2024-08-07T01:37:06",
"upload_time_iso_8601": "2024-08-07T01:37:06.522009Z",
"url": "https://files.pythonhosted.org/packages/65/47/7e2ae4d0eb0bc74ac221324243a3af4af33d05d88fa7bdbbdd873b0f7c33/stencila-2.0.0b2-cp311-cp311-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abc3201a5721140b91be9789866bf344744e4b2ddecd250969f773065a3e3856",
"md5": "a039c002a912ce74e161659a62ba8c19",
"sha256": "29559154984a6f59a6587221354cc8171cd58730c44e98d20fa5c2f517276591"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp311-cp311-manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "a039c002a912ce74e161659a62ba8c19",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 11907718,
"upload_time": "2024-08-07T01:37:09",
"upload_time_iso_8601": "2024-08-07T01:37:09.275736Z",
"url": "https://files.pythonhosted.org/packages/ab/c3/201a5721140b91be9789866bf344744e4b2ddecd250969f773065a3e3856/stencila-2.0.0b2-cp311-cp311-manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "245b37971b2e6e65ac7d4e3c37f747b953ec9bb679215a87e5c2e6f8b531b9dc",
"md5": "684e2174c63702a8ca14faef70c75c1b",
"sha256": "7b24aebe313972b95e77b9dfef2c6c29edc720b6290ba0a4c49c0f73e5c3008e"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "684e2174c63702a8ca14faef70c75c1b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 11219759,
"upload_time": "2024-08-07T01:37:11",
"upload_time_iso_8601": "2024-08-07T01:37:11.919773Z",
"url": "https://files.pythonhosted.org/packages/24/5b/37971b2e6e65ac7d4e3c37f747b953ec9bb679215a87e5c2e6f8b531b9dc/stencila-2.0.0b2-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bea00a81a01118ee5864f45bda9ed6941c253f1a7edd4cec3665821934d6f5b9",
"md5": "482f740aa076741c0a398caea7a6222e",
"sha256": "e9fab1fbb059c8f6f43a7f83bbf71c45270c205c1492830ecca30c42a93af944"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "482f740aa076741c0a398caea7a6222e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 11508905,
"upload_time": "2024-08-07T01:37:14",
"upload_time_iso_8601": "2024-08-07T01:37:14.547352Z",
"url": "https://files.pythonhosted.org/packages/be/a0/0a81a01118ee5864f45bda9ed6941c253f1a7edd4cec3665821934d6f5b9/stencila-2.0.0b2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f07aaf19fe490ca3cfc0e8be05a8d74085410bed8a3c81b1c75287c16ef4da2",
"md5": "fffc647ebd23137e5558026cfae23b6c",
"sha256": "7101432a8e7894a2c5b25e84f3f803ed5761f040cbee6491ee2d7c072a933060"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fffc647ebd23137e5558026cfae23b6c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 10531886,
"upload_time": "2024-08-07T01:37:17",
"upload_time_iso_8601": "2024-08-07T01:37:17.046282Z",
"url": "https://files.pythonhosted.org/packages/5f/07/aaf19fe490ca3cfc0e8be05a8d74085410bed8a3c81b1c75287c16ef4da2/stencila-2.0.0b2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32d8f46663c8790e505a859c67ad5228da5f9befc53e328bad846559dcd94678",
"md5": "379b21d243d96328088e99a29ab6e525",
"sha256": "07b41b7eec0f47b3615db0187cc83a3c77bacebd29e15d25b6116686d4dd881f"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp312-cp312-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "379b21d243d96328088e99a29ab6e525",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 11911352,
"upload_time": "2024-08-07T01:37:19",
"upload_time_iso_8601": "2024-08-07T01:37:19.265817Z",
"url": "https://files.pythonhosted.org/packages/32/d8/f46663c8790e505a859c67ad5228da5f9befc53e328bad846559dcd94678/stencila-2.0.0b2-cp312-cp312-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa88fc5f25492e37b619d6299035e95196009eaf80f034f2a2066be4f6bd6c4e",
"md5": "9577fd46919b348e2e93fbdf8c31ec26",
"sha256": "d014c511c146ab82b971e37f91912cc0473230af5a8e37e17baf14304c673e35"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp312-cp312-manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "9577fd46919b348e2e93fbdf8c31ec26",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 11908652,
"upload_time": "2024-08-07T01:37:21",
"upload_time_iso_8601": "2024-08-07T01:37:21.604545Z",
"url": "https://files.pythonhosted.org/packages/fa/88/fc5f25492e37b619d6299035e95196009eaf80f034f2a2066be4f6bd6c4e/stencila-2.0.0b2-cp312-cp312-manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50313665da8ebba2a9cddbeb1b0c18eec3b6a9e36750ef28592574c95148fb06",
"md5": "47793a06edb0c89abcc20d7b09924fb0",
"sha256": "3c86d6d46cc3a7b6f1c3ffb9c0c561f0c06bd81fa441988b5cb0e55cc19d544e"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "47793a06edb0c89abcc20d7b09924fb0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 11223284,
"upload_time": "2024-08-07T01:37:24",
"upload_time_iso_8601": "2024-08-07T01:37:24.484483Z",
"url": "https://files.pythonhosted.org/packages/50/31/3665da8ebba2a9cddbeb1b0c18eec3b6a9e36750ef28592574c95148fb06/stencila-2.0.0b2-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e8a62f03eedc0232d8d4292c454889e5f832e1cb334cb2f070a0fa47b0240c4",
"md5": "7fc073dda8adaf9c7cb40ab687816885",
"sha256": "d55618ab38f7aa16396e7685168a732342c11ec10593fd865e723ca55522d017"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7fc073dda8adaf9c7cb40ab687816885",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.10",
"size": 11508991,
"upload_time": "2024-08-07T01:37:27",
"upload_time_iso_8601": "2024-08-07T01:37:27.247857Z",
"url": "https://files.pythonhosted.org/packages/2e/8a/62f03eedc0232d8d4292c454889e5f832e1cb334cb2f070a0fa47b0240c4/stencila-2.0.0b2-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c80d197869960d0538818cb10ca53ff53c06ccff9eaa1f391a0faca9156244e",
"md5": "feeec78119bef3b743e1f04679bc6f80",
"sha256": "bcb79ddce7eda5a9321c075c5c248dd2b6fb337b6d31188fc45096e903222710"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "feeec78119bef3b743e1f04679bc6f80",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.10",
"size": 10532117,
"upload_time": "2024-08-07T01:37:29",
"upload_time_iso_8601": "2024-08-07T01:37:29.921720Z",
"url": "https://files.pythonhosted.org/packages/2c/80/d197869960d0538818cb10ca53ff53c06ccff9eaa1f391a0faca9156244e/stencila-2.0.0b2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff978b024e8b9ba87195e48b8914008683516ec4e12696c77937bd3fd395a6ff",
"md5": "794256f41ded71b4adfd31ea3f6566ab",
"sha256": "fb8aa8037f757bd58f1b5d32c788b3c106b9f0d7d0c6ba096584ce9039672f01"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp38-cp38-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "794256f41ded71b4adfd31ea3f6566ab",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.10",
"size": 11911021,
"upload_time": "2024-08-07T01:37:32",
"upload_time_iso_8601": "2024-08-07T01:37:32.215472Z",
"url": "https://files.pythonhosted.org/packages/ff/97/8b024e8b9ba87195e48b8914008683516ec4e12696c77937bd3fd395a6ff/stencila-2.0.0b2-cp38-cp38-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99c0c26390902d2a0cce0886a996aced2a19ac729c875263ea1b20c0f88c8a20",
"md5": "2ea4cdfece122bbad97f727cdc5c1bfb",
"sha256": "14d6fe7be7dda878d900dcfc7bdde094a22b01ba3ef8a04bd6904a9498f91341"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp38-cp38-manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "2ea4cdfece122bbad97f727cdc5c1bfb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.10",
"size": 11908191,
"upload_time": "2024-08-07T01:37:34",
"upload_time_iso_8601": "2024-08-07T01:37:34.494538Z",
"url": "https://files.pythonhosted.org/packages/99/c0/c26390902d2a0cce0886a996aced2a19ac729c875263ea1b20c0f88c8a20/stencila-2.0.0b2-cp38-cp38-manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2150ee22b858a0d952ea9d6102ee3c728015309cdfb583d3dc2687c22c1fe49",
"md5": "310bf53fe8c3c8c6efefc7fbf119d2d2",
"sha256": "6024340d1e40a1ceca6c2f9baa2b911c0ffd5a5fd5f53351ec86d9a24f685d3e"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "310bf53fe8c3c8c6efefc7fbf119d2d2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.10",
"size": 11220441,
"upload_time": "2024-08-07T01:37:36",
"upload_time_iso_8601": "2024-08-07T01:37:36.737764Z",
"url": "https://files.pythonhosted.org/packages/b2/15/0ee22b858a0d952ea9d6102ee3c728015309cdfb583d3dc2687c22c1fe49/stencila-2.0.0b2-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9afcf66a597f09b7a71879d988a1c4e74f1b4d6a8b769946a067f4cada4209cb",
"md5": "f86b440e8f90c3d315277c95a0b922bc",
"sha256": "fb6a4aef5ecebe70290264813fbacdf8da195309638a3e621814f85a5926f4bb"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f86b440e8f90c3d315277c95a0b922bc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.10",
"size": 11508003,
"upload_time": "2024-08-07T01:37:39",
"upload_time_iso_8601": "2024-08-07T01:37:39.036808Z",
"url": "https://files.pythonhosted.org/packages/9a/fc/f66a597f09b7a71879d988a1c4e74f1b4d6a8b769946a067f4cada4209cb/stencila-2.0.0b2-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0196f335bc06951ea037ff4f5d140c95d1fcb7e6efcf28fdca92593b9610291d",
"md5": "1c54717f9ed66f983e9a426d5bfb7525",
"sha256": "1dc55828d7a95fedb6c2799536fbe02d2cf29d34c2a0ba0c70274d956e0330d1"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1c54717f9ed66f983e9a426d5bfb7525",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.10",
"size": 10530334,
"upload_time": "2024-08-07T01:37:41",
"upload_time_iso_8601": "2024-08-07T01:37:41.545898Z",
"url": "https://files.pythonhosted.org/packages/01/96/f335bc06951ea037ff4f5d140c95d1fcb7e6efcf28fdca92593b9610291d/stencila-2.0.0b2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5726e56626030b18bbba48d8d658078bfe18b0d1f334ad7b541394606ee9019",
"md5": "447138a0c9043c7c28ad4ae0d9d69665",
"sha256": "2827f378a9a10313ffea29eb4114f373a65335a6657ead33180ca34b757d629c"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp39-cp39-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "447138a0c9043c7c28ad4ae0d9d69665",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.10",
"size": 11910861,
"upload_time": "2024-08-07T01:37:43",
"upload_time_iso_8601": "2024-08-07T01:37:43.777102Z",
"url": "https://files.pythonhosted.org/packages/f5/72/6e56626030b18bbba48d8d658078bfe18b0d1f334ad7b541394606ee9019/stencila-2.0.0b2-cp39-cp39-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eec9a6393f924f4596708070e5c406f514b2bd45679c91855cc5a4dad118aa01",
"md5": "fe487c57693a63601494c7d35d80b5dc",
"sha256": "dc2061e84ed2baf3eadb4d8c87a0a1eb7faa4f2580b840d831e8351a5d0c92f9"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp39-cp39-manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "fe487c57693a63601494c7d35d80b5dc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.10",
"size": 11907693,
"upload_time": "2024-08-07T01:37:46",
"upload_time_iso_8601": "2024-08-07T01:37:46.072744Z",
"url": "https://files.pythonhosted.org/packages/ee/c9/a6393f924f4596708070e5c406f514b2bd45679c91855cc5a4dad118aa01/stencila-2.0.0b2-cp39-cp39-manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c52f8d41448df3aabdc41681536b762a3226b67cafd9bcdbe5acfb103f1d6ea0",
"md5": "2ba3941ff72e572ea05640251110ff9a",
"sha256": "854e66e31af455a82dd089c3b90ab243577d7822eb537cb3c98ff8cb4d0d86c3"
},
"downloads": -1,
"filename": "stencila-2.0.0b2-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "2ba3941ff72e572ea05640251110ff9a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.10",
"size": 11219999,
"upload_time": "2024-08-07T01:37:48",
"upload_time_iso_8601": "2024-08-07T01:37:48.920209Z",
"url": "https://files.pythonhosted.org/packages/c5/2f/8d41448df3aabdc41681536b762a3226b67cafd9bcdbe5acfb103f1d6ea0/stencila-2.0.0b2-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-07 01:36:45",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "stencila",
"github_project": "stencila",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "stencila"
}