python3-wget


Namepython3-wget JSON
Version 0.0.2-beta1 PyPI version JSON
download
home_pagehttps://github.com/jamiejackherer/python3-wget/
Summarypure python 3.x download utility
upload_time2017-01-22 19:05:36
maintainerNone
docs_urlNone
authoranatoly techtonik <techtonik@gmail.com> | Jamie Lindsey AKA JamieJackHerer
requires_pythonNone
licensePublic Domain
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # python3-wget

Installation
============

With pip
========

    sudo pip3 install python3-wget

From source
===========

    python3 setup.py install

Usage
=====

  python -m wget [options] <URL>

  options:
    -o --output FILE|DIR   output filename or directory

Use within a project/package
============================

    See my download repo on github that utilses this module
    https://github.com/jamiejackherer/download

API Usage
=========

  >>> import wget
  >>> url = 'http://www.futurecrew.com/skaven/song_files/mp3/razorback.mp3'
  >>> filename = wget.download(url)
  70% [###################################               ]            75M / 107M

  >> filename
  'razorback.mp3'

Alternative progress bar:

  >>> wget.download(url, bar=bar_thermometer)

TODO - I will do these by version 0.1.0
====
 * Implement a way to resume downloads.
 * Add options to be more like the *nix wget utility.
 * Implement download speed.


ChangeLog - (For this current version - now maintained by JamieJackHerer)
=========
0.0.2-beta1
 * Now uses human readable sizes r.e. it displays size in K/M/G/P (kilobytes/megabytes/gigabytes/petabytes)
 * Progress bar uses '[####  ]' format instead of '[....   ]'
 * Reformatted for Python 3.x
 * Included 'hurry.filesize' as a dependency in setup.py


Jamie Lindsey AKA JamieJackHerer <jackherer026@gmail.com>

+========================================================================+
|********* Anything below this message has nothing to do with me ********|
|********* but it is still implemented in the new versions **************|
|********* any changes made will now be noted above *********************|
+========================================================================+
ChangeLog - (For original package which seems to no longer be in development)
=========
2.2 (2014-07-19)
 * it again can download without -o option

2.1 (2014-07-10)
 * it shows command line help
 * -o option allows to select output file/directory

   * download(url, out, bar) contains out parameter

2.0 (2013-04-26)
 * it shows percentage
 * it has usage examples
 * it changes if being used as a library

   * download shows progress bar by default
   * bar_adaptive gets improved algorithm
   * download(url, bar) contains bar parameter
     * bar(current, total)
   * progress_callback is named callback_progress

1.0 (2012-11-13)
 * it runs with Python 3

0.9 (2012-11-13)
 * it renames file if it already exists
 * it can be used as a library

   * download(url) returns filename
   * bar_adaptive() draws progress bar
   * bar_thermometer() simplified bar

0.8 (2011-05-03)
 * it detects filename from HTTP headers

0.7 (2011-03-01)
 * compatibility fix for Python 2.5
 * limit width of progress bar to 100 chars

0.6 (2010-04-24)
 * it detects console width on POSIX

0.5 (2010-04-23)
 * it detects console width on Windows

0.4 (2010-04-15)
 * it shows cute progress bar

0.3 (2010-04-05)
 * it creates temp file in current dir

0.2 (2010-02-16)
 * it tries to detect filename from URL

0.1 (2010-02-04)
 * it can download file


Release Checklist
=================

| [ ] update version in wget.py
| [x] update description in setup.py
| [ ] python setup.py check -mrs
| [ ] python setup.py sdist upload
| [ ] tag hg version

--
anatoly techtonik <techtonik@gmail.com>
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jamiejackherer/python3-wget/",
    "name": "python3-wget",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "anatoly techtonik <techtonik@gmail.com> | Jamie Lindsey AKA JamieJackHerer",
    "author_email": "<jackherer026@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/84/a4/d9da2989a3d937e94616ef07f0630c507f6baa77ad37f94ceb06b36cacc1/python3-wget-0.0.2-beta1.tar.gz",
    "platform": "UNKNOWN",
    "description": "# python3-wget\n\nInstallation\n============\n\nWith pip\n========\n\n    sudo pip3 install python3-wget\n\nFrom source\n===========\n\n    python3 setup.py install\n\nUsage\n=====\n\n  python -m wget [options] <URL>\n\n  options:\n    -o --output FILE|DIR   output filename or directory\n\nUse within a project/package\n============================\n\n    See my download repo on github that utilses this module\n    https://github.com/jamiejackherer/download\n\nAPI Usage\n=========\n\n  >>> import wget\n  >>> url = 'http://www.futurecrew.com/skaven/song_files/mp3/razorback.mp3'\n  >>> filename = wget.download(url)\n  70% [###################################               ]            75M / 107M\n\n  >> filename\n  'razorback.mp3'\n\nAlternative progress bar:\n\n  >>> wget.download(url, bar=bar_thermometer)\n\nTODO - I will do these by version 0.1.0\n====\n * Implement a way to resume downloads.\n * Add options to be more like the *nix wget utility.\n * Implement download speed.\n\n\nChangeLog - (For this current version - now maintained by JamieJackHerer)\n=========\n0.0.2-beta1\n * Now uses human readable sizes r.e. it displays size in K/M/G/P (kilobytes/megabytes/gigabytes/petabytes)\n * Progress bar uses '[####  ]' format instead of '[....   ]'\n * Reformatted for Python 3.x\n * Included 'hurry.filesize' as a dependency in setup.py\n\n\nJamie Lindsey AKA JamieJackHerer <jackherer026@gmail.com>\n\n+========================================================================+\n|********* Anything below this message has nothing to do with me ********|\n|********* but it is still implemented in the new versions **************|\n|********* any changes made will now be noted above *********************|\n+========================================================================+\nChangeLog - (For original package which seems to no longer be in development)\n=========\n2.2 (2014-07-19)\n * it again can download without -o option\n\n2.1 (2014-07-10)\n * it shows command line help\n * -o option allows to select output file/directory\n\n   * download(url, out, bar) contains out parameter\n\n2.0 (2013-04-26)\n * it shows percentage\n * it has usage examples\n * it changes if being used as a library\n\n   * download shows progress bar by default\n   * bar_adaptive gets improved algorithm\n   * download(url, bar) contains bar parameter\n     * bar(current, total)\n   * progress_callback is named callback_progress\n\n1.0 (2012-11-13)\n * it runs with Python 3\n\n0.9 (2012-11-13)\n * it renames file if it already exists\n * it can be used as a library\n\n   * download(url) returns filename\n   * bar_adaptive() draws progress bar\n   * bar_thermometer() simplified bar\n\n0.8 (2011-05-03)\n * it detects filename from HTTP headers\n\n0.7 (2011-03-01)\n * compatibility fix for Python 2.5\n * limit width of progress bar to 100 chars\n\n0.6 (2010-04-24)\n * it detects console width on POSIX\n\n0.5 (2010-04-23)\n * it detects console width on Windows\n\n0.4 (2010-04-15)\n * it shows cute progress bar\n\n0.3 (2010-04-05)\n * it creates temp file in current dir\n\n0.2 (2010-02-16)\n * it tries to detect filename from URL\n\n0.1 (2010-02-04)\n * it can download file\n\n\nRelease Checklist\n=================\n\n| [ ] update version in wget.py\n| [x] update description in setup.py\n| [ ] python setup.py check -mrs\n| [ ] python setup.py sdist upload\n| [ ] tag hg version\n\n--\nanatoly techtonik <techtonik@gmail.com>",
    "bugtrack_url": null,
    "license": "Public Domain",
    "summary": "pure python 3.x download utility",
    "version": "0.0.2-beta1",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "6bb7d5f27737a9fa984995b381832ba7",
                "sha256": "bbe7f44b3c28c4f7126aff20e8a438e78f6e4f1878d8b0c4940e87363813c17d"
            },
            "downloads": -1,
            "filename": "python3-wget-0.0.2-beta1.tar.gz",
            "has_sig": false,
            "md5_digest": "6bb7d5f27737a9fa984995b381832ba7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7586,
            "upload_time": "2017-01-22T19:05:36",
            "upload_time_iso_8601": "2017-01-22T19:05:36.190625Z",
            "url": "https://files.pythonhosted.org/packages/84/a4/d9da2989a3d937e94616ef07f0630c507f6baa77ad37f94ceb06b36cacc1/python3-wget-0.0.2-beta1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2017-01-22 19:05:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "jamiejackherer",
    "github_project": "python3-wget",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "python3-wget"
}
        
Elapsed time: 0.05047s