{ "info": { "author": "Ames Cornish", "author_email": "buttersink@montebellopartners.com", "bugtrack_url": null, "classifiers": [], "description": "About\n=====\n\nButterSink synchronizes two sets of btrfs read-only subvolumes\n(snapshots).\n\nButterSink is like rsync, but for btrfs subvolumes instead of files,\nwhich makes it much more efficient for things like archiving backup\nsnapshots. It is built on top of btrfs send and receive capabilities.\nSources and destinations can be local btrfs file systems, remote btrfs\nfile systems over SSH, or S3 buckets.\n\nTo use the ssh back-end, ButterSink must be installed on the remote\nsystem.\n\nButterSink *only* handles read-only subvolumes. It ignores read-write\nsubvolumes and any files not in a subvolume.\n\nFeatures\n========\n\nButterSink is designed for efficient reliable transfers for backups.\nCurrently implemented features include:\n\n * Transfers between a local btrfs filesystem, Amazon S3 bucket, other local btrfs filesystems, or remote btrfs filesystems over ssh\n\n * Automatically synchronizes a set of snapshots, or a single snapshot,\ntransferring only needed differences\n\n * Intelligent selection of full and incremental transfers to minimize costs\nof transfer and storage, and to minimize risks from corruption of a difference.\n\n * Smart heuristics based on S3 file sizes, btrfs quota information, and btrfs-tools internal snapshot parent identification (\"ruuid\")\n \n * Will measure actual size of candidate diff before remote transfers.\n\n * Robust handling of btrfs send and receive errors\n\n * Detects and (optionally) deletes failed partial transfers\n \n * Resumable, checksummed multi-part uploads to S3 as a back-end\n \n * Adjusts sent UUID so that restored snapshots can also be used for new diffs.\n\n * Conveniently lists snapshots and sizes in either btrfs or S3\n\nUsage\n=====\n\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nusage: buttersink.py [-h] [-n] [-d] [-e] [-q] [-l LOGFILE] [-V]\n [--part-size PART_SIZE]\n [] \n\nSynchronize two sets of btrfs snapshots.\n\npositional arguments:\n a source of btrfs snapshots\n the btrfs snapshots to be updated\n\noptional arguments:\n -h, --help show this help message and exit\n -n, --dry-run display what would be transferred, but don't do it\n -d, --delete delete any snapshots in that are not in \n -e, --estimate use estimated size instead of measuring diffs with a\n local test send\n -q, --quiet once: don't display progress. twice: only display\n error messages\n -l LOGFILE, --logfile LOGFILE\n log debugging information to file\n -V, --version display version\n --part-size PART_SIZE\n Size of chunks in a multipart upload\n\n, : [btrfs://]/path/to/directory/[snapshot]\n s3://bucket/prefix/[snapshot]\n ssh://[user@]host/path/to/directory/[snapshot]\n\nIf only is supplied, just list available snapshots. NOTE: The trailing\n\"/\" *is* significant.\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nS3 Authentication\n=================\n\nS3 interaction and S3 authentication are handled by Boto. Boto will read\nS3 credentials from `~/.boto`, which should look like this:\n\n [Credentials]\n aws_access_key_id=AKIAIOSFODNN7EXAMPLE\n aws_secret_access_key=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY\n\nAWS access policies are tricky. Here's an example policy to give an IAM\nuser access for ButterSink:\n\n {\n \"Statement\": [\n {\n \"Effect\": \"Allow\",\n \"Action\": [\"s3:*\"],\n \"Resource\": [\n \"arn:aws:s3:::myBackupBucketName\",\n \"arn:aws:s3:::myBackupBucketName/*\"\n ]\n }\n ]\n }\n\nButterSink needs root privileges to access btrfs file systems.\n\nSSH Authentication\n==================\n\nIf the source or destination is an ssh://user@host/path url, then a connection is made to the remote host using a command line like:\n\n ssh user@host sudo buttersink --server --mode w /mnt/butter/\n\nModes are:\n\n 'r' -- just downloads\n 'a' -- uploads\n 'w' -- uploads with --delete\n\nNotice that sudo is used to ensure root privileges, which are required by btrfs. The user should be root, or sudo should be configured to a allow the user to issue the buttersink command without a password. Here's an example entry in /etc/sudoers for user fred, giving access to snapshots in /bak:\n\n fred ALL = NOPASSWD: /usr/local/bin/buttersink --server --mode r /bak/*\n fred ALL = NOPASSWD: /usr/local/bin/buttersink --server --mode a /bak/*\n fred ALL = NOPASSWD: /usr/local/bin/buttersink --server --mode w /bak/*\n\nInstallation\n============\n\nFrom source:\n\n git clone https://github.com/AmesCornish/buttersink.git\n cd buttersink\n make\n ./buttersink.py --help\n\n sudo make install\n buttersink --help\n\nWith PyPi:\n\n pip install --upgrade buttersink\n buttersink --help\n\nUtilities\n=========\n\n checksumdir \n\nChecksumdir is a utility to create checksum hashes of all the data and key\nmetadata in a directory. Useful for verifying the integrity of backups.\n\n sudo btrfslist \n \nBtrfslist will show snapshots, including their size and UUID. Like `btrfs subvolume list`, but with more detail.\n \nContact\n=======\n\n Ames Cornish\n buttersink@montebellopartners.com\n https://github.com/AmesCornish/buttersink/wiki\n\nCopyright (c) 2014 Ames Cornish. All rights reserved. Licensed under\nGPLv3.\n\nThis program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 3 of the License, or (at your\noption) any later version.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nSee LICENSE.txt for more details.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/AmesCornish/buttersink/wiki", "keywords": "btrfs sync synchronize rsync snapshot subvolume buttersink backup", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "buttersink", "package_url": "https://pypi.org/project/buttersink/", "platform": "", "project_url": "https://pypi.org/project/buttersink/", "project_urls": { "Homepage": "https://github.com/AmesCornish/buttersink/wiki" }, "release_url": "https://pypi.org/project/buttersink/0.6.9/", "requires_dist": null, "requires_python": "", "summary": "Buttersink is like rsync for btrfs snapshots", "version": "0.6.9" }, "last_serial": 4005339, "releases": { "0.1": [ { "comment_text": "built for Linux-3.13.0-30-generic-x86_64-with-glibc2.4", "digests": { "md5": "b2c30a17fc954900f1a8db6c6b59e950", "sha256": "6beacf4ceb2aafbef3c8bcc11fae2849bb7e84ef7f0b7e929eca6b256ac9c971" }, "downloads": -1, "filename": "buttersink-0.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "b2c30a17fc954900f1a8db6c6b59e950", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 23751, "upload_time": "2014-07-18T04:26:40", "url": "https://files.pythonhosted.org/packages/8e/04/eff7048e18c49851227191d7ce931205e8a6171f874296e2ecb82f022ee9/buttersink-0.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "843b283f5e9133602884c6bfd59a01c7", "sha256": "69ddf8ef1ed0bbdc06d42e9ef24655060b577cb4358e84cc51922d610257e3ec" }, "downloads": -1, "filename": "buttersink-0.1.tar.gz", "has_sig": false, "md5_digest": "843b283f5e9133602884c6bfd59a01c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10338, "upload_time": "2014-07-03T03:38:06", "url": "https://files.pythonhosted.org/packages/23/29/696244645a728a935d816b8df673dd1c10ccc52e728c7b3e245d8809f13f/buttersink-0.1.tar.gz" } ], "0.3": [ { "comment_text": "built for Linux-3.13.0-32-generic-x86_64-with-glibc2.4", "digests": { "md5": "063dd007e0f4a87516ff834e64db7c59", "sha256": "c5766b73e32e191663cce4172aaa99b9f47008aa52931763ee33e1a0488f874f" }, "downloads": -1, "filename": "buttersink-0.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "063dd007e0f4a87516ff834e64db7c59", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 52080, "upload_time": "2014-08-05T01:00:18", "url": "https://files.pythonhosted.org/packages/00/ef/e43aca00cf735beffe1a9e2d6ba69e3be48896022c3bb71dd0d973a85495/buttersink-0.3.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "0f7c3a271bf2c600fab37fad8bd1aacb", "sha256": "f913b04dfb8696d3f5118e0a9eb86cb2169627ab9d4025d236e078e2b9712760" }, "downloads": -1, "filename": "buttersink-0.3.tar.gz", "has_sig": false, "md5_digest": "0f7c3a271bf2c600fab37fad8bd1aacb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22717, "upload_time": "2014-08-05T01:00:21", "url": "https://files.pythonhosted.org/packages/70/0c/c002331a79d603944caf245d2e3186d96855f032fa0fd0656f0415571495/buttersink-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "built for Linux-3.13.0-32-generic-x86_64-with-glibc2.4", "digests": { "md5": "30abd35ef84b3be3402d4a9328b0acca", "sha256": "0c5f65713ba4d863de0bf42c8b8429f412eca9dd0a69f734bade5ad972c035fc" }, "downloads": -1, "filename": "buttersink-0.3.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "30abd35ef84b3be3402d4a9328b0acca", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 77395, "upload_time": "2014-08-06T01:41:20", "url": "https://files.pythonhosted.org/packages/c1/f5/adfbded6b69b0243ab227a0058e272f6a0ce5c32c132204817382803b00e/buttersink-0.3.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "3b15a331765139ec5fbc343e24f79f0c", "sha256": "9e86163adbe68075a9509c045b5b2253e4ed8d408590cd19e20f1b326ea99bf4" }, "downloads": -1, "filename": "buttersink-0.3.1.tar.gz", "has_sig": false, "md5_digest": "3b15a331765139ec5fbc343e24f79f0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36610, "upload_time": "2014-08-06T01:41:25", "url": "https://files.pythonhosted.org/packages/e8/90/ab30755e63d4580d3b4020b852d75160a661d80e1bd3a47fa4f6a0ff3184/buttersink-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "built for Linux-3.13.0-32-generic-x86_64-with-glibc2.4", "digests": { "md5": "ee80bba013785b2129bccbcbb3f31619", "sha256": "50ef881aa835555dabe4d02b469997feab5114c2c27faef93298da585c9c47f7" }, "downloads": -1, "filename": "buttersink-0.3.2.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "ee80bba013785b2129bccbcbb3f31619", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 66416, "upload_time": "2014-08-07T07:28:54", "url": "https://files.pythonhosted.org/packages/08/72/49ee840e378d7fbb2d3a19a4f141e0f41a7818deedeb77f40ac1342c73ca/buttersink-0.3.2.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "8377fd53420240bba087442dda7f0411", "sha256": "47246f4a8f40977f88528d2df1a6ff1d6ac98c1bf899f602d218edf22af4bf60" }, "downloads": -1, "filename": "buttersink-0.3.2.tar.gz", "has_sig": false, "md5_digest": "8377fd53420240bba087442dda7f0411", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37072, "upload_time": "2014-08-07T07:28:59", "url": "https://files.pythonhosted.org/packages/60/d0/5b08b9dcdcf71e546ec6b16b132fe5173cc44da47bfdbfc0bc4829212d45/buttersink-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "built for Linux-3.13.0-32-generic-x86_64-with-glibc2.4", "digests": { "md5": "e895a30cf1240be0ec3b1e6c59cc9a01", "sha256": "9f23ef6842cc0fc5a8c17c5b125b1439b34f7c02309fa881717a748f6672ed27" }, "downloads": -1, "filename": "buttersink-0.3.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "e895a30cf1240be0ec3b1e6c59cc9a01", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 66045, "upload_time": "2014-08-07T07:41:28", "url": "https://files.pythonhosted.org/packages/c9/97/98d67f5b6ac8227083799cd2f55b9814a707447528f92d79a2fda0c1e30d/buttersink-0.3.3.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e62ce0aee27424d9fc988446efae18ad", "sha256": "501425dbb21c8641676dcd7ebbc74b1167a8619a548cfabd8a41b824a27914e2" }, "downloads": -1, "filename": "buttersink-0.3.3.tar.gz", "has_sig": false, "md5_digest": "e62ce0aee27424d9fc988446efae18ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37075, "upload_time": "2014-08-07T07:41:32", "url": "https://files.pythonhosted.org/packages/f2/d3/5cc4758d6f04278dcca3c93960a7056da74a8c56ae068409e95381233bad/buttersink-0.3.3.tar.gz" } ], "0.4": [ { "comment_text": "built for Linux-3.13.0-33-generic-x86_64-with-glibc2.4", "digests": { "md5": "44abf78802208ca456a66e087fabe368", "sha256": "71a32eb3da68cfe3f9388fcdb7f6336a5a5cc6eb78f16e8ec62f6cf7868ebf8f" }, "downloads": -1, "filename": "buttersink-0.4.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "44abf78802208ca456a66e087fabe368", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 61148, "upload_time": "2014-08-29T15:46:03", "url": "https://files.pythonhosted.org/packages/0b/2f/7cdf2fe7fd488ff2fdf301804811200a6857699dc0a3391731cdb89767d3/buttersink-0.4.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "be19e20a964b92d909c14aa7fb60afb6", "sha256": "4fb64590dc6b9e16ce49d5a9aed4eb51f35f5350bcb4f3418a319bd2cd0594b7" }, "downloads": -1, "filename": "buttersink-0.4.tar.gz", "has_sig": false, "md5_digest": "be19e20a964b92d909c14aa7fb60afb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41453, "upload_time": "2014-08-29T15:46:08", "url": "https://files.pythonhosted.org/packages/7a/6d/0e45b1f9a54c74f5be676326978a7e5eeffa0f7f01d5412bef8db05d54c8/buttersink-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "built for Linux-3.13.0-35-generic-x86_64-with-glibc2.4", "digests": { "md5": "1f39407ea6911b431109c7911c31385f", "sha256": "b43891bd767b44128be9e06c12fbac376668b64ba0b7b50f1ba62cf25e1b6ce0" }, "downloads": -1, "filename": "buttersink-0.4.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "1f39407ea6911b431109c7911c31385f", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 61547, "upload_time": "2014-09-16T23:08:24", "url": "https://files.pythonhosted.org/packages/6a/cf/45ffaba664df6a8c7325a6b1d5096d65fe266b025de475ade9e3c6e6ca49/buttersink-0.4.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "de85bb836fdbd9a3d8eb9f82859f4952", "sha256": "0c3377b41302163cdd4b1477af42854f8f481f23cf5e06273a5f75940ac22006" }, "downloads": -1, "filename": "buttersink-0.4.1.tar.gz", "has_sig": false, "md5_digest": "de85bb836fdbd9a3d8eb9f82859f4952", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41579, "upload_time": "2014-09-16T23:08:28", "url": "https://files.pythonhosted.org/packages/fd/9f/5018f514d2766dddf9cb2669ba1d32ccd0b9bd8851c4b40ccf22c4e4d346/buttersink-0.4.1.tar.gz" } ], "0.5": [ { "comment_text": "built for Linux-3.13.0-37-generic-x86_64-with-glibc2.4", "digests": { "md5": "e5a4dd23790ffc47c459a15d928f64ff", "sha256": "2288cc10869327f58b05c6c95263c77ca6709c383ab6022e4a062308196e383b" }, "downloads": -1, "filename": "buttersink-0.5.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "e5a4dd23790ffc47c459a15d928f64ff", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 71153, "upload_time": "2014-11-03T02:20:53", "url": "https://files.pythonhosted.org/packages/b5/17/fcd24c208dafc5f539b113af4ba1adc12b1865ad4fdc3420c9b40a591eef/buttersink-0.5.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "904de1b567fd6c5a5e1d75d2b07d2c09", "sha256": "2e85d254e7cf9e691ee32d444677d2849a610a52e3cd56e7dacf94115574fcd6" }, "downloads": -1, "filename": "buttersink-0.5.tar.gz", "has_sig": false, "md5_digest": "904de1b567fd6c5a5e1d75d2b07d2c09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46108, "upload_time": "2014-11-03T02:20:56", "url": "https://files.pythonhosted.org/packages/25/b4/f5b5b2a19afdd68c562041ff224c98c5adf017a5b240ee91fa7e6bc178ab/buttersink-0.5.tar.gz" } ], "0.6": [ { "comment_text": "built for Linux-3.16.0-29-generic-x86_64-with-glibc2.4", "digests": { "md5": "2812f549591c2e5c1f98564df64a0832", "sha256": "d8fcc17a64a1712c52bd2ebe348415cb646a2465f0c54afd97fbd69e96bdcee4" }, "downloads": -1, "filename": "buttersink-0.6.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "2812f549591c2e5c1f98564df64a0832", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 85755, "upload_time": "2015-02-19T23:20:04", "url": "https://files.pythonhosted.org/packages/11/59/59cb90158c881d7fe4b4bae12ceedd19b8ae74eba504e7d46dd912ac7d54/buttersink-0.6.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b24efe252bf46655bb71eaf5fb18b475", "sha256": "9d3a8f63f545f48b59246e781c0ed8e7575a076a59df250c79f04e7f96154ed2" }, "downloads": -1, "filename": "buttersink-0.6.tar.gz", "has_sig": false, "md5_digest": "b24efe252bf46655bb71eaf5fb18b475", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52104, "upload_time": "2015-02-19T23:20:08", "url": "https://files.pythonhosted.org/packages/bb/5f/b1202c8a611efbdd9eeae208d891867c79a4a8573f5e876a45483c7b3a4a/buttersink-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "built for Linux-3.18.7-031807-generic-x86_64-with-glibc2.4", "digests": { "md5": "6005ac7613abe529db33f0ec51f8dd6c", "sha256": "40559e7b03c1c09e44faf385f5fcfec3c60ebf6679c0f4060d02e0e50746b6b8" }, "downloads": -1, "filename": "buttersink-0.6.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "6005ac7613abe529db33f0ec51f8dd6c", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 87436, "upload_time": "2015-03-23T19:24:24", "url": "https://files.pythonhosted.org/packages/5f/a1/9eef7b0de1edcef0c7331982f138118ccc3fa63c96e1757e819edcf49e1a/buttersink-0.6.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "074351dc8296a74447489780f0b84d9e", "sha256": "cce03e2465e8962f9fa80feb1522b7bee560f12b3dfec89d01e4dee7ae21fdf8" }, "downloads": -1, "filename": "buttersink-0.6.1.tar.gz", "has_sig": false, "md5_digest": "074351dc8296a74447489780f0b84d9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52183, "upload_time": "2015-03-23T19:24:27", "url": "https://files.pythonhosted.org/packages/c2/c7/25fd0fb885fb9537a9117fd41beb69079b0999614d3f5d03c2dd901a392f/buttersink-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "built for Linux-3.18.7-031807-generic-x86_64-with-glibc2.4", "digests": { "md5": "a0fe104dbe3dc570c3f3e88741bbf6c5", "sha256": "2fd9c3a47ca8054aa41317b56dbb183eb24bf6014f6178b3cce86a106a0b8097" }, "downloads": -1, "filename": "buttersink-0.6.2.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "a0fe104dbe3dc570c3f3e88741bbf6c5", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 87069, "upload_time": "2015-03-28T21:29:16", "url": "https://files.pythonhosted.org/packages/17/0f/47eefd04b943777114ce833bd4fa2c21b3e88dbcb74d6b4767e4027d7fb8/buttersink-0.6.2.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b7c0c80edac597698d8bb241c46708f8", "sha256": "4261a00d38aba570360dbc5c19a124132b9a14524977dadda706339e4d75dd50" }, "downloads": -1, "filename": "buttersink-0.6.2.tar.gz", "has_sig": false, "md5_digest": "b7c0c80edac597698d8bb241c46708f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52214, "upload_time": "2015-03-28T21:29:20", "url": "https://files.pythonhosted.org/packages/1b/2f/e8005975cae65ed1e87a23b9dc8ed5ac9306440173158a0627132cc65e68/buttersink-0.6.2.tar.gz" } ], "0.6.4": [ { "comment_text": "built for Linux-3.18.7-031807-generic-x86_64-with-glibc2.4", "digests": { "md5": "5d40076c7b892ccd83565bbda712df2e", "sha256": "de8ef145ea60379a4bdecda74b8042b47133fa75814100c003dd08b40c59a650" }, "downloads": -1, "filename": "buttersink-0.6.4.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "5d40076c7b892ccd83565bbda712df2e", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 87344, "upload_time": "2015-04-19T16:57:40", "url": "https://files.pythonhosted.org/packages/67/81/b837397b36575f012e49b3dbf7dbabb9fdd0240a4954f3d710805caaabcb/buttersink-0.6.4.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "00441ea14d32e15266b0f62a53701ddf", "sha256": "58622a197cf4f1ca3850a038ac6a5cf2feb9b134b790dcf7a74063cde912a779" }, "downloads": -1, "filename": "buttersink-0.6.4.tar.gz", "has_sig": false, "md5_digest": "00441ea14d32e15266b0f62a53701ddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52338, "upload_time": "2015-04-19T16:57:44", "url": "https://files.pythonhosted.org/packages/ba/27/4107fe0fef877abcf37e006e92fb93dc6bd778ab8180c6644228161358b8/buttersink-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "built for Linux-3.18.7-031807-generic-x86_64-with-glibc2.4", "digests": { "md5": "6ed2ecb09f6e373d3e34b0299ebee50d", "sha256": "eb16d6e33ce199d80a1e949cd437221aa3b66140992a1c102817355899171679" }, "downloads": -1, "filename": "buttersink-0.6.5.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "6ed2ecb09f6e373d3e34b0299ebee50d", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 87207, "upload_time": "2015-05-04T18:55:55", "url": "https://files.pythonhosted.org/packages/d7/4f/4a6788a84bb1a35a343191642f440e781797d9ea4ed8770d238ca15653ad/buttersink-0.6.5.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "79e46fb0e1dfd4c4c6d9ab29cd02f48c", "sha256": "ff12946d65d8b6030672485ee02db8ca369b7864775b63761546de05dc1bd889" }, "downloads": -1, "filename": "buttersink-0.6.5.tar.gz", "has_sig": false, "md5_digest": "79e46fb0e1dfd4c4c6d9ab29cd02f48c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52540, "upload_time": "2015-05-04T18:55:58", "url": "https://files.pythonhosted.org/packages/34/80/589cab9744cb3274d3292adfd2df7dee8b472a0d95428cef6c839cb9419c/buttersink-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "built for Linux-3.18.7-031807-generic-x86_64-with-glibc2.4", "digests": { "md5": "4bca417c7116e8f1b529d7f26906f8ea", "sha256": "bd90716b37b63a433bc696cca99ca64e806fd18057ec58134101897842e1b993" }, "downloads": -1, "filename": "buttersink-0.6.6.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "4bca417c7116e8f1b529d7f26906f8ea", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 87054, "upload_time": "2015-05-19T00:19:51", "url": "https://files.pythonhosted.org/packages/71/d0/4c3484d7adca848c53b846f5eea1d1bfdbb4fe3b24f2b1a3b68562975e95/buttersink-0.6.6.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "9659ceb7ec45537fda430c1a0c2e6d0a", "sha256": "b20ae9f4818a75451fcf66e2bfbecc80e903af9f949d57ac5e27b491d1bf20ee" }, "downloads": -1, "filename": "buttersink-0.6.6.tar.gz", "has_sig": false, "md5_digest": "9659ceb7ec45537fda430c1a0c2e6d0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52786, "upload_time": "2015-05-19T00:19:55", "url": "https://files.pythonhosted.org/packages/71/7c/9b19487e234046df61529315b605e4bad0c014e79c2ecf1b7da95c08779d/buttersink-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "built for Linux-3.19.0-30-generic-x86_64-with-glibc2.4", "digests": { "md5": "47fe2660fb9f955db310be1b73a64a67", "sha256": "76c312112b50b1ab35b55a33ed57be5cb56cc5220f3d061de1203c0ca4aeab21" }, "downloads": -1, "filename": "buttersink-0.6.7.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "47fe2660fb9f955db310be1b73a64a67", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 88593, "upload_time": "2015-10-07T03:39:55", "url": "https://files.pythonhosted.org/packages/48/6c/bc31d84b18aaef2635495fe03100a655ea932fc4a03a6e18b74b3645d968/buttersink-0.6.7.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "3362096e512e382c85ddc102ba5b8ae9", "sha256": "e78c6ddcc7a755bb3b2867d1f1f5e5c395c9c9c5bb4a42c6e569e274c103edab" }, "downloads": -1, "filename": "buttersink-0.6.7.tar.gz", "has_sig": false, "md5_digest": "3362096e512e382c85ddc102ba5b8ae9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53139, "upload_time": "2015-10-07T03:40:00", "url": "https://files.pythonhosted.org/packages/b8/db/ca08fb83f144ff8d4335049c3f0ba670790cc832d9b6425cafc926a52541/buttersink-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "built for Linux-4.4.0-040400-generic-x86_64-with-glibc2.4", "digests": { "md5": "fd7af4ea6293131da7007881160cfe32", "sha256": "80d56b39471d9a28cc8cfea4511ac196a7381ec7182f74847ef3553bbc4a0f11" }, "downloads": -1, "filename": "buttersink-0.6.8.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "fd7af4ea6293131da7007881160cfe32", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 87844, "upload_time": "2016-05-09T18:34:47", "url": "https://files.pythonhosted.org/packages/f8/54/3d87172173dd01f5af639e9c73112ef33c15c181ab25d3b93bfcd506be35/buttersink-0.6.8.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "aed957bdb67e7af56ed21e19467edd21", "sha256": "43821bc52626468042f2139ee90970f0c61ec0c432e6a216267c62e6e630ec11" }, "downloads": -1, "filename": "buttersink-0.6.8.tar.gz", "has_sig": false, "md5_digest": "aed957bdb67e7af56ed21e19467edd21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53074, "upload_time": "2016-05-09T18:34:54", "url": "https://files.pythonhosted.org/packages/26/37/16b5cc16491590f883760c7b9a9318e2cfba55205868ab47d7fc12afc7a0/buttersink-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "built for Linux-4.15.0-23-generic-x86_64-with-glibc2.7", "digests": { "md5": "3802daef8b9db72049b15ffe9f0e72a5", "sha256": "c9c05982c44fbb85f17b7ef0e8bee11f375c03d89bcba50cbc2520013512107a" }, "downloads": -1, "filename": "buttersink-0.6.9.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "3802daef8b9db72049b15ffe9f0e72a5", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 88910, "upload_time": "2018-06-26T23:20:31", "url": "https://files.pythonhosted.org/packages/50/ec/d0b12d2bba3491c9415e281ce2f2b9af191755a653b5aaab67c3006045b4/buttersink-0.6.9.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "a234e288c9e0d38e99f8abb9cbb61b10", "sha256": "a797b6e92ad2acdf41e033c1368ab365aa268f4d8458b396a5770fa6c2bc3f54" }, "downloads": -1, "filename": "buttersink-0.6.9.tar.gz", "has_sig": false, "md5_digest": "a234e288c9e0d38e99f8abb9cbb61b10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53212, "upload_time": "2018-06-26T23:20:33", "url": "https://files.pythonhosted.org/packages/cb/78/e71c0964787edd796336d7747639ad13f869eb729d69517643260430e854/buttersink-0.6.9.tar.gz" } ] }, "urls": [ { "comment_text": "built for Linux-4.15.0-23-generic-x86_64-with-glibc2.7", "digests": { "md5": "3802daef8b9db72049b15ffe9f0e72a5", "sha256": "c9c05982c44fbb85f17b7ef0e8bee11f375c03d89bcba50cbc2520013512107a" }, "downloads": -1, "filename": "buttersink-0.6.9.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "3802daef8b9db72049b15ffe9f0e72a5", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 88910, "upload_time": "2018-06-26T23:20:31", "url": "https://files.pythonhosted.org/packages/50/ec/d0b12d2bba3491c9415e281ce2f2b9af191755a653b5aaab67c3006045b4/buttersink-0.6.9.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "a234e288c9e0d38e99f8abb9cbb61b10", "sha256": "a797b6e92ad2acdf41e033c1368ab365aa268f4d8458b396a5770fa6c2bc3f54" }, "downloads": -1, "filename": "buttersink-0.6.9.tar.gz", "has_sig": false, "md5_digest": "a234e288c9e0d38e99f8abb9cbb61b10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53212, "upload_time": "2018-06-26T23:20:33", "url": "https://files.pythonhosted.org/packages/cb/78/e71c0964787edd796336d7747639ad13f869eb729d69517643260430e854/buttersink-0.6.9.tar.gz" } ] }