Skip to main content

Python implementation of AutoUpdater

Project description

AutoUpdater

English | 简体中文

License Test Status QQ Group

Feedback QQ Group (Click to join): 323397913

1. AutoUpdater Class Documentation

Overview

AutoUpdater is a Python-based automatic update tool used to compare MD5 values of local and remote files and download updated files. It supports initializing local directories, generating MD5 file lists, updating files, and more.

Installation

Clone the repository to your local machine:

git clone https://github.com/www778878net/AutoUpdater.git
cd AutoUpdater

Quick Start

Here's a basic example of how to use AutoUpdater:

from autoupdater import AutoUpdater, initialize_directory

# Initialize local directory
local_dir = "/path/to/local/directory"
remote_url = "http://example.com/remote/"
result = initialize_directory(local_dir, remote_url)
print(result)

# Create AutoUpdater instance and update files
updater = AutoUpdater(local_dir, remote_url)
update_result = updater.update_files()
print(update_result)

Main Methods

  • initialize_directory(local_directory, remote_base_url): Initialize local directory.
  • update_files(): Update local files.
  • get_file_list_with_md5(directory): Get MD5 values for all files in the specified directory.
  • save_md5_json(output_file="md5.json"): Generate and save a JSON file containing file MD5 values.

Example: Initializing Directory

from autoupdater import initialize_directory

local_dir = "/path/to/local/directory"
remote_url = "http://example.com/remote/"
result = initialize_directory(local_dir, remote_url)
print(result)

Example: Updating Files

from autoupdater import AutoUpdater

updater = AutoUpdater("/path/to/local/directory", "http://example.com/remote/")
result = updater.update_files()
print(result)

Running Tests

To run tests, execute the following command in the project root directory:

python -m unittest discover tests

Other

For more detailed information, please refer to the project's GitHub repository or API documentation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autoupdater78-0.1.0.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

autoupdater78-0.1.0-py3-none-any.whl (8.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page