XIST provides an extensible HTML and XML generator. XIST is also a XML parser
with a very simple and pythonesque tree API. Every XML element type corresponds
to a Python class and these Python classes provide a conversion method to
transform the XML tree (e.g. into HTML). XIST can be considered
'object oriented XSLT'.
XIST also includes the following modules and packages:
* ``ll.ul4c`` is compiler for a cross-platform templating language with
similar capabilities to `Django's templating language`__. ``UL4`` templates
are compiled to an internal format, which makes it possible to implement
template renderers in other languages and makes the template code "secure"
(i.e. template code can't open or delete files).
__ https://docs.djangoproject.com/en/1.5/topics/templates/
There are implementations for Python, Java and Javascript.
* ``ll.ul4on`` provides functions for encoding and decoding a lightweight
machine-readable text-based format for serializing the object types supported
by UL4. It is extensible to allow encoding/decoding arbitrary instances
(i.e. it is basically a reimplementation of ``pickle``, but with string
input/output instead of bytes and with an eye towards cross-plattform
support).
There are implementations for Python, Java and Javascript.
* ``ll.orasql`` provides utilities for working with cx_Oracle_:
- It allows calling functions and procedures with keyword arguments.
- Query results will be put into Record objects, where database fields
are accessible as object attributes.
- The ``Connection`` class provides methods for iterating through the
database metadata.
- Importing the modules adds support for URLs with the scheme ``oracle`` to
``ll.url``.
.. _cx_Oracle: https://oracle.github.io/python-cx_Oracle/
* ``ll.make`` is an object oriented make replacement. Like make it allows
you to specify dependencies between files and actions to be executed
when files don't exist or are out of date with respect to one
of their sources. But unlike make you can do this in a object oriented
way and targets are not only limited to files.
* ``ll.color`` provides classes and functions for handling RGB color values.
This includes the ability to convert between different color models
(RGB, HSV, HLS) as well as to and from CSS format, and several functions
for modifying and mixing colors.
* ``ll.sisyphus`` provides classes for running Python scripts as cron jobs.
* ``ll.url`` provides classes for parsing and constructing RFC 2396
compliant URLs.
* ``ll.nightshade`` can be used to serve the output of PL/SQL
functions/procedures with CherryPy__.
* ``ll.misc`` provides several small utility functions and classes.
* ``ll.astyle`` can be used for colored terminal output (via ANSI escape
sequences).
* ``ll.daemon`` can be used on UNIX to fork a daemon process.
* ``ll.xml_codec`` contains a complete codec for encoding and decoding XML.
__ http://www.cherrypy.org/
Changes in 5.77 (released 2024-11-13)
-------------------------------------
* The code has been updated to use ``X | Y`` for union types in some type
annotations, so Python 3.10 is required now.
* ``ll.orasql`` has been updated to use ``oracledb``.
* Instead of ``clientinfo`` ``ll.orasql`` now automatically includes
the running script in ``program``. If you don't want that (for example
when the path includes characters that are not allowed, so you get
``DPY-3029``), pass ``program=None`` (or your own custom value).
* The SQL output by ``ll.orasql.Job.dropsql`` now includes the argument
``p_force=>true``, so a job can be dropped even if it is currently running.
* UL4 gained the type ``operator.itemgetter``.
Raw data
{
"_id": null,
"home_page": "http://python.livinglogic.de/",
"name": "ll-xist",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "ANSI, CSS, CherryPy, FTP, HLS, HSB, HSC, HSV, HTML, HTTP, Oracle, PI, PL/SQL, RFC 2396, RGB, SVG, URL, XHTML, XML, XSL-FO, XSLT, build, codec, color, cron, cx_Oracle, decorator, escape sequence, execnet, iterator, job, make, procedure, processing instruction, property, record, schema, ssh, template, templating language, terminal, toxic, user defined function",
"author": "Walter Doerwald",
"author_email": "walter@livinglogic.de",
"download_url": "https://files.pythonhosted.org/packages/23/9d/e742f4f4c1f6d618b039e8dea36da9fc9a698d8eb30de5554c17d7c7732e/ll_xist-5.77.tar.gz",
"platform": null,
"description": "XIST provides an extensible HTML and XML generator. XIST is also a XML parser\nwith a very simple and pythonesque tree API. Every XML element type corresponds\nto a Python class and these Python classes provide a conversion method to\ntransform the XML tree (e.g. into HTML). XIST can be considered\n'object oriented XSLT'.\n\nXIST also includes the following modules and packages:\n\n* ``ll.ul4c`` is compiler for a cross-platform templating language with\n similar capabilities to `Django's templating language`__. ``UL4`` templates\n are compiled to an internal format, which makes it possible to implement\n template renderers in other languages and makes the template code \"secure\"\n (i.e. template code can't open or delete files).\n\n __ https://docs.djangoproject.com/en/1.5/topics/templates/\n\n There are implementations for Python, Java and Javascript.\n\n* ``ll.ul4on`` provides functions for encoding and decoding a lightweight\n machine-readable text-based format for serializing the object types supported\n by UL4. It is extensible to allow encoding/decoding arbitrary instances\n (i.e. it is basically a reimplementation of ``pickle``, but with string\n input/output instead of bytes and with an eye towards cross-plattform\n support).\n\n There are implementations for Python, Java and Javascript.\n\n* ``ll.orasql`` provides utilities for working with cx_Oracle_:\n\n - It allows calling functions and procedures with keyword arguments.\n\n - Query results will be put into Record objects, where database fields\n are accessible as object attributes.\n\n - The ``Connection`` class provides methods for iterating through the\n database metadata.\n\n - Importing the modules adds support for URLs with the scheme ``oracle`` to\n ``ll.url``.\n\n .. _cx_Oracle: https://oracle.github.io/python-cx_Oracle/\n\n* ``ll.make`` is an object oriented make replacement. Like make it allows\n you to specify dependencies between files and actions to be executed\n when files don't exist or are out of date with respect to one\n of their sources. But unlike make you can do this in a object oriented\n way and targets are not only limited to files.\n\n* ``ll.color`` provides classes and functions for handling RGB color values.\n This includes the ability to convert between different color models\n (RGB, HSV, HLS) as well as to and from CSS format, and several functions\n for modifying and mixing colors.\n\n* ``ll.sisyphus`` provides classes for running Python scripts as cron jobs.\n\n* ``ll.url`` provides classes for parsing and constructing RFC 2396\n compliant URLs.\n\n* ``ll.nightshade`` can be used to serve the output of PL/SQL\n functions/procedures with CherryPy__.\n\n* ``ll.misc`` provides several small utility functions and classes.\n\n* ``ll.astyle`` can be used for colored terminal output (via ANSI escape\n sequences).\n\n* ``ll.daemon`` can be used on UNIX to fork a daemon process.\n\n* ``ll.xml_codec`` contains a complete codec for encoding and decoding XML.\n\n__ http://www.cherrypy.org/\n\n\nChanges in 5.77 (released 2024-11-13)\n-------------------------------------\n\n* The code has been updated to use ``X | Y`` for union types in some type\n annotations, so Python 3.10 is required now.\n\n* ``ll.orasql`` has been updated to use ``oracledb``.\n\n* Instead of ``clientinfo`` ``ll.orasql`` now automatically includes\n the running script in ``program``. If you don't want that (for example\n when the path includes characters that are not allowed, so you get\n ``DPY-3029``), pass ``program=None`` (or your own custom value).\n\n* The SQL output by ``ll.orasql.Job.dropsql`` now includes the argument\n ``p_force=>true``, so a job can be dropped even if it is currently running.\n\n* UL4 gained the type ``operator.itemgetter``.\n\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Extensible HTML/XML generator, cross-platform templating language, Oracle utilities and various other tools",
"version": "5.77",
"project_urls": {
"Download": "http://python.livinglogic.de/DOWNLOAD.html",
"Homepage": "http://python.livinglogic.de/"
},
"split_keywords": [
"ansi",
" css",
" cherrypy",
" ftp",
" hls",
" hsb",
" hsc",
" hsv",
" html",
" http",
" oracle",
" pi",
" pl/sql",
" rfc 2396",
" rgb",
" svg",
" url",
" xhtml",
" xml",
" xsl-fo",
" xslt",
" build",
" codec",
" color",
" cron",
" cx_oracle",
" decorator",
" escape sequence",
" execnet",
" iterator",
" job",
" make",
" procedure",
" processing instruction",
" property",
" record",
" schema",
" ssh",
" template",
" templating language",
" terminal",
" toxic",
" user defined function"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c19de7851a1b2d1c6daeeb6d025269c6945c4856e24b2143850e1c6d8627676e",
"md5": "efb292e5302bb030ad4715eee59b1527",
"sha256": "16f3264b48924428fe2d8789d638d790d3c58f2319b1fd0f5dbde79f711c52bc"
},
"downloads": -1,
"filename": "ll_xist-5.77-cp313-cp313-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "efb292e5302bb030ad4715eee59b1527",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 570463,
"upload_time": "2024-11-14T15:02:31",
"upload_time_iso_8601": "2024-11-14T15:02:31.451022Z",
"url": "https://files.pythonhosted.org/packages/c1/9d/e7851a1b2d1c6daeeb6d025269c6945c4856e24b2143850e1c6d8627676e/ll_xist-5.77-cp313-cp313-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "239de742f4f4c1f6d618b039e8dea36da9fc9a698d8eb30de5554c17d7c7732e",
"md5": "965a54beb1daad366244694c61bbe3ce",
"sha256": "c2d10bac43a76a1cc176b81253e33e740bd49a373bb14f567132afeb2ca3da41"
},
"downloads": -1,
"filename": "ll_xist-5.77.tar.gz",
"has_sig": false,
"md5_digest": "965a54beb1daad366244694c61bbe3ce",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 762237,
"upload_time": "2024-11-14T15:02:35",
"upload_time_iso_8601": "2024-11-14T15:02:35.386175Z",
"url": "https://files.pythonhosted.org/packages/23/9d/e742f4f4c1f6d618b039e8dea36da9fc9a698d8eb30de5554c17d7c7732e/ll_xist-5.77.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-14 15:02:35",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "ll-xist"
}