appall


Nameappall JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/zeionara/appall
SummaryProject for horizontally juxtapozing text in terminal
upload_time2022-12-07 17:37:32
maintainer
docs_urlNone
authorZeio Nara
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Appall 😱

**a**bridged **p**retty **p**rinting **a**pp for **l**ong **l**ine **l**ogging a.k.a one **app** to log'em **all**

This tiny utility allows you to **horizontally** juxtapose some text in terminal

## Usage

The tool can be used the following way (see `examples` folder):

```py
from appall import AppallingLogger

logger = AppallingLogger()

logger.log("foo")
logger.log("qux")
logger.loop()

logger.log("bar")
logger.log("quux")

logger.log("baz")
logger.log("quuz")

logger.print(column_width = 10)
```

This example produces the following output:

```sh
foo       bar       baz       
qux       quux      quuz      
```

## Installation

Install the program using this command:

```sh
pip install appall
```

Or clone the repo and add path to the `appall` folder at the end of your `PYTHONPATH`. In this case `environment.yml` file will be useful for creating an environment. This can be done using the following command:

```sh
conda env create -f environment.yml
```

## Testing

Test the tool using following command:

```sh
python -m unittest discover test
```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zeionara/appall",
    "name": "appall",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Zeio Nara",
    "author_email": "zeionara@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/72/43/429129ffd30b3609c8a5e5d02b8cedb1b300f176938ddbc666659b008984/appall-0.1.0.tar.gz",
    "platform": null,
    "description": "# Appall \ud83d\ude31\n\n**a**bridged **p**retty **p**rinting **a**pp for **l**ong **l**ine **l**ogging a.k.a one **app** to log'em **all**\n\nThis tiny utility allows you to **horizontally** juxtapose some text in terminal\n\n## Usage\n\nThe tool can be used the following way (see `examples` folder):\n\n```py\nfrom appall import AppallingLogger\n\nlogger = AppallingLogger()\n\nlogger.log(\"foo\")\nlogger.log(\"qux\")\nlogger.loop()\n\nlogger.log(\"bar\")\nlogger.log(\"quux\")\n\nlogger.log(\"baz\")\nlogger.log(\"quuz\")\n\nlogger.print(column_width = 10)\n```\n\nThis example produces the following output:\n\n```sh\nfoo       bar       baz       \nqux       quux      quuz      \n```\n\n## Installation\n\nInstall the program using this command:\n\n```sh\npip install appall\n```\n\nOr clone the repo and add path to the `appall` folder at the end of your `PYTHONPATH`. In this case `environment.yml` file will be useful for creating an environment. This can be done using the following command:\n\n```sh\nconda env create -f environment.yml\n```\n\n## Testing\n\nTest the tool using following command:\n\n```sh\npython -m unittest discover test\n```\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Project for horizontally juxtapozing text in terminal",
    "version": "0.1.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "ca0293a0b46b00eeb22f3f96fd84dbbe",
                "sha256": "22457a91515aa316eddb8b4c38b51aa3b31f64f3f6a24079ad2c4fa7b0d8a144"
            },
            "downloads": -1,
            "filename": "appall-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ca0293a0b46b00eeb22f3f96fd84dbbe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6629,
            "upload_time": "2022-12-07T17:37:32",
            "upload_time_iso_8601": "2022-12-07T17:37:32.155899Z",
            "url": "https://files.pythonhosted.org/packages/72/43/429129ffd30b3609c8a5e5d02b8cedb1b300f176938ddbc666659b008984/appall-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-07 17:37:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "zeionara",
    "github_project": "appall",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "appall"
}
        
Elapsed time: 0.02103s