{ "info": { "author": "Tuxa", "author_email": "tuxa@rtnp.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://readthedocs.org/projects/glxviewer/badge/?version=latest\n :target: https://glxviewer.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n.. image:: https://gitlab.com/Tuuux/galaxie-viewer/badges/master/pipeline.svg\n :target: https://gitlab.com/Tuuux/galaxie-viewer/commits/master\n :alt: Pipeline status\n.. image:: https://gitlab.com/Tuuux/galaxie-viewer/badges/master/coverage.svg\n :target: https://gitlab.com/Tuuux/galaxie-viewer/-/commits/master\n :alt: Coverage Status\n\n==============================\nGalaxie Viewer's documentation\n==============================\n.. figure:: https://glxviewer.readthedocs.io/en/latest/_images/logo_galaxie.png\n :align: center\n\nDescription\n-----------\nProvide a Text Based line viewer, it use a template. It existe many template for high level language, but nothing for text one.\n\nOur mission is to provide useful display template for terminal. Actually every Galaxie tool use it; where print() is not use any more...\n\nLinks\n-----\n * GitLab: https://gitlab.com/Tuuux/galaxie-viewer/\n * Read the Doc: https://glxviewer.readthedocs.io/\n * PyPI: https://pypi.org/project/galaxie-viewer/\n * PyPI Test: https://test.pypi.org/project/galaxie-viewer/\n\n\nScreenshots\n-----------\nv 0.5\n\n.. figure:: https://glxviewer.readthedocs.io/en/latest/_images/screen_01.png\n :align: center\n\nInstallation via pip\n--------------------\nPypi\n\n.. code:: bash\n\n pip install galaxie-viewer\n\nPypi Test\n\n.. code:: bash\n\n pip install -i https://test.pypi.org/simple/ galaxie-viewer\n\nExemple\n-------\n\n.. code:: python\n\n import sys\n import os\n import time\n\n current_dir = os.path.dirname(os.path.abspath(__file__))\n sys.path.append(os.path.dirname(current_dir))\n\n from glxviewer import viewer\n\n\n def main():\n start_time = time.time()\n viewer.write(\n column_1=__file__,\n column_2='Yes that is possible',\n status_text_color='MAGENTA',\n )\n viewer.write(\n column_1=__file__,\n column_2='it have no difficulty to make it',\n column_3='what ?'\n )\n viewer.write(\n column_1='Use you keyboard with Ctrl + c for stop the demo',\n status_text='INFO',\n status_text_color='GREEN',\n status_symbol='!',\n )\n while True:\n\n viewer.write(\n column_1=__file__,\n column_2=str(time.time() - start_time),\n status_text='REC',\n status_text_color='RED',\n status_symbol='<',\n prompt=-1\n )\n\n\n if __name__ == '__main__':\n try:\n main()\n except KeyboardInterrupt:\n viewer.flush_a_new_line()\n sys.exit()\n\n\n==============\nGALAXIE VIEWER\n==============\nCHANGELOGS\n----------\n**v0.5.2 - 20211115**\n * Update example in documentation\n * Sphinx fixe warning\n * Migrate to single file module\n * Better CI/CD version system\n**v0.5.1 - 20211113**\n * rename ``flush_infos`` to ``write``\n * better **setuptools** management\n**v0.5.0 - 20211113**\n * Migrate to ``py-term`` for color\n * Migrate to ``py-term`` for cursor position\n * Code refactoring\n**v0.4.6 - 20211113**\n * better ``Makefile``\n**v0.4.5 - 20210205**\n * add viewer variable in ``__all__``\n * many change about refactoring\n * restore input capability\n**v0.4.4 - 20210205**\n * rename the module GLXViewer to glxviewer\n**v0.4.3 - 20210125**\n * Fixe CI troubles\n * CI use only ``Makefile``\n * Change documentation theme\n * Remove Markdown usage\n * Version is centralize inside ``__init__.py`` file\n**v0.4.2 - 20210125**\n * Make tests with the Makefile\n * Add .env file\n**v0.4.1 - 20210125**\n * Refactoring\n * Remove python2/python3 mess about str type\n**v0.4 - 20210125**\n * Better port to Python 3\n * Black reformat\n\nGNU GENERAL PUBLIC LICENSE\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n\nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\n\nPreamble\n~~~~~~~~\n\nThe GNU General Public License is a free, copyleft license for software\nand other kinds of works.\n\nThe licenses for most software and other practical works are designed to\ntake away your freedom to share and change the works. By contrast, the\nGNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price.\nOur General Public Licenses are designed to make sure that you have the\nfreedom to distribute copies of free software (and charge for them if\nyou wish), that you receive source code or can get it if you want it,\nthat you can change the software or use pieces of it in new free\nprograms, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these\nrights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis\nor for a fee, you must pass on to the recipients the same freedoms that\nyou received. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1)\nassert copyright on the software, and (2) offer you this License giving\nyou legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\nSome devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of protecting\nusers' freedom to change the software. The systematic pattern of such\nabuse occurs in the area of products for individuals to use, which is\nprecisely where it is most unacceptable. Therefore, we have designed\nthis version of the GPL to prohibit the practice for those products. If\nsuch problems arise substantially in other domains, we stand ready to\nextend this provision to those domains in future versions of the GPL, as\nneeded to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\nTERMS AND CONDITIONS\n~~~~~~~~~~~~~~~~~~~~\n\n0. Definitions.\n^^^^^^^^^^^^^^^\n\n\"This License\" refers to version 3 of the GNU General Public License.\n\n\"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n\"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\nTo \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\nA \"covered work\" means either the unmodified Program or a work based on\nthe Program.\n\nTo \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\nTo \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \"Appropriate Legal Notices\" to\nthe extent that it includes a convenient and prominently visible feature\nthat (1) displays an appropriate copyright notice, and (2) tells the\nuser that there is no warranty for the work (except to the extent that\nwarranties are provided), that licensees may convey the work under this\nLicense, and how to view a copy of this License. If the interface\npresents a list of user commands or options, such as a menu, a prominent\nitem in the list meets this criterion.\n\n1. Source Code.\n^^^^^^^^^^^^^^^\n\nThe \"source code\" for a work means the preferred form of the work for\nmaking modifications to it. \"Object code\" means any non-source form of a\nwork.\n\nA \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that is\nwidely used among developers working in that language.\n\nThe \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that Major\nComponent, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A \"Major\nComponent\", in this context, means a major essential component (kernel,\nwindow system, and so on) of the specific operating system (if any) on\nwhich the executable work runs, or a compiler used to produce the work,\nor an object code interpreter used to run it.\n\nThe \"Corresponding Source\" for a work in object code form means all the\nsource code needed to generate, install, and (for an executable work)\nrun the object code and to modify the work, including scripts to control\nthose activities. However, it does not include the work's System\nLibraries, or general-purpose tools or generally available free programs\nwhich are used unmodified in performing those activities but which are\nnot part of the work. For example, Corresponding Source includes\ninterface definition files associated with source files for the work,\nand the source code for shared libraries and dynamically linked\nsubprograms that the work is specifically designed to require, such as\nby intimate data communication or control flow between those subprograms\nand other parts of the work.\n\nThe Corresponding Source need not include anything that users can\nregenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same\nwork.\n\n2. Basic Permissions.\n^^^^^^^^^^^^^^^^^^^^^\n\nAll rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey,\nwithout conditions so long as your license otherwise remains in force.\nYou may convey covered works to others for the sole purpose of having\nthem make modifications exclusively for you, or provide you with\nfacilities for running those works, provided that you comply with the\nterms of this License in conveying all material for which you do not\ncontrol copyright. Those thus making or running the covered works for\nyou must do so exclusively on your behalf, under your direction and\ncontrol, on terms that prohibit them from making any copies of your\ncopyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the\nconditions stated below. Sublicensing is not allowed; section 10 makes\nit unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nNo covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article 11\nof the WIPO copyright treaty adopted on 20 December 1996, or similar\nlaws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to the\ncovered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n4. Conveying Verbatim Copies.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nYou may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice; keep\nintact all notices stating that this License and any non-permissive\nterms added in accord with section 7 apply to the code; keep intact all\nnotices of the absence of any warranty; and give all recipients a copy\nof this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and\nyou may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nYou may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the terms\nof section 4, provided that you also meet all of these conditions:\n\na) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\nb) The work must carry prominent notices stating that it is released\n under this License and any conditions added under section 7. This\n requirement modifies the requirement in section 4 to \"keep intact\n all notices\".\n\nc) You must license the entire work, as a whole, under this License\n to anyone who comes into possession of a copy. This License will\n therefore apply, along with any applicable section 7 additional\n terms, to the whole of the work, and all its parts, regardless of\n how they are packaged. This License gives no permission to license\n the work in any other way, but it does not invalidate such\n permission if you have separately received it.\n\nd) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\nA compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work, and\nwhich are not combined with it such as to form a larger program, in or\non a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not used\nto limit the access or legal rights of the compilation's users beyond\nwhat the individual works permit. Inclusion of a covered work in an\naggregate does not cause this License to apply to the other parts of the\naggregate.\n\n6. Conveying Non-Source Forms.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nYou may convey a covered work in object code form under the terms of\nsections 4 and 5, provided that you also convey the machine-readable\nCorresponding Source under the terms of this License, in one of these\nways:\n\na) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\nb) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the Corresponding\n Source from a network server at no charge.\n\nc) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\nd) Convey the object code by offering access from a designated place\n (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\ne) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be included\nin conveying the object code work.\n\nA \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for\nincorporation into a dwelling. In determining whether a product is a\nconsumer product, doubtful cases shall be resolved in favor of coverage.\nFor a particular product received by a particular user, \"normally used\"\nrefers to a typical or common use of that class of product, regardless\nof the status of the particular user or of the way in which the\nparticular user actually uses, or expects or is expected to use, the\nproduct. A product is a consumer product regardless of whether the\nproduct has substantial commercial, industrial or non-consumer uses,\nunless such uses represent the only significant mode of use of the\nproduct.\n\n\"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product\nfrom a modified version of its Corresponding Source. The information\nmust suffice to ensure that the continued functioning of the modified\nobject code is in no case prevented or interfered with solely because\nmodification has been made.\n\nIf you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied by\nthe Installation Information. But this requirement does not apply if\nneither you nor any third party retains the ability to install modified\nobject code on the User Product (for example, the work has been\ninstalled in ROM).\n\nThe requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in\naccord with this section must be in a format that is publicly documented\n(and with an implementation available to the public in source code\nform), and must require no special password or key for unpacking,\nreading or copying.\n\n7. Additional Terms.\n^^^^^^^^^^^^^^^^^^^^\n\n\"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by this\nLicense without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove\nany additional permissions from that copy, or from any part of it.\n(Additional permissions may be written to require their own removal in\ncertain cases when you modify the work.) You may place additional\npermissions on material, added by you to a covered work, for which you\nhave or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders\nof that material) supplement the terms of this License with terms:\n\na) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\nb) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\nc) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\nd) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\ne) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\nf) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions\n of it) with contractual assumptions of liability to the recipient,\n for any liability that these contractual assumptions directly\n impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains a\nfurther restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms of\nthat license document, provided that the further restriction does not\nsurvive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must\nplace, in the relevant source files, a statement of the additional terms\nthat apply to those files, or a notice indicating where to find the\napplicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions; the above\nrequirements apply either way.\n\n8. Termination.\n^^^^^^^^^^^^^^^\n\nYou may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\nHowever, if you cease all violation of this License, then your license\nfrom a particular copyright holder is reinstated (a) provisionally,\nunless and until the copyright holder explicitly and finally terminates\nyour license, and (b) permanently, if the copyright holder fails to\nnotify you of the violation by some reasonable means prior to 60 days\nafter the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated\npermanently if the copyright holder notifies you of the violation by\nsome reasonable means, this is the first time you have received notice\nof violation of this License (for any work) from that copyright holder,\nand you cure the violation prior to 30 days after your receipt of the\nnotice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n9. Acceptance Not Required for Having Copies.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nYou are not required to accept this License in order to receive or run a\ncopy of the Program. Ancillary propagation of a covered work occurring\nsolely as a consequence of using peer-to-peer transmission to receive a\ncopy likewise does not require acceptance. However, nothing other than\nthis License grants you permission to propagate or modify any covered\nwork. These actions infringe copyright if you do not accept this\nLicense. Therefore, by modifying or propagating a covered work, you\nindicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nEach time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\nAn \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered work\nresults from an entity transaction, each party to that transaction who\nreceives a copy of the work also receives whatever licenses to the work\nthe party's predecessor in interest had or could give under the previous\nparagraph, plus a right to possession of the Corresponding Source of the\nwork from the predecessor in interest, if the predecessor has it or can\nget it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may not\nimpose a license fee, royalty, or other charge for exercise of rights\ngranted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that any\npatent claim is infringed by making, using, selling, offering for sale,\nor importing the Program or any portion of it.\n\n11. Patents.\n^^^^^^^^^^^^\n\nA \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The work\nthus licensed is called the contributor's \"contributor version\".\n\nA contributor's \"essential patent claims\" are all patent claims owned or\ncontrolled by the contributor, whether already acquired or hereafter\nacquired, that would be infringed by some manner, permitted by this\nLicense, of making, using, or selling its contributor version, but do\nnot include claims that would be infringed only as a consequence of\nfurther modification of the contributor version. For purposes of this\ndefinition, \"control\" includes the right to grant patent sublicenses in\na manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to make,\nuse, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\nIn the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and\nthe Corresponding Source of the work is not available for anyone to\ncopy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify or\nconvey a specific copy of the covered work, then the patent license you\ngrant is automatically extended to all recipients of the covered work\nand works based on it.\n\nA patent license is \"discriminatory\" if it does not include within the\nscope of its coverage, prohibits the exercise of, or is conditioned on\nthe non-exercise of one or more of the rights that are specifically\ngranted under this License. You may not convey a covered work if you are\na party to an arrangement with a third party that is in the business of\ndistributing software, under which you make payment to the third party\nbased on the extent of your activity of conveying the work, and under\nwhich the third party grants, to any of the parties who would receive\nthe covered work from you, a discriminatory patent license (a) in\nconnection with copies of the covered work conveyed by you (or copies\nmade from those copies), or (b) primarily for and in connection with\nspecific products or compilations that contain the covered work, unless\nyou entered into that arrangement, or that patent license was granted,\nprior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any\nimplied license or other defenses to infringement that may otherwise be\navailable to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIf conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not convey it at all. For example, if you agree to terms that\nobligate you to collect a royalty for further conveying from those to\nwhom you convey the Program, the only way you could satisfy both those\nterms and this License would be to refrain entirely from conveying the\nProgram.\n\n13. Use with the GNU Affero General Public License.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nNotwithstanding any other provision of this License, you have permission\nto link or combine any covered work with a work licensed under version 3\nof the GNU Affero General Public License into a single combined work,\nand to convey the resulting work. The terms of this License will\ncontinue to apply to the part which is the covered work, but the special\nrequirements of the GNU Affero General Public License, section 13,\nconcerning interaction through a network will apply to the combination\nas such.\n\n14. Revised Versions of this License.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies that a certain numbered version of the GNU General Public\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that numbered version or of\nany later version published by the Free Software Foundation. If the\nProgram does not specify a version number of the GNU General Public\nLicense, you may choose any version ever published by the Free Software\nFoundation.\n\nIf the Program specifies that a proxy can decide which future versions\nof the GNU General Public License can be used, that proxy's public\nstatement of acceptance of a version permanently authorizes you to\nchoose that version for the Program.\n\nLater license versions may give you additional or different permissions.\nHowever, no additional obligations are imposed on any author or\ncopyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\nTHE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR\nCONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\nARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT\nNOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES\nSUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE\nWITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\nADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIf the disclaimer of warranty and limitation of liability provided above\ncannot be given local legal effect according to their terms, reviewing\ncourts shall apply local law that most closely approximates an absolute\nwaiver of all civil liability in connection with the Program, unless a\nwarranty or assumption of liability accompanies a copy of the Program in\nreturn for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively state\nthe exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n::\n\n \n Copyright (C) \n \n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n \n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n \n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice\nlike this when it starts in an interactive mode:\n\n::\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, your\nprogram's commands might be different; for a GUI interface, you would\nuse an \"about box\".\n\nYou should also get your employer (if you work as a programmer) or\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. For more information on this, and how to apply and follow the\nGNU GPL, see https://www.gnu.org/licenses/.\n\nThe GNU General Public License does not permit incorporating your\nprogram into proprietary programs. If your program is a subroutine\nlibrary, you may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\nGNU Lesser General Public License instead of this License. But first,\nplease read https://www.gnu.org/licenses/why-not-lgpl.html.\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://pypi.org/project/galaxie-viewer", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/Tuuux/galaxie-viewer", "keywords": "Galaxie utility text format template", "license": "GPLv3+", "maintainer": "", "maintainer_email": "", "name": "galaxie-viewer", "package_url": "https://pypi.org/project/galaxie-viewer/", "platform": "", "project_url": "https://pypi.org/project/galaxie-viewer/", "project_urls": { "Download": "https://pypi.org/project/galaxie-viewer", "GitLab": "https://gitlab.com/Tuuux/galaxie-viewer", "Homepage": "https://gitlab.com/Tuuux/galaxie-viewer", "Read the Docs": "https://glxviewer.readthedocs.io" }, "release_url": "https://pypi.org/project/galaxie-viewer/0.5.2/", "requires_dist": null, "requires_python": "", "summary": "Galaxie Viewer is a Python toolkit it permit to display text over templates, like a micro STDOUT logging.", "version": "0.5.2", "yanked": false, "yanked_reason": null }, "last_serial": 12022845, "releases": { "0.0.1.dev24": [ { "comment_text": "", "digests": { "md5": "332935dbd0c553b3b5567690aa5d59c7", "sha256": "e95530ab06a20565e00eca173cfaf4cdada8b8efdffd1f95d18d4ac5a25f87e3" }, "downloads": -1, "filename": "galaxie_viewer-0.0.1.dev24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "332935dbd0c553b3b5567690aa5d59c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7", "size": 18592, "upload_time": "2019-10-20T01:40:15", "upload_time_iso_8601": "2019-10-20T01:40:15.218564Z", "url": "https://files.pythonhosted.org/packages/ad/52/d10875b34de4af5a6e91632a768e623579a6f43f122699cb2e317652c87e/galaxie_viewer-0.0.1.dev24-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "538cdfbee88c01951bbd02fbdb08600e", "sha256": "36b12abd25745edd276464167580734f0218544fba8e7d1f388ca5fe81f7543e" }, "downloads": -1, "filename": "galaxie-viewer-0.0.1.dev24.tar.gz", "has_sig": false, "md5_digest": "538cdfbee88c01951bbd02fbdb08600e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 81730, "upload_time": "2019-10-20T01:40:18", "upload_time_iso_8601": "2019-10-20T01:40:18.700372Z", "url": "https://files.pythonhosted.org/packages/2e/8e/49c3d7cc6df944b35341adfdd7bd38a34645c8387bab63779b39fc1eb0c9/galaxie-viewer-0.0.1.dev24.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "5a546ecc23cd332b292cd579e68b0c89", "sha256": "1bf38802475c148f33077c7a08f4a2a91d9166ec27dd292a83be291dd77eea90" }, "downloads": -1, "filename": "galaxie-viewer-0.1.1.tar.gz", "has_sig": false, "md5_digest": "5a546ecc23cd332b292cd579e68b0c89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4891, "upload_time": "2019-10-20T09:03:56", "upload_time_iso_8601": "2019-10-20T09:03:56.670801Z", "url": "https://files.pythonhosted.org/packages/2e/f4/7ca2fed7e4b34d696c56f1d7c11a4c210074f8708366ad61f2764b923f61/galaxie-viewer-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "81239910602e7f36dcbd8d254252cd2d", "sha256": "1a0adb5f26ca7c877c6448b54fe87dc9df7d00d14831e0d6310cc84e57e1a234" }, "downloads": -1, "filename": "galaxie-viewer-0.1.2.tar.gz", "has_sig": false, "md5_digest": "81239910602e7f36dcbd8d254252cd2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81511, "upload_time": "2019-10-20T01:40:21", "upload_time_iso_8601": "2019-10-20T01:40:21.344875Z", "url": "https://files.pythonhosted.org/packages/d3/3a/d6d7c22178158aa4f0cc39761443fe47e88c50b6df2a82b7e9bd1257ad50/galaxie-viewer-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2": [ { "comment_text": "", "digests": { "md5": "48b253f1c6108a1e8494164bbd751019", "sha256": "5b88a5d476811faee441da495616c9ea9a66bd8ce2efcc9dd5ac3361e0b34901" }, "downloads": -1, "filename": "galaxie-viewer-0.2.tar.gz", "has_sig": false, "md5_digest": "48b253f1c6108a1e8494164bbd751019", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5017, "upload_time": "2019-10-20T11:44:55", "upload_time_iso_8601": "2019-10-20T11:44:55.630862Z", "url": "https://files.pythonhosted.org/packages/5e/ce/abd90f526a29b5d9e171ac301cdfb1e5d530a7f8b78831e41ca9b1721418/galaxie-viewer-0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3": [ { "comment_text": "", "digests": { "md5": "27044e419013660a6b51905f5663c4ff", "sha256": "8bead86bca7ca62080b503f7fade2ff5b56b8e8fc05fcb7996593907cd1881a6" }, "downloads": -1, "filename": "galaxie-viewer-0.3.tar.gz", "has_sig": false, "md5_digest": "27044e419013660a6b51905f5663c4ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6471, "upload_time": "2019-10-22T22:12:46", "upload_time_iso_8601": "2019-10-22T22:12:46.420489Z", "url": "https://files.pythonhosted.org/packages/9d/8d/19ad8975d2d9ea24f2de284b10949df64f5eeac2b81589a1ddd028520c82/galaxie-viewer-0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4": [ { "comment_text": "", "digests": { "md5": "ba9571e3b55dc6e653ea06171b5506a5", "sha256": "cfe61df30440e359a978bbea670f926a80cfc6ed3cc1d71db1e523944a769f3b" }, "downloads": -1, "filename": "galaxie-viewer-0.4.tar.gz", "has_sig": false, "md5_digest": "ba9571e3b55dc6e653ea06171b5506a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6914, "upload_time": "2021-01-25T18:09:54", "upload_time_iso_8601": "2021-01-25T18:09:54.596461Z", "url": "https://files.pythonhosted.org/packages/e0/60/025988a68269ea4cded231bfc0d485d99a9399f7d5bf6d57e1e3b762b007/galaxie-viewer-0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "683d04de907313d67a50d3c7cb4350c6", "sha256": "025e6a35aa44fc9358216bd57d919198aeb7660f0b9c0192175f7e16308e3ce6" }, "downloads": -1, "filename": "galaxie-viewer-0.4.3.tar.gz", "has_sig": false, "md5_digest": "683d04de907313d67a50d3c7cb4350c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6908, "upload_time": "2021-01-26T15:51:39", "upload_time_iso_8601": "2021-01-26T15:51:39.199440Z", "url": "https://files.pythonhosted.org/packages/64/4f/933198c252232b0a169730ee9ee44859cbe176e690e9935b9e0bb4584f3a/galaxie-viewer-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "95242f34966ade155b09d4c4581cd7db", "sha256": "e805722812323c93d35904101c222b7d2603fcdc3bacf4ff2b9f0359a768e089" }, "downloads": -1, "filename": "galaxie-viewer-0.4.4.tar.gz", "has_sig": false, "md5_digest": "95242f34966ade155b09d4c4581cd7db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7520, "upload_time": "2021-02-06T21:49:13", "upload_time_iso_8601": "2021-02-06T21:49:13.067159Z", "url": "https://files.pythonhosted.org/packages/63/8a/065c8c5d5b2b81368ad651d1005d6f9a21352e81c72f2d9e8de6d229d29b/galaxie-viewer-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "94e25994ae482479f9119a86a263ec5f", "sha256": "1384f80d16cab302e77cae142b706c1e6ac922ea422f9a8827f7110c6628817e" }, "downloads": -1, "filename": "galaxie-viewer-0.4.5.tar.gz", "has_sig": false, "md5_digest": "94e25994ae482479f9119a86a263ec5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7522, "upload_time": "2021-02-07T00:08:34", "upload_time_iso_8601": "2021-02-07T00:08:34.451082Z", "url": "https://files.pythonhosted.org/packages/c6/f6/6081e943fd786fd6c3c83708d37cbfb6218fdeb392cd9c9927d91b8d1e65/galaxie-viewer-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "e1de7fd47743cb2e537a59146d98f653", "sha256": "fd36db4fa1b4bf2f6a35b979a2924a22d801f6ed5d350054ffb93f389a65a4d6" }, "downloads": -1, "filename": "galaxie-viewer-0.4.6.tar.gz", "has_sig": false, "md5_digest": "e1de7fd47743cb2e537a59146d98f653", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19594, "upload_time": "2021-11-13T09:00:19", "upload_time_iso_8601": "2021-11-13T09:00:19.825161Z", "url": "https://files.pythonhosted.org/packages/77/2a/64909e598ec2f93ca697ebc21049bafbdb3aadc84205091611a432824b69/galaxie-viewer-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "1f1d0c6b7ed6a325485b63b4d30bee90", "sha256": "1b8db6afeae689c18971d3518739c2741a7d8ee71ef043b8302678c1a1f60392" }, "downloads": -1, "filename": "galaxie-viewer-0.5.0.tar.gz", "has_sig": false, "md5_digest": "1f1d0c6b7ed6a325485b63b4d30bee90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18961, "upload_time": "2021-11-13T15:29:40", "upload_time_iso_8601": "2021-11-13T15:29:40.939175Z", "url": "https://files.pythonhosted.org/packages/06/1f/fc2d672127e5b94260a600fb7176bdba5f6404db773695f71fcb9bfaa4c7/galaxie-viewer-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "cd4c6f9d38940bf9c3d4d4fd29693666", "sha256": "cf218db0abd0d7aa2a7625849e6193f62bf65e73de4f856088e90d3855d1dce0" }, "downloads": -1, "filename": "galaxie-viewer-0.5.1.tar.gz", "has_sig": false, "md5_digest": "cd4c6f9d38940bf9c3d4d4fd29693666", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43558, "upload_time": "2021-11-14T21:31:23", "upload_time_iso_8601": "2021-11-14T21:31:23.081201Z", "url": "https://files.pythonhosted.org/packages/6f/87/0da09f5c771ec7896be5f76c9255e1c0ccaa8708860a614b4e8e5ca09210/galaxie-viewer-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "9270df4c177bbec9c12ddab7db88666f", "sha256": "7a284e7c2933532b10a8794c6bb171344862ef915d26257c12cd7e81ccc79b41" }, "downloads": -1, "filename": "galaxie-viewer-0.5.2.tar.gz", "has_sig": false, "md5_digest": "9270df4c177bbec9c12ddab7db88666f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43389, "upload_time": "2021-11-15T01:36:54", "upload_time_iso_8601": "2021-11-15T01:36:54.329271Z", "url": "https://files.pythonhosted.org/packages/3a/30/19d029ccd7fb55f4d5e53fbdf08ab57bc66ba254623dd5417723248de041/galaxie-viewer-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9270df4c177bbec9c12ddab7db88666f", "sha256": "7a284e7c2933532b10a8794c6bb171344862ef915d26257c12cd7e81ccc79b41" }, "downloads": -1, "filename": "galaxie-viewer-0.5.2.tar.gz", "has_sig": false, "md5_digest": "9270df4c177bbec9c12ddab7db88666f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43389, "upload_time": "2021-11-15T01:36:54", "upload_time_iso_8601": "2021-11-15T01:36:54.329271Z", "url": "https://files.pythonhosted.org/packages/3a/30/19d029ccd7fb55f4d5e53fbdf08ab57bc66ba254623dd5417723248de041/galaxie-viewer-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }