{ "info": { "author": "Awes Mubarak", "author_email": "awes.mubarak@awesmubarak.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Utilities" ], "description": "=======\nNicecal\n=======\n\nCreate simple calendars using box-drawing characters\n\nUsage\n=====\n\nMonth\n-----\n\n``nicecal.month(2038, 1)``\n::\n\n \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502 January \u2502\n \u2502 Mo Tu We Th Fr Sa Su \u2502\n \u2502 1 2 3 \u2502\n \u2502 4 5 6 7 8 9 10 \u2502\n \u2502 11 12 13 14 15 16 17 \u2502\n \u2502 18 19 20 21 22 23 24 \u2502\n \u2502 25 26 27 28 29 30 31 \u2502\n \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\nThe calendar output can be modified using the following arguments:\n\nOptions:\n\n- ``show_month_info`` (default 1)\n - 0: No month information header\n - 1: Only month name centred as header\n - 2: Both month name and year centred as header\n- ``show_days`` (default 1)\n - 0: Day names are not shown\n - 1: Day names are shown\n\n``>>>nicecal.month(2038, 1, show_month_info=0)``\n::\n\n \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502 Mo Tu We Th Fr Sa Su \u2502\n \u2502 1 2 3 \u2502\n \u2502 4 5 6 7 8 9 10 \u2502\n \u2502 11 12 13 14 15 16 17 \u2502\n \u2502 18 19 20 21 22 23 24 \u2502\n \u2502 25 26 27 28 29 30 31 \u2502\n \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\n``>>>nicecal.month(2038, 1, show_month_info=2)``\n::\n\n \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502 January 2038 \u2502\n \u2502 Mo Tu We Th Fr Sa Su \u2502\n \u2502 1 2 3 \u2502\n \u2502 4 5 6 7 8 9 10 \u2502\n \u2502 11 12 13 14 15 16 17 \u2502\n \u2502 18 19 20 21 22 23 24 \u2502\n \u2502 25 26 27 28 29 30 31 \u2502\n \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\n\n``>>>nicecal.month(2038, 1, show_days=0)``\n::\n\n \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502 January \u2502\n \u2502 1 2 3 \u2502\n \u2502 4 5 6 7 8 9 10 \u2502\n \u2502 11 12 13 14 15 16 17 \u2502\n \u2502 18 19 20 21 22 23 24 \u2502\n \u2502 25 26 27 28 29 30 31 \u2502\n \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\n``>>>nicecal.month(2038, 1, show_month_info=2, show_days=0)``\n::\n\n \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502 January 2038 \u2502\n \u2502 1 2 3 \u2502\n \u2502 4 5 6 7 8 9 10 \u2502\n \u2502 11 12 13 14 15 16 17 \u2502\n \u2502 18 19 20 21 22 23 24 \u2502\n \u2502 25 26 27 28 29 30 31 \u2502\n \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\n``>>>nicecal.month(2038, 1, show_month_info=0, show_days=0)``\n::\n\n \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502 1 2 3 \u2502\n \u2502 4 5 6 7 8 9 10 \u2502\n \u2502 11 12 13 14 15 16 17 \u2502\n \u2502 18 19 20 21 22 23 24 \u2502\n \u2502 25 26 27 28 29 30 31 \u2502\n \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/awesmubarak/nicecal", "keywords": "nicecal calendar cal unicode", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "nicecal", "package_url": "https://pypi.org/project/nicecal/", "platform": "", "project_url": "https://pypi.org/project/nicecal/", "project_urls": { "Homepage": "https://github.com/awesmubarak/nicecal" }, "release_url": "https://pypi.org/project/nicecal/1.1.3/", "requires_dist": null, "requires_python": "", "summary": "Create good looking plain text calendars using box-drawing characters.", "version": "1.1.3" }, "last_serial": 3325927, "releases": { "1.1.3": [ { "comment_text": "", "digests": { "md5": "3eb9aa86fe917fa1972817a08ac3c26a", "sha256": "6df402ff78ada7201a42615d59a0d207201f33783a1cbc1c9269b06b737aeb46" }, "downloads": -1, "filename": "nicecal-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3eb9aa86fe917fa1972817a08ac3c26a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3775, "upload_time": "2017-11-12T09:41:23", "url": "https://files.pythonhosted.org/packages/1d/d8/56694c1f24d15760920a09ef0953d1192b518910b7c28c1ce59863b7054d/nicecal-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "088d0c800b9c88dc9f4f0edeef010097", "sha256": "39a57f1a544006bda91b5dd8ae724a808724abc661d687051366cbc8c9547c98" }, "downloads": -1, "filename": "nicecal-1.1.3.tar.gz", "has_sig": true, "md5_digest": "088d0c800b9c88dc9f4f0edeef010097", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3037, "upload_time": "2017-11-12T09:41:24", "url": "https://files.pythonhosted.org/packages/32/41/0a4983bb9505117798bc75abb20792ba29c2a33bfe8c8bc608e3cb8b7590/nicecal-1.1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3eb9aa86fe917fa1972817a08ac3c26a", "sha256": "6df402ff78ada7201a42615d59a0d207201f33783a1cbc1c9269b06b737aeb46" }, "downloads": -1, "filename": "nicecal-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3eb9aa86fe917fa1972817a08ac3c26a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3775, "upload_time": "2017-11-12T09:41:23", "url": "https://files.pythonhosted.org/packages/1d/d8/56694c1f24d15760920a09ef0953d1192b518910b7c28c1ce59863b7054d/nicecal-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "088d0c800b9c88dc9f4f0edeef010097", "sha256": "39a57f1a544006bda91b5dd8ae724a808724abc661d687051366cbc8c9547c98" }, "downloads": -1, "filename": "nicecal-1.1.3.tar.gz", "has_sig": true, "md5_digest": "088d0c800b9c88dc9f4f0edeef010097", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3037, "upload_time": "2017-11-12T09:41:24", "url": "https://files.pythonhosted.org/packages/32/41/0a4983bb9505117798bc75abb20792ba29c2a33bfe8c8bc608e3cb8b7590/nicecal-1.1.3.tar.gz" } ] }