lt-autosnap


Namelt-autosnap JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://gitlab.com/randallpittman/lt-autosnap
SummaryLVM snapshot automation based on smbsnap from Samba.org
upload_time2023-03-16 19:42:27
maintainer
docs_urlNone
authorRandall Pittman
requires_python>=3.6.8,<4.0.0
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # lt-autosnap <!-- omit in toc -->

- [1. DISCLAIMER](#1-disclaimer)
- [2. Changelog](#2-changelog)
- [3. Introduction](#3-introduction)
- [4. Requirements](#4-requirements)
  - [4.1 Python Dependencies](#41-python-dependencies)
- [5. Installation](#5-installation)
  - [5.1 Isolated install (RECOMMENDED)](#51-isolated-install-recommended)
  - [5.2 Root user install](#52-root-user-install)
  - [5.3 System pip](#53-system-pip)
- [6. Configuration](#6-configuration)
  - [6.1 Parameters](#61-parameters)
    - [6.1.2 Volume](#612-volume)
    - [6.1.3 Snap set](#613-snap-set)
- [6.2 `/etc/ltautosnap.conf`](#62-etcltautosnapconf)
- [6.4 (Optional) add snapshot mount dirs to `/etc/updatdb.conf`](#64-optional-add-snapshot-mount-dirs-to-etcupdatdbconf)
- [7. Usage](#7-usage)
  - [7.1 `ltautosnap` command](#71-ltautosnap-command)
  - [7.2 Examples](#72-examples)

## 1. DISCLAIMER

Due to the following factors:

- This software is intended to be run with root privileges
- This software manages logical volumes on your machine, including creationg and deletion of snapshots
- There may be bugs in this software

...be advised that this software has the ability to at the least cause you **DATA LOSS** and at the worst
**SEVERELY DAMAGE OR IMPAIR** your operating system. **THIS IS NOT BACKUP SOFTWARE**.

See [LICENSE.txt](LICENSE.txt) for further disclaimers.

## 2. Changelog

[See CHANGELOG.md](CHANGELOG.md)

## 3. Introduction

The purpose of this tool is to automate management of LVM thin pool snapshots. It is intended to be used with
cron or systemd timers for scheduling.

[There is a guide on the Samba
website](https://wiki.samba.org/index.php/Rotating_LVM_snapshots_for_shadow_copy) for setting up rotating LVM
snapshots for use with Samba's implementation of Volume Shadow Copy. This script is based on the Bash script
in that guide. It can mount snapshots to a specified path with dirnames compatible with Volume Shadow Copy,
e.g. `@GMT-2022.04.28-22.35.17`. For more on setting up Samba for shadow copies, see
[https://www.samba.org/samba/docs/current/man-html/vfs_shadow_copy2.8.html](https://www.samba.org/samba/docs/current/man-html/vfs_shadow_copy2.8.html)

## 4. Requirements

This tool requires Python 3.6 or later. For recent Linux distributions the system Python interpreter should
suffice. `pip` or `pip3` is required for installation, so you may need to install `python3-pip` or similar
package.

### 4.1 Python Dependencies

Since I expect this to be a system package, I tried to minimize the dependencies it would install.

- If you are using Python 3.6, pip will install the `dataclasses` backport for 3.6.
- pip will install `single-version` for package version management.

## 5. Installation

### 5.1 Isolated install (RECOMMENDED)

This installs lt-autosnap to an isolated environment. You have to add the bin path to your `PATH` or call
the executable directly.

Requires `python3-venv` to be installed on Ubuntu-like OSes.

The below sets up a virtual environment in `/opt/venv/lt-autosnap`. Adjust as you prefer.

```bash
# ## All as root
mkdir -p /opt/venv
# Create virtual environment. Substitute virtualenv if you prefer.
python3 -m venv /opt/venv/lt-autosnap
# install lt-autosnap
/opt/venv/lt-autosnap/bin/pip install lt-autosnap
# To add aliases for bash and csh
echo "alias ltautosnap='/opt/venv/lt-autosnap/ltautosnap'" > /etc/profile.d/lt-autosnap.sh
echo "alias ltautosnap '/opt/venv/lt-autosnap/ltautosnap'" > /etc/profile.d/lt-autosnap.csh
# --OR-- just use the full path when you need to run lt-autosnap
/opt/venv/lt-autosnap/bin/ltautosnap
```

### 5.2 Root user install

This install to `root`'s `~/.local` dir, which may or may be in `PATH` (see root's `~/.bashrc` file.)

```bash
sudo pip install --user lt-autosnap
```

### 5.3 System pip

It is generally not recommended to install stuff with `pip` as root, however this package has minimal
dependencies (just `single-version` and `python3-dataclasses` for Python 3.6). This has the benefit of the
`ltautosnap` command being in your PATH without any extra work. Just run:

```bash
# as root
# generally installs to /usr/local. Specify --prefix to install somewhere else.
pip3 install lt-autosnap
```

## 6. Configuration

### 6.1 Parameters

Each configuration file typically contains one or more **volume** and **snap set** definitions. These are
defined as follows:

#### 6.1.2 Volume

An LVM thin volume that `ltautosnap` will act upon. Configurable options include:

- Where to mount snapshots of the volume
- Options to pass the mount command when mounting snapshots
- Which snapset definitions to use
- A maximum percent-full value after which the `ltautosnap check` command will start emitting warnings that
  the pool is running out of space.

#### 6.1.3 Snap set

A scheme for making snapshots. Configuration options include:

- The period of time between snapshots (`ltautosnap autosnap` uses this to determine whether to create new
  snapshots)
- The maximum number of snapshots to keep (oldest are deleted with `ltautosnap clean`)

Each volume may have multiple snapsets and nultiple volumes may use the same snapset definition.

## 6.2 `/etc/ltautosnap.conf`

1. Create a config file with `ltautosnap genconf > ltautosnap.conf`. Internal comments provide guidance on
   how to configure volumes and snap sets.
2. Modify the config file with the details about your volumes and desired snap sets and, as root, copy it to
   `/etc/ltautosnap.conf`.

## 6.4 (Optional) add snapshot mount dirs to `/etc/updatdb.conf`

**_IMPORTANT!_**

With very large data volumes with many files, the system will spend an inordinate amount of time trying to
catalog all the files in the snapshots every time a new one is mounted. If snapshots are automatically
mounted and unmounted as they are created, consider adding them to **`PRUNEPATHS`** in `/etc/updatedb.conf`.

For example, with a volume `/data0`, the default snapshot mount parent directory will be `/data0/.snapshots`,
so one would add `/data0/.snapshots` to `PRUNEPATHS`.

## 7. Usage

### 7.1 `ltautosnap` command

Most commands require root privileges, even `list`, since it runs `lvs` which usually requires root.

- Output of `ltautosnap --help`:

  ```text
  usage: ltautosnap [-h] [--autoclean] [--config CONFIG] [-v] [-d] [-V]
                    command [volume] [snap_set]

  Automated LVM thin volume snapshot management

  positional arguments:
    command          Command to execute. Valid commands are mount, umount, snap,
                     clean, autosnap, check, list, remove, and genconf. See below
                     for more details.
    volume           Number of the volume, or "all" for all volumes
    snap_set         Number of the snaphot-set. Optional for all commands except
                     snap, autosnap, and clean.

  optional arguments:
    -h, --help       show this help message and exit
    --autoclean      If command is autosnap, run clean after creating the new
                     snapshots.
    --config CONFIG  Alternate configuration file. Default is /etc/ltautosnap.conf
    -v               Increment the logging verbosity level.
                     None for WARNING, -v for INFO, -vv for DEBUG
    -d, --daemon     Make logging appropriate for file output.
    -V, --version    show program's version number and exit

  Detailed Command description:

  Note, in most of the below commands, "all" (without quotes) can be used to
  repeat the operation on all volumes, and the snap set number may be omitted to
  operate on all snap sets.

  ltautosnap mount <vol_n>|all [<snap_set_n>]
      Mounts snapshots of the specified volume and snap set(s) to new directories
      under the 'snap_mount_base' location configured for the volume. The mount
      point will have a name like '@GMT-<snapshot datetime>'. If NOMOUNT is
      specified for 'snap_mount_base', an error will be raised.

  ltautosnap umount <vol_n>|all [<snap_set_n>]
      Unmount any mounted snapshots for the specified volume and snap set(s).

  ltautosnap snap <vol_n>|all [<snap_set_n]
      Create a snapshot for the specified volume and snap set(s). This will always
      create a snapshot, regardless of the snap set definition.

  ltautosnap clean <vol_n>|all [<snap_set_n]
      For the specified volume and snap set[s], determine if there are more
      snapshots than defined in the snap set's 'count' parameter. If so, unmount
      and delete the oldest snapshot[s] as necessary to meet the 'count'. Also run
      the `fstrim` command on the filesystem of the volume so `lvs` returns the
      correct total used capacity of the pool.

  ltautosnap autosnap <vol_n>|all [<snap_set_n] [--autoclean]
      For the specified volume and snap set[s], create a snapshot only if the time
      since the most recent snapshot of the snap set is greater than the period of
      the snap set. Perform the 'mount' command for the volume and snap set[s]. If
      --autoclean is specified, run the 'clean' command afterwards.

  ltautosnap check <vol_n>|all
      Check that the data usage of the pool for the specified volume has not
      exceeded its 'warning_pct' configuration parameter.

  ltautosnap list <vol_n>|all [<snap_set_n]
      List all snapshots of the given volume and snap set[s].

  ltautosnap remove <vol_n>|all [<snap_set_n]
      Removes all snapshots in the specified snap set[s] of the volume.
      `ltautosnap umount` must be run first.

  ltautosnap genconf
      Print an example configuration file to stdout.

  For more help, see README at https://gitlab.com/randallpittman/lt-autosnap
  ```

### 7.2 Examples

Create a `/etc/cron.d/ltautosnap` file, and use one or more of the below examples to automatically
manage snapshots.

   ```bash
   # If desired, set an email address to send error messages
   #   Cron will usually email stdout and stderr if you have mail set up with
   #   Postfix or similar MTA.
   MAILTO=example@example.org
   LTAUTOSNAP=/opt/venv/lt-autosnap/bin/ltautosnap  # or whatever you get from `which ltautosnap`

   # Generate a snapshot for vol0, set0 every day at midnight, no matter what
   0 0 * * *  root $LTAUTOSNAP snap 0 0

   # Every hour at 3 minutes after the hour, for vol0, set1, if a period has
   #   elapsed since the last snap of the set, create another one.
   3 * * * *  root $LTAUTOSNAP autosnap 0 1

   # Every day at 3 AM remove all extra snaps (beyond each snapset's count)
   #   starting with the oldest
   0 3 * * *  root $LTAUTOSNAP clean all

   # Every hour at 5 after, for volume 1, automatically create new snaps as needed
   #   and clean old ones for all snap sets.
   5 0 * * *  root $LTAUTOSNAP autosnap 1 --autoclean

   # Every day at noon, check if each volume's pool has exceeded the warning level
   #   This will log a warning to stderr if the warning level has been exceeded.
   #   If MAILTO is set and your MTA is configured, you'll be emailed only if the
   #   warning percent is exceeded.
   0 12 * * *  root $LTAUTOSNAP check all

   # On the first day of the month, do the same but print the % used space to
   #   stderr no matter what. If MAILTO is set and your MTA is configued, you'll
   #   be emailed the volume usage every month.
   0 0 1 * *  root $LTAUTOSNAP check all -v
   ```

            

Raw data

            {
    "_id": null,
    "home_page": "https://gitlab.com/randallpittman/lt-autosnap",
    "name": "lt-autosnap",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6.8,<4.0.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Randall Pittman",
    "author_email": "randall.pittman@oregonstate.edu",
    "download_url": "https://files.pythonhosted.org/packages/74/13/f61eb7a31705dded08d836870c3c91ce5eb04ef0e7819bf9dd61d778d3b2/lt-autosnap-0.3.1.tar.gz",
    "platform": null,
    "description": "# lt-autosnap <!-- omit in toc -->\n\n- [1. DISCLAIMER](#1-disclaimer)\n- [2. Changelog](#2-changelog)\n- [3. Introduction](#3-introduction)\n- [4. Requirements](#4-requirements)\n  - [4.1 Python Dependencies](#41-python-dependencies)\n- [5. Installation](#5-installation)\n  - [5.1 Isolated install (RECOMMENDED)](#51-isolated-install-recommended)\n  - [5.2 Root user install](#52-root-user-install)\n  - [5.3 System pip](#53-system-pip)\n- [6. Configuration](#6-configuration)\n  - [6.1 Parameters](#61-parameters)\n    - [6.1.2 Volume](#612-volume)\n    - [6.1.3 Snap set](#613-snap-set)\n- [6.2 `/etc/ltautosnap.conf`](#62-etcltautosnapconf)\n- [6.4 (Optional) add snapshot mount dirs to `/etc/updatdb.conf`](#64-optional-add-snapshot-mount-dirs-to-etcupdatdbconf)\n- [7. Usage](#7-usage)\n  - [7.1 `ltautosnap` command](#71-ltautosnap-command)\n  - [7.2 Examples](#72-examples)\n\n## 1. DISCLAIMER\n\nDue to the following factors:\n\n- This software is intended to be run with root privileges\n- This software manages logical volumes on your machine, including creationg and deletion of snapshots\n- There may be bugs in this software\n\n...be advised that this software has the ability to at the least cause you **DATA LOSS** and at the worst\n**SEVERELY DAMAGE OR IMPAIR** your operating system. **THIS IS NOT BACKUP SOFTWARE**.\n\nSee [LICENSE.txt](LICENSE.txt) for further disclaimers.\n\n## 2. Changelog\n\n[See CHANGELOG.md](CHANGELOG.md)\n\n## 3. Introduction\n\nThe purpose of this tool is to automate management of LVM thin pool snapshots. It is intended to be used with\ncron or systemd timers for scheduling.\n\n[There is a guide on the Samba\nwebsite](https://wiki.samba.org/index.php/Rotating_LVM_snapshots_for_shadow_copy) for setting up rotating LVM\nsnapshots for use with Samba's implementation of Volume Shadow Copy. This script is based on the Bash script\nin that guide. It can mount snapshots to a specified path with dirnames compatible with Volume Shadow Copy,\ne.g. `@GMT-2022.04.28-22.35.17`. For more on setting up Samba for shadow copies, see\n[https://www.samba.org/samba/docs/current/man-html/vfs_shadow_copy2.8.html](https://www.samba.org/samba/docs/current/man-html/vfs_shadow_copy2.8.html)\n\n## 4. Requirements\n\nThis tool requires Python 3.6 or later. For recent Linux distributions the system Python interpreter should\nsuffice. `pip` or `pip3` is required for installation, so you may need to install `python3-pip` or similar\npackage.\n\n### 4.1 Python Dependencies\n\nSince I expect this to be a system package, I tried to minimize the dependencies it would install.\n\n- If you are using Python 3.6, pip will install the `dataclasses` backport for 3.6.\n- pip will install `single-version` for package version management.\n\n## 5. Installation\n\n### 5.1 Isolated install (RECOMMENDED)\n\nThis installs lt-autosnap to an isolated environment. You have to add the bin path to your `PATH` or call\nthe executable directly.\n\nRequires `python3-venv` to be installed on Ubuntu-like OSes.\n\nThe below sets up a virtual environment in `/opt/venv/lt-autosnap`. Adjust as you prefer.\n\n```bash\n# ## All as root\nmkdir -p /opt/venv\n# Create virtual environment. Substitute virtualenv if you prefer.\npython3 -m venv /opt/venv/lt-autosnap\n# install lt-autosnap\n/opt/venv/lt-autosnap/bin/pip install lt-autosnap\n# To add aliases for bash and csh\necho \"alias ltautosnap='/opt/venv/lt-autosnap/ltautosnap'\" > /etc/profile.d/lt-autosnap.sh\necho \"alias ltautosnap '/opt/venv/lt-autosnap/ltautosnap'\" > /etc/profile.d/lt-autosnap.csh\n# --OR-- just use the full path when you need to run lt-autosnap\n/opt/venv/lt-autosnap/bin/ltautosnap\n```\n\n### 5.2 Root user install\n\nThis install to `root`'s `~/.local` dir, which may or may be in `PATH` (see root's `~/.bashrc` file.)\n\n```bash\nsudo pip install --user lt-autosnap\n```\n\n### 5.3 System pip\n\nIt is generally not recommended to install stuff with `pip` as root, however this package has minimal\ndependencies (just `single-version` and `python3-dataclasses` for Python 3.6). This has the benefit of the\n`ltautosnap` command being in your PATH without any extra work. Just run:\n\n```bash\n# as root\n# generally installs to /usr/local. Specify --prefix to install somewhere else.\npip3 install lt-autosnap\n```\n\n## 6. Configuration\n\n### 6.1 Parameters\n\nEach configuration file typically contains one or more **volume** and **snap set** definitions. These are\ndefined as follows:\n\n#### 6.1.2 Volume\n\nAn LVM thin volume that `ltautosnap` will act upon. Configurable options include:\n\n- Where to mount snapshots of the volume\n- Options to pass the mount command when mounting snapshots\n- Which snapset definitions to use\n- A maximum percent-full value after which the `ltautosnap check` command will start emitting warnings that\n  the pool is running out of space.\n\n#### 6.1.3 Snap set\n\nA scheme for making snapshots. Configuration options include:\n\n- The period of time between snapshots (`ltautosnap autosnap` uses this to determine whether to create new\n  snapshots)\n- The maximum number of snapshots to keep (oldest are deleted with `ltautosnap clean`)\n\nEach volume may have multiple snapsets and nultiple volumes may use the same snapset definition.\n\n## 6.2 `/etc/ltautosnap.conf`\n\n1. Create a config file with `ltautosnap genconf > ltautosnap.conf`. Internal comments provide guidance on\n   how to configure volumes and snap sets.\n2. Modify the config file with the details about your volumes and desired snap sets and, as root, copy it to\n   `/etc/ltautosnap.conf`.\n\n## 6.4 (Optional) add snapshot mount dirs to `/etc/updatdb.conf`\n\n**_IMPORTANT!_**\n\nWith very large data volumes with many files, the system will spend an inordinate amount of time trying to\ncatalog all the files in the snapshots every time a new one is mounted. If snapshots are automatically\nmounted and unmounted as they are created, consider adding them to **`PRUNEPATHS`** in `/etc/updatedb.conf`.\n\nFor example, with a volume `/data0`, the default snapshot mount parent directory will be `/data0/.snapshots`,\nso one would add `/data0/.snapshots` to `PRUNEPATHS`.\n\n## 7. Usage\n\n### 7.1 `ltautosnap` command\n\nMost commands require root privileges, even `list`, since it runs `lvs` which usually requires root.\n\n- Output of `ltautosnap --help`:\n\n  ```text\n  usage: ltautosnap [-h] [--autoclean] [--config CONFIG] [-v] [-d] [-V]\n                    command [volume] [snap_set]\n\n  Automated LVM thin volume snapshot management\n\n  positional arguments:\n    command          Command to execute. Valid commands are mount, umount, snap,\n                     clean, autosnap, check, list, remove, and genconf. See below\n                     for more details.\n    volume           Number of the volume, or \"all\" for all volumes\n    snap_set         Number of the snaphot-set. Optional for all commands except\n                     snap, autosnap, and clean.\n\n  optional arguments:\n    -h, --help       show this help message and exit\n    --autoclean      If command is autosnap, run clean after creating the new\n                     snapshots.\n    --config CONFIG  Alternate configuration file. Default is /etc/ltautosnap.conf\n    -v               Increment the logging verbosity level.\n                     None for WARNING, -v for INFO, -vv for DEBUG\n    -d, --daemon     Make logging appropriate for file output.\n    -V, --version    show program's version number and exit\n\n  Detailed Command description:\n\n  Note, in most of the below commands, \"all\" (without quotes) can be used to\n  repeat the operation on all volumes, and the snap set number may be omitted to\n  operate on all snap sets.\n\n  ltautosnap mount <vol_n>|all [<snap_set_n>]\n      Mounts snapshots of the specified volume and snap set(s) to new directories\n      under the 'snap_mount_base' location configured for the volume. The mount\n      point will have a name like '@GMT-<snapshot datetime>'. If NOMOUNT is\n      specified for 'snap_mount_base', an error will be raised.\n\n  ltautosnap umount <vol_n>|all [<snap_set_n>]\n      Unmount any mounted snapshots for the specified volume and snap set(s).\n\n  ltautosnap snap <vol_n>|all [<snap_set_n]\n      Create a snapshot for the specified volume and snap set(s). This will always\n      create a snapshot, regardless of the snap set definition.\n\n  ltautosnap clean <vol_n>|all [<snap_set_n]\n      For the specified volume and snap set[s], determine if there are more\n      snapshots than defined in the snap set's 'count' parameter. If so, unmount\n      and delete the oldest snapshot[s] as necessary to meet the 'count'. Also run\n      the `fstrim` command on the filesystem of the volume so `lvs` returns the\n      correct total used capacity of the pool.\n\n  ltautosnap autosnap <vol_n>|all [<snap_set_n] [--autoclean]\n      For the specified volume and snap set[s], create a snapshot only if the time\n      since the most recent snapshot of the snap set is greater than the period of\n      the snap set. Perform the 'mount' command for the volume and snap set[s]. If\n      --autoclean is specified, run the 'clean' command afterwards.\n\n  ltautosnap check <vol_n>|all\n      Check that the data usage of the pool for the specified volume has not\n      exceeded its 'warning_pct' configuration parameter.\n\n  ltautosnap list <vol_n>|all [<snap_set_n]\n      List all snapshots of the given volume and snap set[s].\n\n  ltautosnap remove <vol_n>|all [<snap_set_n]\n      Removes all snapshots in the specified snap set[s] of the volume.\n      `ltautosnap umount` must be run first.\n\n  ltautosnap genconf\n      Print an example configuration file to stdout.\n\n  For more help, see README at https://gitlab.com/randallpittman/lt-autosnap\n  ```\n\n### 7.2 Examples\n\nCreate a `/etc/cron.d/ltautosnap` file, and use one or more of the below examples to automatically\nmanage snapshots.\n\n   ```bash\n   # If desired, set an email address to send error messages\n   #   Cron will usually email stdout and stderr if you have mail set up with\n   #   Postfix or similar MTA.\n   MAILTO=example@example.org\n   LTAUTOSNAP=/opt/venv/lt-autosnap/bin/ltautosnap  # or whatever you get from `which ltautosnap`\n\n   # Generate a snapshot for vol0, set0 every day at midnight, no matter what\n   0 0 * * *  root $LTAUTOSNAP snap 0 0\n\n   # Every hour at 3 minutes after the hour, for vol0, set1, if a period has\n   #   elapsed since the last snap of the set, create another one.\n   3 * * * *  root $LTAUTOSNAP autosnap 0 1\n\n   # Every day at 3 AM remove all extra snaps (beyond each snapset's count)\n   #   starting with the oldest\n   0 3 * * *  root $LTAUTOSNAP clean all\n\n   # Every hour at 5 after, for volume 1, automatically create new snaps as needed\n   #   and clean old ones for all snap sets.\n   5 0 * * *  root $LTAUTOSNAP autosnap 1 --autoclean\n\n   # Every day at noon, check if each volume's pool has exceeded the warning level\n   #   This will log a warning to stderr if the warning level has been exceeded.\n   #   If MAILTO is set and your MTA is configured, you'll be emailed only if the\n   #   warning percent is exceeded.\n   0 12 * * *  root $LTAUTOSNAP check all\n\n   # On the first day of the month, do the same but print the % used space to\n   #   stderr no matter what. If MAILTO is set and your MTA is configued, you'll\n   #   be emailed the volume usage every month.\n   0 0 1 * *  root $LTAUTOSNAP check all -v\n   ```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "LVM snapshot automation based on smbsnap from Samba.org",
    "version": "0.3.1",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1b4e1f232d9d1d2dc2230ea674416adce0be51b4ec48e932c2f1863e6ff5710",
                "md5": "23d7e88fbc064091ea8256ac94e28677",
                "sha256": "3b39c8a697c41d8e40c7472a9545d005ce6add997838aef9b797cf5a97c23344"
            },
            "downloads": -1,
            "filename": "lt_autosnap-0.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "23d7e88fbc064091ea8256ac94e28677",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6.8,<4.0.0",
            "size": 21888,
            "upload_time": "2023-03-16T19:42:30",
            "upload_time_iso_8601": "2023-03-16T19:42:30.336078Z",
            "url": "https://files.pythonhosted.org/packages/f1/b4/e1f232d9d1d2dc2230ea674416adce0be51b4ec48e932c2f1863e6ff5710/lt_autosnap-0.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7413f61eb7a31705dded08d836870c3c91ce5eb04ef0e7819bf9dd61d778d3b2",
                "md5": "e1e950f57f0dc1846f848b7c2fca6fb5",
                "sha256": "507382f1922d781b94e2cf41b73bd9a20a1b3840cc399f3cfc6007136d5624e0"
            },
            "downloads": -1,
            "filename": "lt-autosnap-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e1e950f57f0dc1846f848b7c2fca6fb5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6.8,<4.0.0",
            "size": 22855,
            "upload_time": "2023-03-16T19:42:27",
            "upload_time_iso_8601": "2023-03-16T19:42:27.758546Z",
            "url": "https://files.pythonhosted.org/packages/74/13/f61eb7a31705dded08d836870c3c91ce5eb04ef0e7819bf9dd61d778d3b2/lt-autosnap-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-16 19:42:27",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "gitlab_user": "randallpittman",
    "gitlab_project": "lt-autosnap",
    "lcname": "lt-autosnap"
}
        
Elapsed time: 0.06108s