mdx-include


Namemdx-include JSON
Version 1.4.2 PyPI version JSON
download
home_pagehttps://github.com/neurobin/mdx_include
SummaryPython Markdown extension to include local or remote files
upload_time2022-07-26 05:46:14
maintainer
docs_urlNone
authorMd. Jahidul Hamid
requires_python
licenseBSD
keywords markdown include local remote file
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            [![Build Status](https://travis-ci.org/neurobin/mdx_include.svg?branch=release)](https://travis-ci.org/neurobin/mdx_include)

Include extension for Python Markdown. It lets you include local or remote (downloadable) files into your markdown at arbitrary positions. 

This project is motivated by [markdown-include](https://github.com/cmacmackin/markdown-include) and provides the same functionalities with some extras.

Inclusion for local file is by default recursive and for remote file non-recursive. You can change this behavior through configuration.

You can include part of the file by slicing according to line/column number.

File/Downloaded contents are cached, i.e if you include same file multiple times in multiple places, they won't be read/downloaded more than once. This behavior can also be changed with configuration.

Circular inclusion by default raises an exception. You can change this behavior to include the affected files in non-recursive mode through configuration.

**You should not use markdown-include along with this extension, choose either one, not both.**

# Syntax

1. **Simple:** `{! file_path_or_url !}`
2. **With explicit encoding:** `{! file_path_or_url | encoding !}`
3. **With recurs_state on:** `{!+ file_path_or_url !}` or `{!+ file_path_or_url | encoding !}`. This makes the included file to be able to include other files. This is meaningful only when recursion is set to `None`. If it is set to `False`, this explicit recurs_state defintion can not force recursion. This is a depth 1 recursion, so you can choose which one to recurs and which one to not.
4. **With recurs_state off:** `{!- file_path_or_url !}` or `{!- file_path_or_url | encoding !}`. This will force not to recurs even when recursion is set to `True`.
5. **Applying indentation** `{!> file_path_or_url!}`. This will apply the indentation found in the include line before the include for all the lines in the included file.
6. **Escaped syntax:** You can escape it to get the literal. For example, `\{! file_path_or_url !}` will give you literal `{! file_path_or_url !}` and `\\\{! file_path_or_url !}` will give you `\{! file_path_or_url !}`
7. **File slice:** You can slice a file by line and column number. The syntax is `{! file_path [ln:l.c-l.c,l.c-l.c,...] !}`. No spaces allowed inside file slice syntax `[ln:l.c-l.c,l.c-l.c,]`. See more detals in [File slicing section](#file-slicing).


**General syntax:** `{!recurs_state apply_indent file_path_or_url [ln:slice_syntax] | encoding !}`

> The spaces are not necessary. They are just to make it look nice :) . No spaces allowed between `{!` and recurs_state (`+-`). If apply indentation is specified then it must follow recurse_state immediately or the `{!` if recurse_state is not specified. 


## You can change the syntax!!!

If you don't like the syntax you can change it through configuration.

There might be some complications with the syntax `{!file!}`, for example, conflict with `markdown.extensions.attr_list` which uses `{:?something}`. As the `:` is optional, a typical problem that occurs is this one:

```md
A paragraph
{!our syntax!}
```
would produce:

```html
<p syntax_="syntax!" _our="!our">A paragraph</p>
```

If you really want to avoid this type of collision, find some character sequence that is not being used by any extension that you are using and use those character sequences to make up the syntax.

[See the configuration section for details](#configuration)


# Install

Install from Pypi:

```bash
pip install mdx_include
```

# Usage

```python
text = r"""
some text {! test1.md !} some more text {! test2.md | utf-8 !}

Escaping will give you the exact literal \{! some_file !}

If you escape, then the backslash will be removed.

If you want the backslash too, then provide two more: \\\{! some_file !}
"""
md = markdown.Markdown(extensions=['mdx_include'])
html = md.convert(text)
print(html)
```

**Example output:**

(*when test1.md contains a single line `**This is test1.md**` and test2.md contains `**This is test2.md**`*)

```html
<p>some text <strong>This is test1.md</strong> some more text <strong>This is test2.md</strong></p>
<p>Escaping will give you the exact literal {! some_file !}</p>
<p>If you escape, then the backslash will be removed.</p>
<p>If you want the backslash too, then provide two more: \{! some_file !}</p>
```


# Configuration

Config param | Default | Details
------------ | ------- | -------
`base_path` | `.` | The base path from which relative paths are normalized.
`encoding` | `utf-8` | The file encoding.
`allow_local` | `True` | Whether to allow including local files.
`allow_remote` | `True` | Whether to allow including remote files.
`truncate_on_failure` | `True` | Whether to truncate the matched include syntax on failure. False value for both allow_local and allow_remote is treated as a failure.
`recurs_local` | `True` | Whether the inclusions are recursive on local files. Options are: `True`, `False` and `None`. `None` is a neutral value with negative default and overridable with recurs_state (e.g `{!+file!}`). `False` will permanently prevent recursion i.e you won't be able to override it with the recurs_state. `True` value is overridable with recurs_state (e.g `{!-file!}`).
`recurs_remote` | `False` | Whether the inclusions are recursive on remote files. Options are: `True`, `False` and `None`. `None` is a neutral value with negative default and overridable with recurs_state (e.g `{!+file!}`). `False` will permanently prevent recursion i.e you won't be able to override it with the recurs_state. `True` value is overridable with recurs_state (e.g `{!-file!}`).
`syntax_left` | `\{!` | The left boundary of the syntax. (Used in regex, thus escaped `{`).
`syntax_right` | `!\}` | The right boundary of the syntax. (Used in regex, thus escaped `}`).
`syntax_delim` | `\\|` | The delimiter that separates encoding from path_or_url. (Used in regex, thus escaped `\|`).
`syntax_recurs_on` | `+` | The character to specify recurs_state on. (Used in regex).
`syntax_recurs_off` | `-` | The character to specify recurs_state off. (Used in regex).
`syntax_apply_indent`| `\>`| The character which stands for applying indentation found before the include for the lines included from the files.
`content_cache_local` | `True` | Whether to cache content for local files.
`content_cache_remote` | `True` | Whether to cache content for remote files.
`content_cache_clean_local` | `False` | Whether to clean content cache for local files after processing all the includes
`content_cache_clean_remote` | `False` | Whether to clean content cache for remote files after processing all the includes
`allow_circular_inclusion` | `False` | Whether to allow circular inclusion. If allowed, the affected files will be included in non-recursive mode, otherwise it will raise an exception.
`line_slice_separator` | `['','']` | A list of lines that will be used to separate parts specified by line slice syntax: 1-2,3-4,5 etc.
`recursive_relative_path` | `False` | Whether include paths inside recursive files should be relative to the parent file path

## Example with configuration

```python
configs = {
            'mdx_include': {
                'base_path': 'mdx_include/test/',
                'encoding': 'utf-8',
                'allow_local': True,
                'allow_remote': True,
                'truncate_on_failure': False,
                'recurs_local': None,
                'recurs_remote': False,
                'syntax_left': r'\{!',
                'syntax_right': r'!\}',
                'syntax_delim': r'\|',
                'syntax_recurs_on': '+',
                'syntax_recurs_off': '-',
                'syntax_apply_indent': r'\>',
            },
        }

text = r"""
some text {! some_file !} some more text {! some_more_file | utf-8 !}

Escaping will give you the exact literal \{! some_file !}

If you escape, then the backslash will be removed.

If you want the backslash too, then provide two more: \\\{! some_file !}
"""
md = markdown.Markdown(extensions=['mdx_include'], extension_configs=configs)
html = md.convert(text)
print(html)
```

# File slicing

You can include part of the file from certain line/column number to certain line/column number.

The general file slice syntax is: `[ln:l.c-l.c,l.c-l.c,...]`, where l is the line number and c is the column number. All indexes are inclusive.

**Examples:**

Slice | Details
----- | -------
`[ln:1-4]` | line 1 to 4 (both inclusive)
`[ln:1.2-3.4]` | character 2 in line 1 to character 4 in line 3
`[ln:2-]` | line 2 to all of the rest
`[ln:-3]` | Last line to 3rd line (reversion)
`[ln:6-2]` | 6th line to 2nd line (reversion)
`[ln:2.9-2.2]` | From 9th character of line 2 to 2nd character of line 2 (string reverse)
`[ln:.3-.10]` | Slice along the column from every row, from 3rd character to 10th character
`[ln:2]` | line 2 only
`[ln:e]` | last line

Multiple slicing can be done by adding more slice expressions with commas (s`,`). In this case, a separator (default is two newlines) is inserted between each slice. For example, with slice expression `1-2,4-9`, two newlines will be inserted between the lines 1-2 and 4-9.

More details on the [rcslice doc](https://github.com/neurobin/rcslice)

# Manual cache control

The configuration gives you enough cache control, but that's not where it ends :). You can do manual cache cleaning instead of letting the extension handle it for itself. First turn the auto cache cleaning off by setting `content_cache_clean_local` and/or `content_cache_clean_remote` to `False` (this is default), then call the cache cleaning function manually on the markdown object whenever you want:

```python
md.mdx_include_content_cache_clean_local()
md.mdx_include_content_cache_clean_remote()
```

You can also get the internal cache dictionary and make inplace modification (e.g cleaning a specific cache for a specific file/URL, or even modify the cached content):

```python
local_cache_dict = md.mdx_include_get_content_cache_local()
remote_cache_dict = md.mdx_include_get_content_cache_remote()
```

# How circular inclusion works

Let's say, there are three files, A, B and C. A includes B, B includes C and C inclues A and we are doing recursive include.

If circular inclusion is not allowed in the config i.e if `allow_circular_inclusion` is `False` (which is the default) then it will raise an exception.

If `allow_circular_inclusion` is set to `True`, then it will work like this:

1. A and B will be normally included
2. B includes C normally too
3. C includes A which is a circular inclusion (`C>A>B>C>A>B>C...`). Thus A will be included in non-recursive mode as `allow_circular_inclusion` is set to `True` i.e C will include A literally without parsing A anymore.

# An example of including a gist

The following markdown:


    Including a gist:
        
    ```python
    {! https://gist.github.com/drgarcia1986/3cce1d134c3c3eeb01bd/raw/73951574d6b62a18b4c342235006ff89d299f879/django_hello.py !}
    ```


will produce (with fenced code block enabled):

```html
<p>Including a gist:</p>
<pre><code class="python"># -*- coding: utf-8 -*-

# Settings
from django.conf import settings


settings.configure(
    DEBUG=True,
    SECRET_KEY='secretfoobar',
    ROOT_URLCONF=__name__,
    MIDDLEWARE_CLASSES=(
        'django.middleware.common.CommonMiddleware',
        'django.middleware.csrf.CsrfViewMiddleware',
        'django.middleware.clickjacking.XFrameOptionsMiddleware',
    )
)


# Views
from django.http import HttpResponse
from django.conf.urls import url


def index(request):
    return HttpResponse('&lt;h1&gt;Hello Word&lt;/h1&gt;')

# Routes
urlpatterns = (
    url(r'^$', index),
)


# RunServer
if __name__ == '__main__':
    from django.core.management import execute_from_command_line
    import sys

    execute_from_command_line(sys.argv)

</code></pre>
```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/neurobin/mdx_include",
    "name": "mdx-include",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "markdown include local remote file",
    "author": "Md. Jahidul Hamid",
    "author_email": "jahidulhamid@yahoo.com",
    "download_url": "https://files.pythonhosted.org/packages/bf/f0/f395a9cf164471d3c7bbe58cbd64d74289575a8b85a962b49a804ab7ed34/mdx_include-1.4.2.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://travis-ci.org/neurobin/mdx_include.svg?branch=release)](https://travis-ci.org/neurobin/mdx_include)\n\nInclude extension for Python Markdown. It lets you include local or remote (downloadable) files into your markdown at arbitrary positions. \n\nThis project is motivated by [markdown-include](https://github.com/cmacmackin/markdown-include) and provides the same functionalities with some extras.\n\nInclusion for local file is by default recursive and for remote file non-recursive. You can change this behavior through configuration.\n\nYou can include part of the file by slicing according to line/column number.\n\nFile/Downloaded contents are cached, i.e if you include same file multiple times in multiple places, they won't be read/downloaded more than once. This behavior can also be changed with configuration.\n\nCircular inclusion by default raises an exception. You can change this behavior to include the affected files in non-recursive mode through configuration.\n\n**You should not use markdown-include along with this extension, choose either one, not both.**\n\n# Syntax\n\n1. **Simple:** `{! file_path_or_url !}`\n2. **With explicit encoding:** `{! file_path_or_url | encoding !}`\n3. **With recurs_state on:** `{!+ file_path_or_url !}` or `{!+ file_path_or_url | encoding !}`. This makes the included file to be able to include other files. This is meaningful only when recursion is set to `None`. If it is set to `False`, this explicit recurs_state defintion can not force recursion. This is a depth 1 recursion, so you can choose which one to recurs and which one to not.\n4. **With recurs_state off:** `{!- file_path_or_url !}` or `{!- file_path_or_url | encoding !}`. This will force not to recurs even when recursion is set to `True`.\n5. **Applying indentation** `{!> file_path_or_url!}`. This will apply the indentation found in the include line before the include for all the lines in the included file.\n6. **Escaped syntax:** You can escape it to get the literal. For example, `\\{! file_path_or_url !}` will give you literal `{! file_path_or_url !}` and `\\\\\\{! file_path_or_url !}` will give you `\\{! file_path_or_url !}`\n7. **File slice:** You can slice a file by line and column number. The syntax is `{! file_path [ln:l.c-l.c,l.c-l.c,...] !}`. No spaces allowed inside file slice syntax `[ln:l.c-l.c,l.c-l.c,]`. See more detals in [File slicing section](#file-slicing).\n\n\n**General syntax:** `{!recurs_state apply_indent file_path_or_url [ln:slice_syntax] | encoding !}`\n\n> The spaces are not necessary. They are just to make it look nice :) . No spaces allowed between `{!` and recurs_state (`+-`). If apply indentation is specified then it must follow recurse_state immediately or the `{!` if recurse_state is not specified. \n\n\n## You can change the syntax!!!\n\nIf you don't like the syntax you can change it through configuration.\n\nThere might be some complications with the syntax `{!file!}`, for example, conflict with `markdown.extensions.attr_list` which uses `{:?something}`. As the `:` is optional, a typical problem that occurs is this one:\n\n```md\nA paragraph\n{!our syntax!}\n```\nwould produce:\n\n```html\n<p syntax_=\"syntax!\" _our=\"!our\">A paragraph</p>\n```\n\nIf you really want to avoid this type of collision, find some character sequence that is not being used by any extension that you are using and use those character sequences to make up the syntax.\n\n[See the configuration section for details](#configuration)\n\n\n# Install\n\nInstall from Pypi:\n\n```bash\npip install mdx_include\n```\n\n# Usage\n\n```python\ntext = r\"\"\"\nsome text {! test1.md !} some more text {! test2.md | utf-8 !}\n\nEscaping will give you the exact literal \\{! some_file !}\n\nIf you escape, then the backslash will be removed.\n\nIf you want the backslash too, then provide two more: \\\\\\{! some_file !}\n\"\"\"\nmd = markdown.Markdown(extensions=['mdx_include'])\nhtml = md.convert(text)\nprint(html)\n```\n\n**Example output:**\n\n(*when test1.md contains a single line `**This is test1.md**` and test2.md contains `**This is test2.md**`*)\n\n```html\n<p>some text <strong>This is test1.md</strong> some more text <strong>This is test2.md</strong></p>\n<p>Escaping will give you the exact literal {! some_file !}</p>\n<p>If you escape, then the backslash will be removed.</p>\n<p>If you want the backslash too, then provide two more: \\{! some_file !}</p>\n```\n\n\n# Configuration\n\nConfig param | Default | Details\n------------ | ------- | -------\n`base_path` | `.` | The base path from which relative paths are normalized.\n`encoding` | `utf-8` | The file encoding.\n`allow_local` | `True` | Whether to allow including local files.\n`allow_remote` | `True` | Whether to allow including remote files.\n`truncate_on_failure` | `True` | Whether to truncate the matched include syntax on failure. False value for both allow_local and allow_remote is treated as a failure.\n`recurs_local` | `True` | Whether the inclusions are recursive on local files. Options are: `True`, `False` and `None`. `None` is a neutral value with negative default and overridable with recurs_state (e.g `{!+file!}`). `False` will permanently prevent recursion i.e you won't be able to override it with the recurs_state. `True` value is overridable with recurs_state (e.g `{!-file!}`).\n`recurs_remote` | `False` | Whether the inclusions are recursive on remote files. Options are: `True`, `False` and `None`. `None` is a neutral value with negative default and overridable with recurs_state (e.g `{!+file!}`). `False` will permanently prevent recursion i.e you won't be able to override it with the recurs_state. `True` value is overridable with recurs_state (e.g `{!-file!}`).\n`syntax_left` | `\\{!` | The left boundary of the syntax. (Used in regex, thus escaped `{`).\n`syntax_right` | `!\\}` | The right boundary of the syntax. (Used in regex, thus escaped `}`).\n`syntax_delim` | `\\\\|` | The delimiter that separates encoding from path_or_url. (Used in regex, thus escaped `\\|`).\n`syntax_recurs_on` | `+` | The character to specify recurs_state on. (Used in regex).\n`syntax_recurs_off` | `-` | The character to specify recurs_state off. (Used in regex).\n`syntax_apply_indent`| `\\>`| The character which stands for applying indentation found before the include for the lines included from the files.\n`content_cache_local` | `True` | Whether to cache content for local files.\n`content_cache_remote` | `True` | Whether to cache content for remote files.\n`content_cache_clean_local` | `False` | Whether to clean content cache for local files after processing all the includes\n`content_cache_clean_remote` | `False` | Whether to clean content cache for remote files after processing all the includes\n`allow_circular_inclusion` | `False` | Whether to allow circular inclusion. If allowed, the affected files will be included in non-recursive mode, otherwise it will raise an exception.\n`line_slice_separator` | `['','']` | A list of lines that will be used to separate parts specified by line slice syntax: 1-2,3-4,5 etc.\n`recursive_relative_path` | `False` | Whether include paths inside recursive files should be relative to the parent file path\n\n## Example with configuration\n\n```python\nconfigs = {\n            'mdx_include': {\n                'base_path': 'mdx_include/test/',\n                'encoding': 'utf-8',\n                'allow_local': True,\n                'allow_remote': True,\n                'truncate_on_failure': False,\n                'recurs_local': None,\n                'recurs_remote': False,\n                'syntax_left': r'\\{!',\n                'syntax_right': r'!\\}',\n                'syntax_delim': r'\\|',\n                'syntax_recurs_on': '+',\n                'syntax_recurs_off': '-',\n                'syntax_apply_indent': r'\\>',\n            },\n        }\n\ntext = r\"\"\"\nsome text {! some_file !} some more text {! some_more_file | utf-8 !}\n\nEscaping will give you the exact literal \\{! some_file !}\n\nIf you escape, then the backslash will be removed.\n\nIf you want the backslash too, then provide two more: \\\\\\{! some_file !}\n\"\"\"\nmd = markdown.Markdown(extensions=['mdx_include'], extension_configs=configs)\nhtml = md.convert(text)\nprint(html)\n```\n\n# File slicing\n\nYou can include part of the file from certain line/column number to certain line/column number.\n\nThe general file slice syntax is: `[ln:l.c-l.c,l.c-l.c,...]`, where l is the line number and c is the column number. All indexes are inclusive.\n\n**Examples:**\n\nSlice | Details\n----- | -------\n`[ln:1-4]` | line 1 to 4 (both inclusive)\n`[ln:1.2-3.4]` | character 2 in line 1 to character 4 in line 3\n`[ln:2-]` | line 2 to all of the rest\n`[ln:-3]` | Last line to 3rd line (reversion)\n`[ln:6-2]` | 6th line to 2nd line (reversion)\n`[ln:2.9-2.2]` | From 9th character of line 2 to 2nd character of line 2 (string reverse)\n`[ln:.3-.10]` | Slice along the column from every row, from 3rd character to 10th character\n`[ln:2]` | line 2 only\n`[ln:e]` | last line\n\nMultiple slicing can be done by adding more slice expressions with commas (s`,`). In this case, a separator (default is two newlines) is inserted between each slice. For example, with slice expression `1-2,4-9`, two newlines will be inserted between the lines 1-2 and 4-9.\n\nMore details on the [rcslice doc](https://github.com/neurobin/rcslice)\n\n# Manual cache control\n\nThe configuration gives you enough cache control, but that's not where it ends :). You can do manual cache cleaning instead of letting the extension handle it for itself. First turn the auto cache cleaning off by setting `content_cache_clean_local` and/or `content_cache_clean_remote` to `False` (this is default), then call the cache cleaning function manually on the markdown object whenever you want:\n\n```python\nmd.mdx_include_content_cache_clean_local()\nmd.mdx_include_content_cache_clean_remote()\n```\n\nYou can also get the internal cache dictionary and make inplace modification (e.g cleaning a specific cache for a specific file/URL, or even modify the cached content):\n\n```python\nlocal_cache_dict = md.mdx_include_get_content_cache_local()\nremote_cache_dict = md.mdx_include_get_content_cache_remote()\n```\n\n# How circular inclusion works\n\nLet's say, there are three files, A, B and C. A includes B, B includes C and C inclues A and we are doing recursive include.\n\nIf circular inclusion is not allowed in the config i.e if `allow_circular_inclusion` is `False` (which is the default) then it will raise an exception.\n\nIf `allow_circular_inclusion` is set to `True`, then it will work like this:\n\n1. A and B will be normally included\n2. B includes C normally too\n3. C includes A which is a circular inclusion (`C>A>B>C>A>B>C...`). Thus A will be included in non-recursive mode as `allow_circular_inclusion` is set to `True` i.e C will include A literally without parsing A anymore.\n\n# An example of including a gist\n\nThe following markdown:\n\n\n    Including a gist:\n        \n    ```python\n    {! https://gist.github.com/drgarcia1986/3cce1d134c3c3eeb01bd/raw/73951574d6b62a18b4c342235006ff89d299f879/django_hello.py !}\n    ```\n\n\nwill produce (with fenced code block enabled):\n\n```html\n<p>Including a gist:</p>\n<pre><code class=\"python\"># -*- coding: utf-8 -*-\n\n# Settings\nfrom django.conf import settings\n\n\nsettings.configure(\n    DEBUG=True,\n    SECRET_KEY='secretfoobar',\n    ROOT_URLCONF=__name__,\n    MIDDLEWARE_CLASSES=(\n        'django.middleware.common.CommonMiddleware',\n        'django.middleware.csrf.CsrfViewMiddleware',\n        'django.middleware.clickjacking.XFrameOptionsMiddleware',\n    )\n)\n\n\n# Views\nfrom django.http import HttpResponse\nfrom django.conf.urls import url\n\n\ndef index(request):\n    return HttpResponse('&lt;h1&gt;Hello Word&lt;/h1&gt;')\n\n# Routes\nurlpatterns = (\n    url(r'^$', index),\n)\n\n\n# RunServer\nif __name__ == '__main__':\n    from django.core.management import execute_from_command_line\n    import sys\n\n    execute_from_command_line(sys.argv)\n\n</code></pre>\n```\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Python Markdown extension to include local or remote files",
    "version": "1.4.2",
    "split_keywords": [
        "markdown",
        "include",
        "local",
        "remote",
        "file"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "4b7019aba3d58d07074dfd595c4dc01c",
                "sha256": "cfbeadd59985f27a9b70cb7ab0a3d209892fe1bb1aa342df055e0b135b3c9f34"
            },
            "downloads": -1,
            "filename": "mdx_include-1.4.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4b7019aba3d58d07074dfd595c4dc01c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 11591,
            "upload_time": "2022-07-26T05:46:11",
            "upload_time_iso_8601": "2022-07-26T05:46:11.518921Z",
            "url": "https://files.pythonhosted.org/packages/c0/40/6844997dee251103c5a4c4eb0d1d2f2162b7c29ffc4e86de3cd68d269be2/mdx_include-1.4.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2fc3ee8d9af7ffea859b0cc75c5657ce",
                "sha256": "992f9fbc492b5cf43f7d8cb4b90b52a4e4c5fdd7fd04570290a83eea5c84f297"
            },
            "downloads": -1,
            "filename": "mdx_include-1.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "2fc3ee8d9af7ffea859b0cc75c5657ce",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 15051,
            "upload_time": "2022-07-26T05:46:14",
            "upload_time_iso_8601": "2022-07-26T05:46:14.129687Z",
            "url": "https://files.pythonhosted.org/packages/bf/f0/f395a9cf164471d3c7bbe58cbd64d74289575a8b85a962b49a804ab7ed34/mdx_include-1.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-07-26 05:46:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "neurobin",
    "github_project": "mdx_include",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "mdx-include"
}
        
Elapsed time: 0.01444s