{ "info": { "author": "Paul Landes", "author_email": "landes@mailc.net", "bugtrack_url": null, "classifiers": [], "description": "# Persist and create build out environments in a nascent account\n\n[![Travis CI Build Status][travis-badge]][travis-link]\n[![PyPI][pypi-badge]][pypi-link]\n\nThis program captures your home directory and synchronize it with another host\nusing Git repo metadata, symbolic links and persisted files.\n\nI wrote this because I couldn't find anything that creates repositories with\nthe idea of having a portable and easy to recreate your home directory on\nanother host. If I've reinvented the wheel, please let me know :)\n\nMore specifically: it persists and creates build out environments in a nascent\naccount. The program *memorizing* a users home directory and building it out\non another system (see [overview](#overview)). This is done by:\n1. Copying files, directories and git repos configuration.\n2. Creating a distribution compressed file.\n3. Uncompress on the destination system and create repos.\n\nA future release will also synchronize and manage multiple GitHub repositories.\n\n\n\n## Table of Contents\n\n- [Obtaining](#obtaining)\n- [Overview](#overview)\n- [Usage](#usage)\n - [Repository Information](#repository-information)\n - [Moving or Deleting Distributions](#moving-or-deleting-distributions)\n - [Command Line Help](#command-line-help)\n- [Configuration](#configuration)\n - [Variable Substitution](#variable-substitution)\n - [Links](#links)\n - [Profiles](#profiles)\n - [Excluding Top Level Objects](#excluding-top-level-objects)\n - [Example Configuration](#example-configuration)\n- [Symbolic Links](#symbolic-links)\n- [Requirements](#requirements)\n- [Planned Future Features](#planned-future-features)\n- [Changelog](#changelog)\n- [License](#license)\n\n\n\n\n## Obtaining\n\nThe easist way to install the command line program is via the `pip` installer:\n```bash\npip install zensols.grsync\n```\n\nBinaries are also available on [pypi].\n\n## Overview\n\nNot only is the aim to create a repproducable development (or like)\nenvironment, it is also to create a *clean* environment. This means we have\ntemporary directories we might expect to exist for our process(es), and of\ncourse repositories cloned in their nascent state. These steps are summarized\nbelow:\n\n1. **Freeze**: This process captures the current host's setup and\n configuration (specified in the [configuration file]) and includes:\n * Empty directories.\n * Git repository meta data.\n * Locations of files to copy, top level directories of files to recursively\n\t copy, where symlinks are considered files as well and currently not\n\t followed. See [caveat](#symbolic-links).\n\n\t A sub-step of this process is *discover*, which reads the file system as\n\t indicated by the configuration file. This includes reading git repostiory\n\t metadata, identifying file metadata (i.e. permissions) etc.\n1. **Bootstraping**: create an Python virtual environment on the target machine\n that can be loaded with this program and depenedencies. This is not a\n necessary step as the program is available as a [pip] install. However, if\n this step can be used to help automate new environments, after which, you\n could futher add/install software with tools such as [Puppet].\n3. **Thaw**: This includes two steps:\n 1. **File Extraction**: extracts the files from the distribution zip created\n\t in the *freeze* step.\n 2. **Repo Cloning**: this step recursively clones all repositories.\n\n\n## Usage\n\nThe program has two phases: *freeze* and *thaw* (see [overview](#overview)).\nThe command line program is used twice: first on the *freeze* on the source\nsystem and then *thaw* on the target machine.\n\nFirst the distribution is created as a configuration file along with saved\nfiles in a distribution zip file. This distribution file is then copied to the\ntarget machine that is to be configured with the user's home directory setup.\nThe distribution also includes a bootstrap script that creates a Python virtual\nenvironment and then invokes the program to *thaw* the distributing.\n\n1. [Install](#obtaining) the `grsync` program.\n2. Decide what you want to transfer to the target system (see\n [configuration](#configuration)). This file explains each section of the\n file with inline comments and should be sufficient to munge your own.\n3. Create the distribution, for example: `grsync freeze -c grsync.yml -d ./dist`.\n4. Copy the distribution zip file to the host, for example: `scp -r ./dist\n ~/`\n5. Log into that host: `slogin `\n6. Call the bootstrapper: `cd ./dist && ./bootstrap.sh /usr/bin ./dist python3.6`\n This attempts to create the Python virtual environment, install the program\n dependencies and *thaw* the distribution.\n\n To do this step manually:\n 1. [Install](#obtaining) the `grsync` program.\n 2. Thaw the distribution on the target: `grsync thaw -d ./dist`\n\n\n### Repository Information\n\nAs you build your `grsync.yml` [configuration file] (see the\n[configuration](#configuration section)), it's helpful to see what repositories\nit's finding. This is you can do this with the `repos` and `repoinfo`, which\nshow repositories, remotes, and indexed symbol links to or within the\nrepositories.\n\n\n### Moving or Deleting Distributions\n\nA common usecase is migrate a distribution several times to a target host after\nthe original host has changed. However, the thaw process does not clobber file\nsystem objects that already exist, which implies that for each file set change\nand thaw the target host's files won't update.\n\nOnly files specified in the [configuration file] are moved to a directory with\nthe same directory structure by moving files. If a directory is specified, the\ndirectory itself is moved. If a file is specified for which there is no\ndirectory in the target, the directory is created.\n\nAfter everything is moved, a process called *directory reduction* occurs by\nwhich empty directories are removed. This is an optional step given to the\n`move` action.\n\nBecause the action works with a distribution file (ideally the original) you\nmust specify where to find the `dist.zip`. In situations where you've already\ndeleted the original distribution zip, you'll have to create a new distribution\nby freezing what you have. For this reason it is recommended that you always\ninclude the original `grsync.yml` [configuration file] (see the\n[configuration](#configuration section)) in your distribution so it *migrates*\nalong with each of your freeze/thaw iterations.\n\n\n### Command Line Help\n\nThis information is given by the command line `grsync -h`, but repeated here\nfor convenience:\n```sql\nUsage: usage: grsync [options]\n\nOptions:\n --version show program's version number and exit\n -h, --help show this help message and exit\n -w NUMBER, --whine=NUMBER\n\t\t\t\t\t\tadd verbosity to logging\n -c FILE, --config=FILE\n\t\t\t\t\t\tconfiguration file\nActions:\n freeze Create a distribution\n -d, --distdir the location of build out distribution\n --wheeldep zensols.grsync used to create the wheel dep files\n -p, --profiles comma spearated list of objects to freeze\n\n info Pretty print discovery information\n\n repoinfo Get information on repositories\n -n, --name comma spearated list of repo names\n -p, --profiles comma spearated list of objects to freeze\n\n repos Output all repository top level info\n -f, --format {path} format string (i.e. {name}: {path} ({remotes}))\n -p, --profiles comma spearated list of objects to freeze\n\n thaw Build out a distribution\n -d, --distdir the location of build out distribution\n -t, --targetdir the location of build out target dir\n -p, --profiles comma spearated list of objects to freeze\n```\n\n\n## Configuration\n\nThe configuration is used the *freeze* phase to create the distribution file.\nThis fil contains all git repositories, files, empty directory paths on the\ncurrent file system that is stored to be *thawed* on the target system.\n\nThe structure of the configuration file is not validated, and generally\nspeaking, can be leveraged for variable substitution (see [variable\nsubstitution](#variable-substitution). An overview of the structure follows:\n\n* **discover**: root\n * **objects**: a list of files, directories and repository directories.\n * **empty_dirs**: A list of directories.\n * **target**: contains information used during the *thaw* process on the\n\ttarget host.\n\t* **config**: the path to create this configuration file, which is optional\n\t and should not be given if already declared in as an **object** file\n\t entry.\n\t* **links**: a list of file path pattern symbolic links to create during\n\t the **thaw** (see [links](#links)).\n\t * **link**: a specific link entry.\n\t\t* **source**: the source path at *thaw* time of the symbolic link.\n\t\t* **target**: the target path at *thaw* time of the symbolic link.\n\t* **default_profiles**: a comma-separated list of profile names (including\n\t `nodefault`) to be used when the command line option (`-p`) is not given.\n\t See [profiles](#profiles).\n\t* **profiles**: contains all profile definitions for this configuration\n\t file.\n\t\t* **``**: this profile name\n\t\t * **objects**: same as top level but pertains only to this profile.\n\t\t * **empty_dirs**: same as top level but pertains only to this profile.\n\t* **repo**: contains information used when thawing repositories.\n\t * **remote_pref**: the remote (and respective URL) to make the primary\n\t\t'master' default repository when thawing the repository. This is\n\t\thelpful when there are more than one remotes.\n * **wheel**: instructs the program on what/how wheels are created during the\n\t*freeze* process.\n\t* **create**: if `true` create wheels.\n * **local**: specifies how to create the distribution during the *freeze*\n\tprocess.\n\t * **dist_dir**: the default directory to create the distribution (used\n\t\twhen not specified on the command line with `-d`).\n\t * **wheels_dir**: the directory of where to create the wheels when wheel\n\t\tcreation is turned on.\n * **bootstrap**: indicates target information used to create the bootstrap\n\tscript/process.\n\t* **inst_dir**: install directory of the boot strap files on the target on\n\t *thaw*.\n\t* **python_dir**: where the virutal environment python directory is\n\t created.\n\t* **wheel_dir**: location of the wheels directory (if created during\n\t *freeze*) to be installed during bootstrap.\n\n\n### Variable Substitution\n\nThe configuration file can be leveraged for variable substitution using a\n`^{name}` syntax where `name` is any dot (.) separated path. The\n`discovery.codedir` variable in the [configuration file] is an example of a\nvariable with substituions in the `objects` entry. The exception to variable\nnames in the configuration file are those given to define repositories, files,\netc.\n\n\n### Links\n\nConfiguration link entries tell the program what symolic links to create.\nThis is useful when you have a repository that keeps track of your\nconfgiuration information on a per OS or host basis. For example, your\n`~/.profile` might include different `PATH` set up on MacOS vs. Linux.\n\n[Variable substitution](#variable-substitution) is allowed in both the source\nand target paths.\n\n\n### Profiles\n\nProfiles allow you to generate a *frozen* distribution of a subset of declared\nrepositories and files. The idea is similar [maven-profiles] with each having\na top level name in the configuration that mirrors the same structure as under\nthe `discover` level in the [configuration file] with entry `profiles`.\n\nProfiles are always given in a comma-separated list to allow more than one\nprofile to be added to the list of objects to *freeze*.\n\nThe order in which the program decides what profiles to use is (only one of)\nthe following:\n1. Command line with option `-p`.\n2. Configuration file.\n3. All profiles.\n\n\n#### Excluding Top Level Objects\n\nThe top level objects (i.e. `objects` and `empty_dirs`) are always added to the\ndistribution with one exception: by excluding the *default* profile. The\n*default* profile is a special profile that includes all default objects to the\ndistribution. If you don't want these top level elements, you can specify a\nspecial `nodefault` keyword.\n\n\n### Example Configuration\n\nSee the [test case yaml file](test-resources/midsize-test.yml) for an example\nof a simple configuration file to capture a set of git repositories and small\nset of files. The freeze/thaw/move test case uses [this configuration\nfile](test-resources/fs-test.yml), which is more comprehensive and up to date.\n\n\n## Symbolic Links\n\nAs mentioned in the [usage](#usage) section, symbolic links pointing to any\nfile in a repository are *froozen*, which means that integrity at thaw time is\nensured. However, links **not** pointing to a repository are persisted, but\nthe files and directories they point to are not.\n\nA future release might have a *follow symbolic links* type functionality that\nallows this. However, for now, you must include both the link and the data it\npoints to get this integrity.\n\n\n## Requirements\n\n* At least [Python 3.6]\n* A system that supports [PyYAML]\n\n\n## Planned Future Features\n\nPreserve and restore file and directory timestamps.\n\n\n## Changelog\n\nAn extensive changelog is available [here](CHANGELOG.md).\n\n\n## License\n\nCopyright (c) 2018-2019 Paul Landes\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n[travis-link]: https://travis-ci.org/plandes/grsync\n[travis-badge]: https://travis-ci.org/plandes/grsync.svg?branch=master\n[pypi]: https://pypi.org/project/zensols.grsync/\n[pypi-link]: https://pypi.python.org/pypi/zensols.grsync\n[pypi-badge]: https://img.shields.io/pypi/v/zensols.grsync.svg\n\n[Python 3.6]: https://www.python.org\n[PyYAML]: https://pyyaml.org\n[test configuration]: test-resources/grsync-test.yml\n\n[maven profiles]: https://maven.apache.org/guides/introduction/introduction-to-profiles.html\n[configuration file]: test-resources/midsize-test.yml#L29\n[configuration file profile entry]: test-resources/midsize-test.yml#L29\n[pip]: https://docs.python.org/3/installing/index.html\n[Puppet]: https://en.wikipedia.org/wiki/Puppet_(software)\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/plandes/grsync/releases/download/v0.0.13/zensols.grsync-0.0.13-py3-none-any.whl", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/plandes/grsync", "keywords": "tooling,configuration", "license": "", "maintainer": "", "maintainer_email": "", "name": "zensols.grsync", "package_url": "https://pypi.org/project/zensols.grsync/", "platform": "", "project_url": "https://pypi.org/project/zensols.grsync/", "project_urls": { "Download": "https://github.com/plandes/grsync/releases/download/v0.0.13/zensols.grsync-0.0.13-py3-none-any.whl", "Homepage": "https://github.com/plandes/grsync" }, "release_url": "https://pypi.org/project/zensols.grsync/0.0.13/", "requires_dist": [ "zensols.actioncli (>=1.0.13)", "gitpython (>=2.1.11)" ], "requires_python": "", "summary": "Synchronize and manage multiple GitHub repositories", "version": "0.0.13" }, "last_serial": 5514785, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "9e3177406f6ae6b642e02fed6b2895f6", "sha256": "2d4915d4df4b0371f4f3b34f4f92f561d73b6ce2cc6aa27845685e3533db0a08" }, "downloads": -1, "filename": "zensols.grsync-0.0.1-py3.6.egg", "has_sig": false, "md5_digest": "9e3177406f6ae6b642e02fed6b2895f6", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 22567, "upload_time": "2018-08-12T07:48:04", "url": "https://files.pythonhosted.org/packages/78/17/a1c8fd30663340160e14604f7402a42ac2d2ad27c497c1f3962a5eca67dd/zensols.grsync-0.0.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "5c69f4d3a28e8ca8cc61a2116fdb36f1", "sha256": "500b20673b07cc787fc835e76f2252e51c68144bf8b13fde23821384b3eff25f" }, "downloads": -1, "filename": "zensols.grsync-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5c69f4d3a28e8ca8cc61a2116fdb36f1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10189, "upload_time": "2018-08-12T07:48:03", "url": "https://files.pythonhosted.org/packages/54/85/cacd0ac8043b086cdfbcc2ba4b373e9f5161d3f772c5396ba742fd9e3279/zensols.grsync-0.0.1-py3-none-any.whl" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "285ae46f16a310e87c7183350302e6d5", "sha256": "8294e8e744bfb575ba514764980c91a3516990e3322faa7f5bcd3e2533192f65" }, "downloads": -1, "filename": "zensols.grsync-0.0.10-py3.6.egg", "has_sig": false, "md5_digest": "285ae46f16a310e87c7183350302e6d5", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 52442, "upload_time": "2019-06-23T15:12:03", "url": "https://files.pythonhosted.org/packages/da/cd/4b175e1be5ce0bb98e742aad62c5b8af82c7ff75afd45b024590ff25dd3f/zensols.grsync-0.0.10-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c11ca79d47144da72ac5b0085fdbc8c9", "sha256": "59c757a6bdcff8de737bde2a659f000978b9f51cc11dde10d7490ce3745ec7a2" }, "downloads": -1, "filename": "zensols.grsync-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "c11ca79d47144da72ac5b0085fdbc8c9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25915, "upload_time": "2019-06-23T15:12:01", "url": "https://files.pythonhosted.org/packages/10/0b/90294ea4a5b86b5f183edab7aac9b437bdb4fda961372b4d81ff037027cf/zensols.grsync-0.0.10-py3-none-any.whl" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "26dd92f7b0fa18b983f868e9da808eb9", "sha256": "56d3ea40cff0dfcfde36b68ac8d9c44ba17181eb59fd0e0a74d08550d00c620c" }, "downloads": -1, "filename": "zensols.grsync-0.0.11-py3.6.egg", "has_sig": false, "md5_digest": "26dd92f7b0fa18b983f868e9da808eb9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 52406, "upload_time": "2019-06-23T22:58:13", "url": "https://files.pythonhosted.org/packages/fa/92/754586322cecc713d19b7a8d13f25e5942ae7b564132a0672c60665dbba0/zensols.grsync-0.0.11-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c2c63b3839e1ac8434981fa164685f2d", "sha256": "8a333cbc88af902b834614f04e9694ff82080deda144bb1601c7eaa9a5d69296" }, "downloads": -1, "filename": "zensols.grsync-0.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "c2c63b3839e1ac8434981fa164685f2d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25914, "upload_time": "2019-06-23T22:58:12", "url": "https://files.pythonhosted.org/packages/c3/f3/e62b40f7d8aab22f8a82aac46fc40d541751b78fdadfc9acde0442d0d765/zensols.grsync-0.0.11-py3-none-any.whl" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "18eb79cd9bd754b2827470e5ddba8a55", "sha256": "b51d8f68c689ba5af9c5d0eeefdda2408c337777ac87f399220c03847e55412f" }, "downloads": -1, "filename": "zensols.grsync-0.0.12-py3.6.egg", "has_sig": false, "md5_digest": "18eb79cd9bd754b2827470e5ddba8a55", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 52899, "upload_time": "2019-06-24T10:13:18", "url": "https://files.pythonhosted.org/packages/c9/e0/af3c4497610c2894e1769b224a93c707707a229b8007ab3bf51e5e94d5da/zensols.grsync-0.0.12-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "86849676533fb8c9ec6c53b30a22c32a", "sha256": "0e459dbc95e78e6cfbf0950bcf1b99ad797bd8e38e7cb8911447738288fb3484" }, "downloads": -1, "filename": "zensols.grsync-0.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "86849676533fb8c9ec6c53b30a22c32a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26209, "upload_time": "2019-06-24T10:13:17", "url": "https://files.pythonhosted.org/packages/0b/a8/e053e4c517fcf6e7804293a550149fbac93ef9482a8da119aed6a9aa9d3a/zensols.grsync-0.0.12-py3-none-any.whl" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "ae47d4b292f6f488cc6f9386c3fc882d", "sha256": "720d1ea8088837ab8138a167c8ef144c3c016b7aea5b2db83c991f9e27b7364c" }, "downloads": -1, "filename": "zensols.grsync-0.0.13-py3.6.egg", "has_sig": false, "md5_digest": "ae47d4b292f6f488cc6f9386c3fc882d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 55215, "upload_time": "2019-07-11T02:08:48", "url": "https://files.pythonhosted.org/packages/b2/87/ba5191e81ec1f6146f40bdacce269f65c152772d3a90530a5bf31af59819/zensols.grsync-0.0.13-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c66a397be8dc36e95a7c0fbe6f8497a5", "sha256": "a3ed474242335071b5e56bf5bb0e7928c6cb5b0127f14de83b2a1bdb4e19dc37" }, "downloads": -1, "filename": "zensols.grsync-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "c66a397be8dc36e95a7c0fbe6f8497a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27188, "upload_time": "2019-07-11T02:08:47", "url": "https://files.pythonhosted.org/packages/7c/ad/f0cbbc9b8e69ed2c36aa7558cc2d4a5f0124ae6dfe746789aadfafb13d91/zensols.grsync-0.0.13-py3-none-any.whl" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "5ae06da36bd135aa12ef36982872826e", "sha256": "e1d3d6da5bf956b5f581860f0ea26777dd24a48fe1986ab45a43211b03d41f1c" }, "downloads": -1, "filename": "zensols.grsync-0.0.2-py3.6.egg", "has_sig": false, "md5_digest": "5ae06da36bd135aa12ef36982872826e", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 22528, "upload_time": "2018-08-12T10:16:06", "url": "https://files.pythonhosted.org/packages/6f/4f/512008f0d55c5a4b5ba33b3abb36165f7f46dd467b7cda19fba218c1aabe/zensols.grsync-0.0.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "654bf6f827aa737504e4a5b6d1c17f54", "sha256": "5c7f048f4a57580f34bfcb8ae58dfcb7226267583b53607c1735770f9bd49953" }, "downloads": -1, "filename": "zensols.grsync-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "654bf6f827aa737504e4a5b6d1c17f54", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10172, "upload_time": "2018-08-12T10:16:05", "url": "https://files.pythonhosted.org/packages/bc/79/1c069ff1a618e0fe1a33d1b5a907820bc79407f6af9dd014282155d7a04e/zensols.grsync-0.0.2-py3-none-any.whl" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "4313e795be090a219ebc051ec1203559", "sha256": "fd37b0964157f0b8dbe20210863b679e4518811b54cc1a0a641c393242cb2009" }, "downloads": -1, "filename": "zensols.grsync-0.0.3-py3.6.egg", "has_sig": false, "md5_digest": "4313e795be090a219ebc051ec1203559", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 23050, "upload_time": "2018-08-14T02:58:21", "url": "https://files.pythonhosted.org/packages/13/d3/246db0410821bf17ae130639f911b74c8bcc6ea2214f561930d53aa41d28/zensols.grsync-0.0.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "e8ebec8192d23729ca63dfbd178bf250", "sha256": "85aa4b7b37443098eb9eb69aa349fffeb96803fea55de1a114960ba56a52d2d7" }, "downloads": -1, "filename": "zensols.grsync-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e8ebec8192d23729ca63dfbd178bf250", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10373, "upload_time": "2018-08-14T02:58:19", "url": "https://files.pythonhosted.org/packages/07/06/8ade5d70f44c2b0e27f03d2f85641a674095aa041501a58a0e647c177716/zensols.grsync-0.0.3-py3-none-any.whl" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "520e9e7b9973065aaf0b8b8c05684ace", "sha256": "3f50d020332c2f04a9c1bd3a548b12fdc21032eb603b4317e0c7494ae42b15c1" }, "downloads": -1, "filename": "zensols.grsync-0.0.4-py3.6.egg", "has_sig": false, "md5_digest": "520e9e7b9973065aaf0b8b8c05684ace", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 23058, "upload_time": "2018-08-14T03:09:16", "url": "https://files.pythonhosted.org/packages/19/1d/ea29c585df62611c7f6a28045ae0ef7495a3bb1774f54e72e244fdec3dae/zensols.grsync-0.0.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "695cbf21f097a7351c5c9d959f5e30f4", "sha256": "2bf931afcb04f5434c81e87247828a6d4dd28798d5ced58ae10d1b751f3fbc01" }, "downloads": -1, "filename": "zensols.grsync-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "695cbf21f097a7351c5c9d959f5e30f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10371, "upload_time": "2018-08-14T03:09:15", "url": "https://files.pythonhosted.org/packages/ed/a3/045a43a685f674001b2a80371edbcdebf66af774edcde0b0af9273979af4/zensols.grsync-0.0.4-py3-none-any.whl" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "c93e5c8439e7915910dae8346ecdb515", "sha256": "40670e436b2179073040252572010daabfc0497813308c1a87b2fb8081079714" }, "downloads": -1, "filename": "zensols.grsync-0.0.5-py3.6.egg", "has_sig": false, "md5_digest": "c93e5c8439e7915910dae8346ecdb515", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 29817, "upload_time": "2018-09-01T22:00:27", "url": "https://files.pythonhosted.org/packages/71/99/c6a9fccf3534c919d3b5de3f5662783c7bd03ede9da68c28826c9f697fc4/zensols.grsync-0.0.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "8e7ce87ab1d4cbdb26c7517629272cd3", "sha256": "79cb85150f12a005e078a54b953fe8e29cfe03520353bfdafcc9a52cc36f6a8a" }, "downloads": -1, "filename": "zensols.grsync-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "8e7ce87ab1d4cbdb26c7517629272cd3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13700, "upload_time": "2018-09-01T22:00:26", "url": "https://files.pythonhosted.org/packages/aa/8d/f549930e9e817b306adf48ecc0767b5e521af935f04beed42514d1112cb0/zensols.grsync-0.0.5-py3-none-any.whl" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "d872ecc32dc92c61cb5a185faeb3e42b", "sha256": "a6a4da96c5ac5460ce40558f3b6a58d9c9f18c9acaabc0a60e37c4f780843e58" }, "downloads": -1, "filename": "zensols.grsync-0.0.6-py3.6.egg", "has_sig": false, "md5_digest": "d872ecc32dc92c61cb5a185faeb3e42b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 30570, "upload_time": "2018-09-02T00:52:21", "url": "https://files.pythonhosted.org/packages/3c/1f/04a69c095f6e7c2a56505558e6450bcc802e9737572f88a58114d9ad06ef/zensols.grsync-0.0.6-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0b1e63e830f67e6553736780cbcde3f6", "sha256": "f09cdb7939e274b2ae891cf65be3712f9f6630412093035c2770d8f5a18cd6e9" }, "downloads": -1, "filename": "zensols.grsync-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "0b1e63e830f67e6553736780cbcde3f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14339, "upload_time": "2018-09-02T00:52:20", "url": "https://files.pythonhosted.org/packages/c9/9a/7e2ed0d6439ce11846606fed98447c54a330d72e74756021c9bbb3adcf04/zensols.grsync-0.0.6-py3-none-any.whl" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "4e50eed9c9965e0c266a9b24c439d0ec", "sha256": "9535e676794e0b8e974b573ae0ac66fb53103421db4371229ac06761f255b198" }, "downloads": -1, "filename": "zensols.grsync-0.0.7-py3.6.egg", "has_sig": false, "md5_digest": "4e50eed9c9965e0c266a9b24c439d0ec", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 30525, "upload_time": "2018-09-14T18:50:37", "url": "https://files.pythonhosted.org/packages/c1/a8/4957de29b5c235f1241267249deb874e7a11cb5dde8d06684ff0d9bb0aa6/zensols.grsync-0.0.7-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d01cb523154dc270724ead5498c9f630", "sha256": "725b968a6394ba8078cc76ba54a22467b94eefb1955f683197372610a473ad99" }, "downloads": -1, "filename": "zensols.grsync-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "d01cb523154dc270724ead5498c9f630", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14484, "upload_time": "2018-09-14T18:50:36", "url": "https://files.pythonhosted.org/packages/40/73/08e6e8d42f05e415f40e9f9b1b0a6e8f2b7625938ac66bc6b6e87d43e9f5/zensols.grsync-0.0.7-py3-none-any.whl" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "f0e277aa61cd6bc8362dd67826c33700", "sha256": "57601cfec2693ff6b334d27b658a8f6470717828873e0ca9639e497eba56e5eb" }, "downloads": -1, "filename": "zensols.grsync-0.0.8-py3.6.egg", "has_sig": false, "md5_digest": "f0e277aa61cd6bc8362dd67826c33700", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 36745, "upload_time": "2019-01-18T02:55:31", "url": "https://files.pythonhosted.org/packages/8a/8d/200ef1c0544e403d07e5bd8e784ec9cb37973058d633b97fc536dea51e64/zensols.grsync-0.0.8-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "2277cd8b7ad103dec91c80ef298f8ede", "sha256": "4dd40c0bd0430ec4eaf10a85c416090cc57bb79b4dd94d9f7d354652bf27bb88" }, "downloads": -1, "filename": "zensols.grsync-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "2277cd8b7ad103dec91c80ef298f8ede", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18135, "upload_time": "2019-01-18T02:55:30", "url": "https://files.pythonhosted.org/packages/9e/ff/66513499ca763cb42bd0eeead38e336a942aa3627c03a996eb18d30f1d34/zensols.grsync-0.0.8-py3-none-any.whl" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "81105aa376fe13f1aac37753c8d0d90d", "sha256": "1405673fa623286b293402186007b45e1c0bdc85b22991955ef31009da58b12b" }, "downloads": -1, "filename": "zensols.grsync-0.0.9-py3.6.egg", "has_sig": false, "md5_digest": "81105aa376fe13f1aac37753c8d0d90d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 39716, "upload_time": "2019-05-27T17:10:11", "url": "https://files.pythonhosted.org/packages/7c/92/9c1cc61caa2193ed97800e6c182ffa3953663eabd4e2fa5410af6fea0b8f/zensols.grsync-0.0.9-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "7b80b6794de4165da5de5d49778fec20", "sha256": "84f0658b7a91031dc81db6cf75d53b1d447428d8ec3e6fe13a03b41bf9d39cd0" }, "downloads": -1, "filename": "zensols.grsync-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "7b80b6794de4165da5de5d49778fec20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20826, "upload_time": "2019-05-27T17:10:10", "url": "https://files.pythonhosted.org/packages/d2/77/60f9826a7f93d54c4a6d5078310d0b6701594a0a93ec5ef4929376f70b41/zensols.grsync-0.0.9-py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ae47d4b292f6f488cc6f9386c3fc882d", "sha256": "720d1ea8088837ab8138a167c8ef144c3c016b7aea5b2db83c991f9e27b7364c" }, "downloads": -1, "filename": "zensols.grsync-0.0.13-py3.6.egg", "has_sig": false, "md5_digest": "ae47d4b292f6f488cc6f9386c3fc882d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 55215, "upload_time": "2019-07-11T02:08:48", "url": "https://files.pythonhosted.org/packages/b2/87/ba5191e81ec1f6146f40bdacce269f65c152772d3a90530a5bf31af59819/zensols.grsync-0.0.13-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c66a397be8dc36e95a7c0fbe6f8497a5", "sha256": "a3ed474242335071b5e56bf5bb0e7928c6cb5b0127f14de83b2a1bdb4e19dc37" }, "downloads": -1, "filename": "zensols.grsync-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "c66a397be8dc36e95a7c0fbe6f8497a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27188, "upload_time": "2019-07-11T02:08:47", "url": "https://files.pythonhosted.org/packages/7c/ad/f0cbbc9b8e69ed2c36aa7558cc2d4a5f0124ae6dfe746789aadfafb13d91/zensols.grsync-0.0.13-py3-none-any.whl" } ] }