grokcore.catalog


Namegrokcore.catalog JSON
Version 4.0 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/grokcore.catalog
SummaryGrok-like configuration for catalog and indexes
upload_time2023-07-12 07:30:34
maintainer
docs_urlNone
authorGrok Team
requires_python
licenseZPL 2.1
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Grok
****

What is grok?
=============

Grok is a smashing web framework based on `Zope Toolkit`_ technology.

.. _`Zope Toolkit`: http://docs.zope.org/zopetoolkit

Grok uses the Component Architecture and builds on Zope concepts like
content objects (models), views, and adapters.  Its simplicity lies in
using **convention over configuration** and **sensible defaults** when
wiring components together.  That means neither a configuration
language like ZCML nor a lot of repetition are needed to create a web
application with grok.

You can find out much more about Grok at our http://grok.zope.org
website.

Who is grok?
============

Grok is a friendly caveman from the Stone Age.  He has a big club that
he hunts mammoths with.  He will also use this club to smash anything
he doesn't like.

"ME GROK SMASH ZCML!"

Getting grok
============

The easiest way to get started with grok is to install the
`grokproject <https://pypi.org/project/grokproject/>`_ package
(e.g. via ``pip install grokproject``) and then create a new project
area by calling the ``grokproject`` script like so::

  $ grokproject MyProject
  ... many lines of output here

This will create a project area in ``MyProject`` as well as download
and install grok.

You can also get grok from GitHub::

  git clone git@github.com:zopefoundation/grok.git

Then follow the instructions of ``INSTALL.txt``.

CHANGES
*******

4.0 (2023-07-12)
================

- Add support for Python 3.7, 3.8, 3.9, 3.10, 3.11.

- Drop support for Python 2.7, 3.4, 3.5, 3.6.

- Fix tests to be able to run with ``zope.component >= 5``.


3.0.1 (2018-01-12)
==================

- Rearrange tests such that Travis CI can pick up all functional tests too.

3.0.0 (2018-01-05)
==================

- Python 3 compatibility.

2.3 (2017-08-11)
================

- Introduce IntId index that is more optimized to index values by their int ids.

2.2.1 (2016-01-29)
==================

- Update tests.

2.2 (2015-11-20)
================

