{"id":13725454,"url":"https://github.com/Pylons/pyramid-cookiecutter-starter","last_synced_at":"2025-05-07T20:32:36.074Z","repository":{"id":45363894,"uuid":"60290232","full_name":"Pylons/pyramid-cookiecutter-starter","owner":"Pylons","description":"A Cookiecutter (project template) for creating a Pyramid starter project with choices for template language (Jinja2, Chameleon, or Mako), persistent backend (none, SQLAlchemy with SQLite, or ZODB), and mapping of URLs to routes (URL dispatch or traversal)","archived":false,"fork":false,"pushed_at":"2024-04-21T12:31:00.000Z","size":220,"stargazers_count":93,"open_issues_count":4,"forks_count":49,"subscribers_count":15,"default_branch":"latest","last_synced_at":"2024-05-02T00:42:08.034Z","etag":null,"topics":["chameleon","cookiecutter-template","jinja2","mako","pyramid","sqlalchemy","sqlite","traversal","url-dispatch","zodb"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Pylons.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.txt","contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-02T19:07:22.000Z","updated_at":"2024-08-03T01:28:26.224Z","dependencies_parsed_at":"2024-08-03T01:28:23.289Z","dependency_job_id":"43def41c-88f8-4cf7-9fb6-a968447c2f5e","html_url":"https://github.com/Pylons/pyramid-cookiecutter-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pylons%2Fpyramid-cookiecutter-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pylons%2Fpyramid-cookiecutter-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pylons%2Fpyramid-cookiecutter-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pylons%2Fpyramid-cookiecutter-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pylons","download_url":"https://codeload.github.com/Pylons/pyramid-cookiecutter-starter/tar.gz/refs/heads/latest","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224645381,"owners_count":17346139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chameleon","cookiecutter-template","jinja2","mako","pyramid","sqlalchemy","sqlite","traversal","url-dispatch","zodb"],"created_at":"2024-08-03T01:02:23.914Z","updated_at":"2024-11-14T15:31:20.787Z","avatar_url":"https://github.com/Pylons.png","language":"Python","funding_links":[],"categories":["Python","HarmonyOS"],"sub_categories":["Windows Manager"],"readme":"============================\npyramid-cookiecutter-starter\n============================\n\n.. image:: https://github.com/Pylons/pyramid-cookiecutter-starter/workflows/Build%20and%20test/badge.svg?branch=latest\n    :target: https://github.com/Pylons/pyramid-cookiecutter-starter/actions?query=branch%3Alatest\n    :alt: Latest Branch Status\n\nA Cookiecutter (project template) for creating a Pyramid starter project.\n\nCustomizable options upon install include choice of:\n\n*   template language (Jinja2, Chameleon, or Mako)\n*   persistent backend (none, SQLAlchemy with SQLite, or ZODB)\n*   mapping of URLs to routes (if the selected persistent backend is \"none\" or \"sqlalchemy\" then URL dispatch, or if \"zodb\" then traversal)\n\nRequirements\n------------\n\n*   Python 3.6+\n*   `cookiecutter \u003chttps://cookiecutter.readthedocs.io/en/latest/installation.html\u003e`_\n\nVersions\n--------\n\nThis cookiecutter has several branches to support new features in Pyramid or avoid incompatibilities.\n\n*   ``latest`` aligns with the latest stable release of Pyramid, and is the default branch on GitHub.\n*   ``main`` aligns with the ``main`` branch of Pyramid, and is where development takes place.\n*   ``x.y-branch`` aligns with the ``x.y-branch`` branch of Pyramid.\n\n\nUsage\n-----\n\n#.  Generate a Pyramid project, following the prompts from the command.\n\n    .. code-block:: bash\n\n        $ cookiecutter gh:Pylons/pyramid-cookiecutter-starter\n\n    Optionally append a specific branch checkout to the command:\n\n    .. code-block:: bash\n\n        $ cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout main\n\n#.  Create a virtual environment, upgrade packaging tools, and install your new project and its dependencies.\n    These steps are output to the console and are written to the file in ``\u003cmy_project\u003e/README.txt`` by the cookiecutter, and are slightly different for Windows.\n\n    .. code-block:: bash\n\n        # Change directory into your newly created project if not already there. Your\n        # current directory should be the same as this README.txt file and setup.py.\n        $ cd \u003cmy_project\u003e\n        # Create a Python virtual environment, if not already created.\n        $ python3 -m venv env\n        # Upgrade packaging tools.\n        $ env/bin/pip install --upgrade pip setuptools\n        # Install the project in editable mode with its testing requirements.\n        $ env/bin/pip install -e \".[testing]\"\n        # The previous step installs the latest stable release of Pyramid.\n        # Optionally install a specific version of Pyramid.\n        # For example, the unreleased version of the main branch:\n        env/bin/pip install -e git+https://github.com/pylons/pyramid.git@main#egg=pyramid\n\n#.  If you selected ``sqlalchemy`` as a backend, there will be additional steps in the output and ``README.txt``.\n\n#.  Run your project's tests.\n\n    .. code-block:: bash\n\n        $ env/bin/pytest\n\n#.  Run your project.\n\n    .. code-block:: bash\n\n        $ env/bin/pserve development.ini\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPylons%2Fpyramid-cookiecutter-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPylons%2Fpyramid-cookiecutter-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPylons%2Fpyramid-cookiecutter-starter/lists"}