{"id":15831663,"url":"https://github.com/cleverdevil/nutcracker","last_synced_at":"2025-09-08T18:36:01.608Z","repository":{"id":15039037,"uuid":"17764941","full_name":"cleverdevil/nutcracker","owner":"cleverdevil","description":"Merge several Pecan or WSGI applications into a single app.","archived":false,"fork":false,"pushed_at":"2014-03-15T00:42:02.000Z","size":100,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-08T18:36:01.318Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/cleverdevil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-15T00:41:38.000Z","updated_at":"2014-03-23T11:29:56.000Z","dependencies_parsed_at":"2022-09-01T05:22:45.861Z","dependency_job_id":null,"html_url":"https://github.com/cleverdevil/nutcracker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cleverdevil/nutcracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleverdevil%2Fnutcracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleverdevil%2Fnutcracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleverdevil%2Fnutcracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleverdevil%2Fnutcracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cleverdevil","download_url":"https://codeload.github.com/cleverdevil/nutcracker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cleverdevil%2Fnutcracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274229373,"owners_count":25245188,"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","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-10-05T12:05:55.140Z","updated_at":"2025-09-08T18:36:01.585Z","avatar_url":"https://github.com/cleverdevil.png","language":"Python","readme":"# Nutcracker\n\nNutcracker allows you to easily create a single WSGI application out of several\n[Pecan](http://pecanpy.org) applications or WSGI applications, in a declarative\nstyle familiar to Pecan developers.\n\n## Example\n\nThe following application will bind four applications together into a single\napplication. \n\n```python\nfrom nutcracker import Nutcracker, PecanAppRef, WSGIAppRef\nfrom my_wsgi_app import app\n\n\nclass MyNutcracker(Nutcracker):\n    __root__ = PecanAppRef('/path/to/pecanapp/config.py')\n    forums = PecanAppRef('/path/to/pecan/forumapp/config.py')\n    blog = PecanAppRef('/path/to/pecan/blogapp/config.py')\n    other = WSGIAppRef(app)\n\n\nfrom wsgiref.simple_server import make_server\nhttpd = make_server('', 8123, MyNutcracker())\nhttpd.serve_forever()\n```\n\n## Notes\n\nNutcracker is based upon Alfredo Deza's \n[pecan-mount](http://github.com/alfredodeza/pecan-mount), but features an API\nmore acceptable to Pecan developers, less documentation, fewer features, and a\ncomplete gaping void when it comes to tests. Hooray!\n\nMy goal is to use this project as a place to play around until a feature worthy\nof merging into pecan core emerges. Please help. Please.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleverdevil%2Fnutcracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcleverdevil%2Fnutcracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleverdevil%2Fnutcracker/lists"}