{ "info": { "author": "Konstantin Molchanov", "author_email": "moigagoo@live.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Documentation", "Topic :: Utilities" ], "description": "# Includes for Foliant\n\nIncludes preprocessor lets you reuse parts of other documents in your Foliant project sources. It can include from files on your local machine and remote Git repositories. You can include entire documents as well as parts between particular headings, removing or normalizing included headings on the way.\n\n## Installation\n\n```shell\n$ pip install foliantcontrib.includes\n```\n\n## Config\n\nTo enable the preprocessor with default options, add `includes` to `preprocessors` section in the project config:\n\n```yaml\npreprocessors:\n - includes\n```\n\nThe preprocessor has a number of options:\n\n```yaml\npreprocessors:\n - includes:\n cache_dir: !path .includescache\n recursive: true\n aliases:\n ...\n```\n\n`cache_dir`\n: Path to the directory for cloned Git repositories. It can be a path relative to the project path or a global one; you can use `~/` shortcut.\n\n > **Note**\n >\n > To include files from remote repositories, the preprocessor clones them. To save time during build, cloned repositories are stored and reused in future builds.\n\n`recursive`\n: Flag that defines whether includes in included documents should be processed.\n\n`aliases`\n: Mapping from aliases to Git repository URLs. Once defined here, an alias can be used to refer to the repository instead of its full URL.\n\n > **Note**\n >\n > Aliases are available only within the legacy syntax of include statements (see below).\n\n For example, if you set this alias in the config:\n\n - includes:\n aliases:\n foo: https://github.com/boo/bar.git\n baz: https://github.com/foo/far.git#develop\n\n you can include the content of `doc.md` files from these repositories using the following syntax:\n\n <$foo$path/to/doc.md\n\n <$baz#master$path/to/doc.md \n\n Note that in the second example the default revision (`develop`) will be overridden with the custom one (`master`).\n\n## Usage\n\nThe preprocessor allows two syntax variants for include statements.\n\nThe **legacy** syntax is simpler and shorter but less flexible. There are no plans to extend it.\n\nThe **new** syntax introduced in version 1.1.0 is stricter and more flexible. It is more suitable for complex cases, and it can be easily extended in the future. This is the preferred syntax.\n\nBoth variants of syntax use the `<...` tags.\n\nIf the included file is specified between the tags, it\u2019s the legacy syntax. If the file is referenced in the tag attributes (`src`, `repo_url`, `path`), it\u2019s the new one.\n\n### The New Syntax\n\nTo enforce using the new syntax rules, put no content between `<...` tags, and specify a local file or a file in a remote Git repository in tag attributes.\n\nTo include a local file, use the `src` attribute:\n\n```markdown\nText below is taken from another document.\n\n<\n```\n\nTo include a file from a remote Git repository, use the `repo_url` and `path` attributes:\n\n```markdown\nText below is taken from a remote repository.\n\n<\n```\n\nYou have to specify the full remote repository URL in the `repo_url` attribute, aliases are not supported here.\n\nOptional branch or revision can be specified in the `revision` attribute:\n\n```markdown\nText below is taken from a remote repository on branch develop.\n\n<\n```\n\n#### Attributes\n\n`src`\n: Path to the local file to include.\n\n`repo_url`\n: Full remote Git repository URL without a revision.\n\n`path`\n: Path to the file inside the remote Git repository.\n\n > **Note**\n >\n > If you are using the new syntax, the `src` attribute is required to include a local file, and the `repo_url` and `path` attributes are required to include a file from a remote Git repository. All other attributes are optional.\n\n > **Note**\n >\n > Foliant 1.0.9 supports the processing of attribute values as YAML. You can precede the values of attributes by the `!path`, `!project_path`, and `!rel_path` modifiers (i.e. YAML tags). These modifiers can be useful in the `src`, `path`, and `project_root` attributes.\n\n`revision`\n: Revision of the Git repository.\n\n`from_heading`\n: Full content of the starting heading when it\u2019s necessary to include some part of the referenced file content.\n\n`to_heading`\n: Full content of the ending heading when it\u2019s necessary to include some part of the referenced file content.\n\n`from_id`\n: ID of the starting heading or starting anchor when it\u2019s necessary to include some part of the referenced file content. The `from_id` attribute has higher priority than `from_heading`.\n\n`to_id`\n: ID of the ending heading or ending anchor when it\u2019s necessary to include some part of the referenced file content. The `to_id` attribute has higher priority than `to_heading`.\n\n`to_end`\n: Flag that tells the preprocessor to cut to the end of the included content. Otherwise, if `from_heading` or `from_id` is specified, the preprocessor cuts the included content to the next heading of the same level as the starting heading, or the heading that precedes the starting anchor.\n\n Example:\n\n ## Some Heading {#custom_id}\n\n <one_more_custom_id\n\n Here `Some Heading {#custom_id}` is the full content of the heading, `custom_id` is its ID, and `one_more_custom_id` is the ID of the anchor.\n\n### Optional Attributes Supported in Both Syntax Variants\n\n`sethead`\n: The level of the topmost heading in the included content. Use it to guarantee that the included text does not break the parent document\u2019s heading order:\n\n # Title\n\n ## Subtitle\n\n <\n\n`nohead`\n: Flag that tells the preprocessor to strip the starting heading from the included content:\n\n # My Custom Heading\n\n <\n\n Default is `false`.\n\n By default, the starting heading is included to the output, and the ending heading is not. Starting and ending anchors are never included into the output.\n\n`inline`\n: Flag that tells the preprocessor to replace sequences of whitespace characters of many kinds (including `\\r`, `\\n`, and `\\t`) with single spaces (` `) in the included content, and then to strip leading and trailing spaces. It may be useful in single-line table cells. Default value is `false`.\n\n`project_root`\n: Path to the top-level (\u201croot\u201d) directory of Foliant project that the included file belongs to. This option may be needed to resolve the `!path` and `!project_path` modifiers in the included content properly.\n\n > **Note**\n >\n > By default, if a local file is included, `project_root` points to the top-level directory of the current Foliant project, and if a file in a remote Git repository is referenced, `project_root` points to the top-level directory of this repository. In most cases you don\u2019t need to override the default behavior.\n\nDifferent options can be combined. For example, use both `sethead` and `nohead` if you want to include a section with a custom heading:\n\n```markdown\n# My Custom Heading\n\n<\n```\n\n### The Legacy Syntax\n\nThis syntax was the only supported in the preprocessor up to version 1.0.11. It\u2019s weird and cryptic, you had to memorize strange rules about `$`, `#` and stuff. The new syntax described above is much cleaner.\n\nThe legacy syntax is kept for backward compatibility. To use it, put the reference to the included file between `<...` tags.\n\nLocal path example:\n\n```markdown\nText below is taken from another document.\n\n<path/to/another/document.md\n```\n\nThe path may be either relative to currently processed Markdown file or absolute.\n\nTo include a document from a remote Git repository, put its URL between `$`s before the document path:\n\n```markdown\nText below is taken from a remote repository.\n\n<\n $https://github.com/foo/bar.git$path/to/doc.md\n\n```\n\nIf the repository alias is defined in the project config, you can use it instead of the URL:\n\n```yaml\n- includes:\n aliases:\n foo: https://github.com/foo/bar.git\n```\n\nAnd then in the source:\n\n```markdown\n<$foo$path/to/doc.md\n```\n\nYou can also specify a particular branch or revision:\n\n```markdown\nText below is taken from a remote repository on branch develop.\n\n<$foo#develop$path/to/doc.md\n```\n\nTo include a part of a document between two headings, use the `#Start:Finish` syntax after the file path:\n\n```markdown\nInclude content from \u201cIntro\u201d up to \u201cCredits\u201d:\n\n<sample.md#Intro:Credits\n\nInclude content from start up to \u201cCredits\u201d:\n\n<sample.md#:Credits\n\nInclude content from \u201cIntro\u201d up to the next heading of the same level:\n\n<sample.md#Intro\n```\n\nIn the legacy syntax, problems may occur with the use of `$`, `#`, and `:` characters in filenames and headings, since these characters may be interpreted as delimeters.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/foliant-docs/foliantcontrib.includes", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "foliantcontrib.includes", "package_url": "https://pypi.org/project/foliantcontrib.includes/", "platform": "any", "project_url": "https://pypi.org/project/foliantcontrib.includes/", "project_urls": { "Homepage": "https://github.com/foliant-docs/foliantcontrib.includes" }, "release_url": "https://pypi.org/project/foliantcontrib.includes/1.1.7/", "requires_dist": [ "foliant (>=1.0.10)", "foliantcontrib.escapecode (>=1.0.0)", "foliantcontrib.meta (>=1.1.0)" ], "requires_python": "", "summary": "Powerful includes for Foliant doc maker.", "version": "1.1.7" }, "last_serial": 5982996, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "9137ab68c751ce816cfe94e31e661a6a", "sha256": "f95190c2c29af2979638a41d2b50b253b15c659dc0d46a1951b53af6a515bb18" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9137ab68c751ce816cfe94e31e661a6a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 7984, "upload_time": "2017-12-14T11:18:57", "url": "https://files.pythonhosted.org/packages/71/0b/2346e74968045e66309ff7ce1b4684ad244f97c895cc4e28585e58595a49/foliantcontrib.includes-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f58090addfa3d5e029c1fadf279f8c76", "sha256": "3a7e79c34dd54d17f769a0bbb49e7d7212c9ed81d3de622babb4606443af4d65" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f58090addfa3d5e029c1fadf279f8c76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5670, "upload_time": "2017-12-14T11:18:59", "url": "https://files.pythonhosted.org/packages/50/72/a16e97525ad5c1ba4b76708f433df88d5a8a818535361a5eb7fa2caf28ee/foliantcontrib.includes-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "0718b70b0b3b9cc7402022b0580facd2", "sha256": "dc36bedf1e2b8c31f478c8936582e64d7d57ffde06136deeec1423aa855bdf34" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0718b70b0b3b9cc7402022b0580facd2", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 7997, "upload_time": "2017-12-15T18:28:39", "url": "https://files.pythonhosted.org/packages/a0/35/f920fa0ef451920d943bb5d5e5e5459d42ea0f9e6b293501637836d841d8/foliantcontrib.includes-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6d87150a531a078203da9cc496aa9df", "sha256": "ff6318cf789a2c08fb0bbd1a93ddc9f279bc4c4e94b75b652737c9b6fe02d1b2" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.1.tar.gz", "has_sig": false, "md5_digest": "f6d87150a531a078203da9cc496aa9df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5665, "upload_time": "2017-12-15T18:28:41", "url": "https://files.pythonhosted.org/packages/6f/2a/9df42f21dd665705f6e19b20cb9b90aabe6c56eb4be29ec789d9165263b6/foliantcontrib.includes-1.0.1.tar.gz" } ], "1.0.10": [ { "comment_text": "", "digests": { "md5": "35501c6293c85b9131b9e847d4195412", "sha256": "3482a8fbc5e14fadad5e3be84e70cbbf9f6dea49bcd7394d78d9ede3ac51077b" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.10.tar.gz", "has_sig": false, "md5_digest": "35501c6293c85b9131b9e847d4195412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7239, "upload_time": "2018-11-16T12:53:16", "url": "https://files.pythonhosted.org/packages/c4/06/c088ea4e391d34be4f623a96179df77d584226b345ae37c5edad7d62ecd5/foliantcontrib.includes-1.0.10.tar.gz" } ], "1.0.11": [ { "comment_text": "", "digests": { "md5": "4e47cd6c7d1728223482439f1201a340", "sha256": "b905d1df8694dd6232c5e8f581f569dfa7a41d8e363485f2b79f1fd647e03934" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.11.tar.gz", "has_sig": false, "md5_digest": "4e47cd6c7d1728223482439f1201a340", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7295, "upload_time": "2019-04-05T15:25:43", "url": "https://files.pythonhosted.org/packages/f9/3c/b3a9812e830b05b613cdb4faeb8c11adf96f3642c8b0a7878272e6339e47/foliantcontrib.includes-1.0.11.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "847b81b5f84707dc49bcaa4a12d7a336", "sha256": "c4b5ada3984917292d8df00d8e270b33abb80984c57185c973b103c89a202aaa" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "847b81b5f84707dc49bcaa4a12d7a336", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7953, "upload_time": "2018-03-21T18:14:52", "url": "https://files.pythonhosted.org/packages/cd/a0/b9dbfb2f2e08d871eb67f99c3da5b69713f148bc187fc77cf90ff6d85aa2/foliantcontrib.includes-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16231f1163b545c0806206941d1d0cac", "sha256": "fbb503e674c8c85b8502b4ab8450f5d4f1728942bb3e8a65da1e3fa724d7e2c0" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.2.tar.gz", "has_sig": false, "md5_digest": "16231f1163b545c0806206941d1d0cac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5617, "upload_time": "2018-03-21T18:14:54", "url": "https://files.pythonhosted.org/packages/60/74/de348fdc652d5fbac3ba41e96a3831ded91da57461d98041a5de27fd0c1b/foliantcontrib.includes-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "4fde6524121147d2140dc1b4e016fd12", "sha256": "4b3eff490d093e7c73630ad5fddd8c152fe7a4fce5352bd85257557f6e8cb2bc" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "4fde6524121147d2140dc1b4e016fd12", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7996, "upload_time": "2018-03-31T09:30:43", "url": "https://files.pythonhosted.org/packages/25/e5/3a1cae5b3540f7ad46492d4f2d8547f3ee83823d709a7fb93920d41a61cd/foliantcontrib.includes-1.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15ab84a79b2946b60914920b11db4ccb", "sha256": "ff370d177f07de623bcfc70932acdf2038e703a7ca87eee9b8dce025c35c6610" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.3.tar.gz", "has_sig": false, "md5_digest": "15ab84a79b2946b60914920b11db4ccb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5648, "upload_time": "2018-03-31T09:30:45", "url": "https://files.pythonhosted.org/packages/aa/9a/eddd752d756939182819f8f71da4504148f815481d9df46833a9df8cab03/foliantcontrib.includes-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "f9e3f7b26d32b064c3483a21f22ee0fb", "sha256": "96ad6b607fd0094b7b35221038faf1f0bf341349e9eca123cd6415601f69e365" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "f9e3f7b26d32b064c3483a21f22ee0fb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8003, "upload_time": "2018-04-01T16:47:30", "url": "https://files.pythonhosted.org/packages/a3/3b/4771fda91dbc244bde185c432712600492bfed8dfa9b9564e03f5f0fcdf0/foliantcontrib.includes-1.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "139e77738ee0a266fbfb9d5f5a746cb7", "sha256": "aa8363ac7fede16566a51d11c50da14c27c3cfdc313ab188e95ec4f4b26dcd04" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.4.tar.gz", "has_sig": false, "md5_digest": "139e77738ee0a266fbfb9d5f5a746cb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5663, "upload_time": "2018-04-01T16:47:31", "url": "https://files.pythonhosted.org/packages/f5/3d/ac7bc6ee4d8dbd60e69b1b64fe2df362da0c31a2b8e9ac46dc3a3c449e6a/foliantcontrib.includes-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "2f1eaa16d214ca5c02b934dd3f6e8146", "sha256": "7cd59f7abbaaf2a0afe6c3ef49a1760f9c8813b335d2a2584b4b448cf44f3104" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "2f1eaa16d214ca5c02b934dd3f6e8146", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6379, "upload_time": "2018-06-04T11:30:06", "url": "https://files.pythonhosted.org/packages/dc/40/cbb8e3902803a49e3b4a3fb24650232b72ab6ce631e6de6fe59f0730cd33/foliantcontrib.includes-1.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7341e8a354346c239f47766e579813c", "sha256": "72e106b2babfd303ba0cf3211f7092af99d6518ed10aca86fa661a2d7288219b" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.5.tar.gz", "has_sig": false, "md5_digest": "a7341e8a354346c239f47766e579813c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6388, "upload_time": "2018-06-04T11:30:07", "url": "https://files.pythonhosted.org/packages/0b/89/5e3be16943266e5f01d611ab9dc54930a7127f9a58b2d54b92ce3578bf77/foliantcontrib.includes-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "6427bb3160a6394792a28a7c9bfca6cf", "sha256": "c4d6bcba029c02efdd87a2e6578318a1b989713c82eacf724f2e00763e6f08c2" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "6427bb3160a6394792a28a7c9bfca6cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6365, "upload_time": "2018-06-04T19:23:33", "url": "https://files.pythonhosted.org/packages/e7/dd/4e2d6233fd6823c3e8ea2cf065a41dbad544e2b0adde736238dbef040ce5/foliantcontrib.includes-1.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c27172f14852653fbd48daca06c5495", "sha256": "343fee25e1272c24946cee06b82cec66d007d4b0e69a7c16f62403b753b4a12c" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.6.tar.gz", "has_sig": false, "md5_digest": "0c27172f14852653fbd48daca06c5495", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6377, "upload_time": "2018-06-04T19:23:35", "url": "https://files.pythonhosted.org/packages/76/dd/34d248a36637ef61031bb2a501d73f311559a242ae1887f790e5976e731c/foliantcontrib.includes-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "39080316d2ff3e953bca34e25b1cfba7", "sha256": "5526faab77de81bc866ec0cd0f4ce67ca96e087d6dabd75559d935b4cbad9131" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "39080316d2ff3e953bca34e25b1cfba7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6963, "upload_time": "2018-06-06T20:05:17", "url": "https://files.pythonhosted.org/packages/05/c9/c94bb69028b9228f4eac597e5b8fee96f2cec2033f44f025c476a0501c15/foliantcontrib.includes-1.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "adeb52c2553696813ebac0b3051de159", "sha256": "7d6a30a858f8c7f089007e5237ae5749c308d02c81eb177f58263b4c6b191b39" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.7.tar.gz", "has_sig": false, "md5_digest": "adeb52c2553696813ebac0b3051de159", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6980, "upload_time": "2018-06-06T20:05:20", "url": "https://files.pythonhosted.org/packages/da/29/68ed0f802831ae7474108735d640a082639d76a1cea924afe2ab840a6206/foliantcontrib.includes-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "2ad98dcdb02f50eee313aa67b146de32", "sha256": "df112d0bbf349b37dca70f4b767947bd0dcf7b0a0d4cb9f6d04fef1d3d0f0f6e" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.8.tar.gz", "has_sig": false, "md5_digest": "2ad98dcdb02f50eee313aa67b146de32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7189, "upload_time": "2018-08-31T10:43:54", "url": "https://files.pythonhosted.org/packages/8b/cf/1350de727e76e81d0a1a6228bbe2118fde7799b7567e199cfa99eea528de/foliantcontrib.includes-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "a923608ee2ea51873f761dccf8eafabc", "sha256": "9bb422493c916937fe8efb76c0b437ce26e078ce7f4ed38817a23f49205242d5" }, "downloads": -1, "filename": "foliantcontrib.includes-1.0.9.tar.gz", "has_sig": false, "md5_digest": "a923608ee2ea51873f761dccf8eafabc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7213, "upload_time": "2018-10-11T14:16:05", "url": "https://files.pythonhosted.org/packages/c7/64/e1c0b16902fa81b7d056bc4744c998f9b0299f7ee15f87a45e5cfb436bc5/foliantcontrib.includes-1.0.9.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "138add2a243bd04b274d06fd316736a0", "sha256": "bfc03adb8d059c24369f802da845d30acd0ce95436aa24defb99b63f4519f100" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.0.tar.gz", "has_sig": false, "md5_digest": "138add2a243bd04b274d06fd316736a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9680, "upload_time": "2019-06-28T11:35:29", "url": "https://files.pythonhosted.org/packages/e3/0b/03a147eba520bc506c9eca8c83a5be882592fa76d0c9cc1bc85d014d7774/foliantcontrib.includes-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "1aa4e481f279ac089f6751a4421990a1", "sha256": "206139c1b439c44337f6520f82cf0fb9410c433087e69eddd8c377d9ef86dd2b" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1aa4e481f279ac089f6751a4421990a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11228, "upload_time": "2019-07-30T12:33:03", "url": "https://files.pythonhosted.org/packages/75/1f/683637c8bd0403f03978e07897ace7e6a42b3b39dda8534ab06a320627e3/foliantcontrib.includes-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11330cc09dca205fa7d6f29f2b740ffc", "sha256": "d719ae431ea2490139d8b1c37814fe84406afac978635df16f223d253483b808" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.1.tar.gz", "has_sig": false, "md5_digest": "11330cc09dca205fa7d6f29f2b740ffc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10556, "upload_time": "2019-07-30T12:33:04", "url": "https://files.pythonhosted.org/packages/20/7d/c90b8bbdc2ccdde74d30716a1bf43d42bff9acb01adf7faf3a760207756f/foliantcontrib.includes-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "8a4e8fbf1e2a0bb7367f7b92a2d89c3f", "sha256": "c1d72e3c76e34bebd6fbe2f4f0c6633d700ffb3107bc8dc0db4c0b38055c9748" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8a4e8fbf1e2a0bb7367f7b92a2d89c3f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11233, "upload_time": "2019-07-30T14:12:48", "url": "https://files.pythonhosted.org/packages/1b/47/d876ceaaa265325e247ef5c4adb4daac8d7a61f54331818517742cb9ac9a/foliantcontrib.includes-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b286a8f8031b6487d1c49f5b6f9a39a", "sha256": "88e164f499c674525e9e8a2db1933f177df071ffc195d78c3e92fb15e98072c3" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.2.tar.gz", "has_sig": false, "md5_digest": "4b286a8f8031b6487d1c49f5b6f9a39a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10579, "upload_time": "2019-07-30T14:12:50", "url": "https://files.pythonhosted.org/packages/1f/70/7c2650d7e53727f76c4c01fc5b0cd86f249e43af8284b856009b80701df7/foliantcontrib.includes-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "a3ca2d90440b16b9bd155105a2b18af3", "sha256": "f83ac7ff648e34b72caf6dd4be78786cc531a320774d07a75540de9a8151f2d2" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a3ca2d90440b16b9bd155105a2b18af3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11929, "upload_time": "2019-08-14T11:11:57", "url": "https://files.pythonhosted.org/packages/e6/08/d4ef063db78be99dfcad1143244f4d83f7e6373d06189d2c9fd77d6dcf40/foliantcontrib.includes-1.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67a018318764d34898404c2d4aff2324", "sha256": "53abfd9deffb6907fd182b8759d8f6f16ed2d9c479f32c366b891f7ac62df5bc" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.3.tar.gz", "has_sig": false, "md5_digest": "67a018318764d34898404c2d4aff2324", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11220, "upload_time": "2019-08-14T11:11:58", "url": "https://files.pythonhosted.org/packages/43/1b/52c6d874e839b744138ad85ec5564ba581706fc0cc1b513bcff7e60a048a/foliantcontrib.includes-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "c7c38f7a8b137267eb8c836a3f8a1adb", "sha256": "667dbe362f9dea352525d0290ecaf8a2fdb453070f80af0c1ed7d362fd9d30a8" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "c7c38f7a8b137267eb8c836a3f8a1adb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11926, "upload_time": "2019-08-23T12:44:13", "url": "https://files.pythonhosted.org/packages/16/e6/cb7dc21ec72b5a48898f0db6e9ce99c4186994e630b5013fb0b4599372ac/foliantcontrib.includes-1.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "deb421a8758a39bb0d25d0d27fb2920b", "sha256": "2dd80c40dff0c1e6440d046250a9b49af2fec6ced2f796597c682f870e3d6a62" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.4.tar.gz", "has_sig": false, "md5_digest": "deb421a8758a39bb0d25d0d27fb2920b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11214, "upload_time": "2019-08-23T12:44:15", "url": "https://files.pythonhosted.org/packages/b7/a2/ae3f5a81644d920714a3a31f8e0da8741dd6bd2190230147d91a66511b33/foliantcontrib.includes-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "0aedb4a1df8688336e21b79c31f63ff6", "sha256": "6313c54c92d8334564f9c8ecebe10fb92ac573ee84efe5b19d2e4ecf68c5fe30" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "0aedb4a1df8688336e21b79c31f63ff6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12013, "upload_time": "2019-08-27T09:02:49", "url": "https://files.pythonhosted.org/packages/fa/f6/bca35fe4fc0c03d234ab758ba9a9144bf8a4c68a2b3c122869aee4f223b2/foliantcontrib.includes-1.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95aa1ecd946b6d8942c558e48f238fc9", "sha256": "5fb136ff4fd0d739b43ebc92c4182df06c1590ae1417a2ec6514c61b757d2f61" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.5.tar.gz", "has_sig": false, "md5_digest": "95aa1ecd946b6d8942c558e48f238fc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11375, "upload_time": "2019-08-27T09:02:50", "url": "https://files.pythonhosted.org/packages/f5/a8/0b22c2f61098a95c4309c55d7b4d71365757708bedfb8dd691fe3118f221/foliantcontrib.includes-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "9d84292cf2b8fa2e5ad144aa5b25ef2e", "sha256": "161a9bb59d0a208ac66ff5da99da1138a9da22ea6c6f817c1d8a6441af7563e4" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "9d84292cf2b8fa2e5ad144aa5b25ef2e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12023, "upload_time": "2019-08-28T11:52:04", "url": "https://files.pythonhosted.org/packages/76/8b/3b43672c7fe82fb792b784c2e745c3005023feb7398d082cba3e548f82c7/foliantcontrib.includes-1.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ad8c4acabbefcf847a0d3fc52d423b2", "sha256": "ef9dff30031ab0c3c74d8d8b3a80ff56239be9627a31e6bdd43c332cd429718f" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.6.tar.gz", "has_sig": false, "md5_digest": "2ad8c4acabbefcf847a0d3fc52d423b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11384, "upload_time": "2019-08-28T11:52:06", "url": "https://files.pythonhosted.org/packages/9a/c3/8ad4cdef1a601dd5917bfd6556d866b2d1f1aa3e900b0d11be57c95e6417/foliantcontrib.includes-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "77f86b9d4039006c92fa3eac8a8d9fcc", "sha256": "8ef1c10544e0fbc587b401dad59de76d132233539a6ac7f67e164bb53f9d5f67" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "77f86b9d4039006c92fa3eac8a8d9fcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12071, "upload_time": "2019-10-16T12:42:40", "url": "https://files.pythonhosted.org/packages/df/48/ff09a960bb621e117cdd9570c33768b5f704774fc82466cf23a3c37d8f55/foliantcontrib.includes-1.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d54051138cb11487476c5f762531ca7", "sha256": "0817a07500a896693192b153897f53a2ebf56cfa5cfb79d11e1a19f15508a11a" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.7.tar.gz", "has_sig": false, "md5_digest": "6d54051138cb11487476c5f762531ca7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11436, "upload_time": "2019-10-16T12:42:41", "url": "https://files.pythonhosted.org/packages/74/9c/b7b6289cc32843c3e0950b63c90f57015546a72b792f3f15e2c2653d0965/foliantcontrib.includes-1.1.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "77f86b9d4039006c92fa3eac8a8d9fcc", "sha256": "8ef1c10544e0fbc587b401dad59de76d132233539a6ac7f67e164bb53f9d5f67" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "77f86b9d4039006c92fa3eac8a8d9fcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12071, "upload_time": "2019-10-16T12:42:40", "url": "https://files.pythonhosted.org/packages/df/48/ff09a960bb621e117cdd9570c33768b5f704774fc82466cf23a3c37d8f55/foliantcontrib.includes-1.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d54051138cb11487476c5f762531ca7", "sha256": "0817a07500a896693192b153897f53a2ebf56cfa5cfb79d11e1a19f15508a11a" }, "downloads": -1, "filename": "foliantcontrib.includes-1.1.7.tar.gz", "has_sig": false, "md5_digest": "6d54051138cb11487476c5f762531ca7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11436, "upload_time": "2019-10-16T12:42:41", "url": "https://files.pythonhosted.org/packages/74/9c/b7b6289cc32843c3e0950b63c90f57015546a72b792f3f15e2c2653d0965/foliantcontrib.includes-1.1.7.tar.gz" } ] }