- Introduce Datetime index that's more optimized for index datetime objects.
  Please note the index uses seconds-resolution (the integer timestamp
  representing the datetime's value).

2.1 (2015-06-11)
================

- Make possible to install a catalog in a site on a different event
  than ``IObjectAddedEvent`` using the ``grokcore.site.install_on``
  directive.

2.0 (2013-05-07)
================

- Rename IIndexDefinition and IndexDefinition into IAttributeIndexDefinition
  and AtributeIndexDefinition respectively. This is used for the current
  index "classes" and allow for setup() magic for attribute indexes when
  creating new catalogs.

  This allows for IIndexDefinition and IndexDefinition to be used for
  simpler catalog index definitions where no Grok magic is applied when
  creating catalogs.

1.0 (2012-05-01)
================

* Initial fork from Grok.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/grokcore.catalog",
    "name": "grokcore.catalog",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Grok Team",
    "author_email": "zope-dev@zope.dev",
    "download_url": "https://files.pythonhosted.org/packages/8f/17/d3a28124fcde2852e2abf1957697e6e5a2b9e69a6bd4a359823ac5668760/grokcore.catalog-4.0.tar.gz",
    "platform": null,
    "description": "Grok\n****\n\nWhat is grok?\n=============\n\nGrok is a smashing web framework based on `Zope Toolkit`_ technology.\n\n.. _`Zope Toolkit`: http://docs.zope.org/zopetoolkit\n\nGrok uses the Component Architecture and builds on Zope concepts like\ncontent objects (models), views, and adapters.  Its simplicity lies in\nusing **convention over configuration** and **sensible defaults** when\nwiring components together.  That means neither a configuration\nlanguage like ZCML nor a lot of repetition are needed to create a web\napplication with grok.\n\nYou can find out much more about Grok at our http://grok.zope.org\nwebsite.\n\nWho is grok?\n============\n\nGrok is a friendly caveman from the Stone Age.  He has a big club that\nhe hunts mammoths with.  He will also use this club to smash anything\nhe doesn't like.\n\n\"ME GROK SMASH ZCML!\"\n\nGetting grok\n============\n\nThe easiest way to get started with grok is to install the\n`grokproject <https://pypi.org/project/grokproject/>`_ package\n(e.g. via ``pip install grokproject``) and then create a new project\narea by calling the ``grokproject`` script like so::\n\n  $ grokproject MyProject\n  ... many lines of output here\n\nThis will create a project area in ``MyProject`` as well as download\nand install grok.\n\nYou can also get grok from GitHub::\n\n  git clone git@github.com:zopefoundation/grok.git\n\nThen follow the instructions of ``INSTALL.txt``.\n\nCHANGES\n*******\n\n4.0 (2023-07-12)\n================\n\n- Add support for Python 3.7, 3.8, 3.9, 3.10, 3.11.\n\n- Drop support for Python 2.7, 3.4, 3.5, 3.6.\n\n- Fix tests to be able to run with ``zope.component >= 5``.\n\n\n3.0.1 (2018-01-12)\n==================\n\n- Rearrange tests such that Travis CI can pick up all functional tests too.\n\n3.0.0 (2018-01-05)\n==================\n\n- Python 3 compatibility.\n\n2.3 (2017-08-11)\n================\n\n- Introduce IntId index that is more optimized to index values by their int ids.\n\n2.2.1 (2016-01-29)\n==================\n\n- Update tests.\n\n2.2 (2015-11-20)\n================\n\n- Introduce Datetime index that's more optimized for index datetime objects.\n  Please note the index uses seconds-resolution (the integer timestamp\n  representing the datetime's value).\n\n2.1 (2015-06-11)\n================\n\n- Make possible to install a catalog in a site on a different event\n  than ``IObjectAddedEvent`` using the ``grokcore.site.install_on``\n  directive.\n\n2.0 (2013-05-07)\n================\n\n- Rename IIndexDefinition and IndexDefinition into IAttributeIndexDefinition\n  and AtributeIndexDefinition respectively. This is used for the current\n  index \"classes\" and allow for setup() magic for attribute indexes when\n  creating new catalogs.\n\n  This allows for IIndexDefinition and IndexDefinition to be used for\n  simpler catalog index definitions where no Grok magic is applied when\n  creating catalogs.\n\n1.0 (2012-05-01)\n================\n\n* Initial fork from Grok.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Grok-like configuration for catalog and indexes",
    "version": "4.0",
    "project_urls": {
        "Homepage": "https://github.com/zopefoundation/grokcore.catalog"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9566503b85139c4c8dba98a55adf2d40d3f545ec3062ef0a0c640a565a67792",
                "md5": "c8f28c030d2a15a1c2067e1544e576ac",
                "sha256": "bcf26b0bcae81857cd94d34878007238dbc15a6cdbeb16e0d2945025f0f2c0ae"
            },
            "downloads": -1,
            "filename": "grokcore.catalog-4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c8f28c030d2a15a1c2067e1544e576ac",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 33447,
            "upload_time": "2023-07-12T07:30:32",
            "upload_time_iso_8601": "2023-07-12T07:30:32.318327Z",
            "url": "https://files.pythonhosted.org/packages/d9/56/6503b85139c4c8dba98a55adf2d40d3f545ec3062ef0a0c640a565a67792/grokcore.catalog-4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f17d3a28124fcde2852e2abf1957697e6e5a2b9e69a6bd4a359823ac5668760",
                "md5": "ca4ad8be27b74be4179d4f4931813b4e",
                "sha256": "5a4ff910a982731ead1bc277b069ace9c23034d0d1d3303ccda36aaf4a971610"
            },
            "downloads": -1,
            "filename": "grokcore.catalog-4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ca4ad8be27b74be4179d4f4931813b4e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 19717,
            "upload_time": "2023-07-12T07:30:34",
            "upload_time_iso_8601": "2023-07-12T07:30:34.194304Z",
            "url": "https://files.pythonhosted.org/packages/8f/17/d3a28124fcde2852e2abf1957697e6e5a2b9e69a6bd4a359823ac5668760/grokcore.catalog-4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-12 07:30:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "grokcore.catalog",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "grokcore.catalog"
}
        
Elapsed time: 0.09875s