fish


Namefish JSON
Version 1.1 PyPI version JSON
download
home_pagehttp://sendapatch.se/
SummaryAnimating fish (and birds) for progress bars
upload_time2010-05-19 03:37:03
maintainerNone
docs_urlNone
authorLudvig Ericson
requires_pythonNone
licenseUNKNOWN
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Ever wanted to have animating fishes for progress bars in your command-line
script?

Ever thought about doing it but then realizing you have better things to do
with your time than to write meaningless ASCII animation programs?

Now you can have the best of both worlds: introducing ``fish``, the module that
makes any program look awesome and display useful data while churning away on
some good 'ole data.

Usage? Simple enough::

    >>> import fish
    >>> while churning:
    ...     churn_churn()
    ...     fish.animate()

As a boy, I often dreamed of birds going back and forth as progress bars, so I
decided to implement just that::

    >>> import fish
    >>> bird = fish.Bird()
    >>> while churning:
    ...     churn_churn()
    ...     bird.animate()

Want to show the current record number?::

    >>> from fish import ProgressFish
    >>> fish = ProgressFish()
    >>> for i, x in enumerate(churning):
    ...     churn_churn()
    ...     fish.animate(amount=i)

Want to show numeric progress when you know the total number?::

    >>> from fish import ProgressFish
    >>> fish = ProgressFish(total=len(data))
    >>> for i, datum in enumerate(data):
    ...     churn_churn()
    ...     fish.animate(amount=i)

`See a demo on YouTube`__.

__ http://www.youtube.com/watch?v=xYeG5CVTCmk

The default fish is a simple bass at a pretty good velocity for an ASCII fish.

Possibilities are endless here, gentlemen:

    The only limit is yourself.

    -- zombo.com

`Fork on GitHub`__

__ http://github.com/lericson/fish
            

Raw data

            {
    "_id": null,
    "home_page": "http://sendapatch.se/",
    "name": "fish",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Ludvig Ericson",
    "author_email": "ludvig@sendapatch.se",
    "download_url": "https://files.pythonhosted.org/packages/61/b5/1ce3a6c258edb6c663acc85fd85a5778bee2578a752272eca43d7cced897/fish-1.1.tar.gz",
    "platform": "UNKNOWN",
    "description": "Ever wanted to have animating fishes for progress bars in your command-line\nscript?\n\nEver thought about doing it but then realizing you have better things to do\nwith your time than to write meaningless ASCII animation programs?\n\nNow you can have the best of both worlds: introducing ``fish``, the module that\nmakes any program look awesome and display useful data while churning away on\nsome good 'ole data.\n\nUsage? Simple enough::\n\n    >>> import fish\n    >>> while churning:\n    ...     churn_churn()\n    ...     fish.animate()\n\nAs a boy, I often dreamed of birds going back and forth as progress bars, so I\ndecided to implement just that::\n\n    >>> import fish\n    >>> bird = fish.Bird()\n    >>> while churning:\n    ...     churn_churn()\n    ...     bird.animate()\n\nWant to show the current record number?::\n\n    >>> from fish import ProgressFish\n    >>> fish = ProgressFish()\n    >>> for i, x in enumerate(churning):\n    ...     churn_churn()\n    ...     fish.animate(amount=i)\n\nWant to show numeric progress when you know the total number?::\n\n    >>> from fish import ProgressFish\n    >>> fish = ProgressFish(total=len(data))\n    >>> for i, datum in enumerate(data):\n    ...     churn_churn()\n    ...     fish.animate(amount=i)\n\n`See a demo on YouTube`__.\n\n__ http://www.youtube.com/watch?v=xYeG5CVTCmk\n\nThe default fish is a simple bass at a pretty good velocity for an ASCII fish.\n\nPossibilities are endless here, gentlemen:\n\n    The only limit is yourself.\n\n    -- zombo.com\n\n`Fork on GitHub`__\n\n__ http://github.com/lericson/fish",
    "bugtrack_url": null,
    "license": "UNKNOWN",
    "summary": "Animating fish (and birds) for progress bars",
    "version": "1.1",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61b51ce3a6c258edb6c663acc85fd85a5778bee2578a752272eca43d7cced897",
                "md5": "ec3bfc74686e8b70d494a5887fa23880",
                "sha256": "702eb5228050433c096f0bd29fa08c2be9ffd8d58184779359ccca819dde095f"
            },
            "downloads": -1,
            "filename": "fish-1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ec3bfc74686e8b70d494a5887fa23880",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4384,
            "upload_time": "2010-05-19T03:37:03",
            "upload_time_iso_8601": "2010-05-19T03:37:03.501574Z",
            "url": "https://files.pythonhosted.org/packages/61/b5/1ce3a6c258edb6c663acc85fd85a5778bee2578a752272eca43d7cced897/fish-1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2010-05-19 03:37:03",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "fish"
}
        
Elapsed time: 0.06503s