Skip to main content

A lib for update files written in Python.

Project description

AsthoUpdater


A lib for update files written in Python.

Made with

Install prerequisites

  • Execute command: pip3 install AsthoUpdater

Examples

Simple Update

By default, the verification algorithm is sha512, you can choose another one with the algorithm parameter, available: sha256, sha512, crc32, md5. If you want to use another one you can contact me.

from AsthoUpdater import AsthoUpdater

async with AsthoUpdater("jsonUrl", "pathToUpdate") as a:
    await a.download()

AsthoUpdater args

json_url: Your json url, required (str)
download_path: The download path, required (str)
download_timeout: The timeout to download file, optionnal, 12 at default (int)
overwrite_files: If you want re-download all files, optionnal, False at default (bool)
file_deleter: If you want dl older files, optionnal, False at default (bool)
logger_status: If you want enable/disable the logger, optionnal, True at default (bool)
logger_name: If you want set the logger name, optionnal, AsthoUpdater at default (str)
algorithm: If you want set the used algorithm, optionnal, sha512 at default (str)
download_limit: Limit the number of files that can be downloaded simultaneously, optionnal, 10 at default (int)

AsthoUpdater properties

get_total_files_to_download: Return total file to download (int)
get_total_files_downloaded: Return total files downloaded (int)

AsthoUpdater json example

If you not use sha512, you must change sha512 to the one you want.

{
  "maintenance": "off",
  "files": [
      {
        "sha512": "theSha512",
        "name": "filename",
        "url": "linkOfFile",
        "path": "pathOfFile"
      },
      {
        "sha512": "theSha512",
        "name": "filename",
        "url": "linkOfFile",
        "path": "pathOfFile"
      }
  ]
}

Author

Asthowen

License

AsthoUpdater | GNU General Public License v3.0

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

AsthoUpdater-0.2.4.tar.gz (17.4 kB view hashes)

Uploaded Source

Built Distribution

AsthoUpdater-0.2.4-py3-none-any.whl (17.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