{"id":15475363,"url":"https://github.com/dhellmann/wsme-experimentation","last_synced_at":"2025-07-27T03:33:58.218Z","repository":{"id":6179118,"uuid":"7409309","full_name":"dhellmann/wsme-experimentation","owner":"dhellmann","description":"sandbox for experimenting with wsme","archived":false,"fork":false,"pushed_at":"2013-01-02T20:14:04.000Z","size":160,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-07T03:36:53.523Z","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/dhellmann.png","metadata":{"files":{"readme":"README","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":"2013-01-02T16:04:12.000Z","updated_at":"2013-12-21T18:04:16.000Z","dependencies_parsed_at":"2022-09-09T02:51:29.649Z","dependency_job_id":null,"html_url":"https://github.com/dhellmann/wsme-experimentation","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dhellmann/wsme-experimentation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhellmann%2Fwsme-experimentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhellmann%2Fwsme-experimentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhellmann%2Fwsme-experimentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhellmann%2Fwsme-experimentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dhellmann","download_url":"https://codeload.github.com/dhellmann/wsme-experimentation/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhellmann%2Fwsme-experimentation/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267294180,"owners_count":24065343,"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-07-27T02:00:11.917Z","response_time":82,"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-02T03:11:43.856Z","updated_at":"2025-07-27T03:33:58.125Z","avatar_url":"https://github.com/dhellmann.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"WSME Experimentation\n====================\n\nThis repo contains some test files for experimenting with WSME and\nPecan. To use them, first run\n\n  $ python setup.py develop\n\nto install the dependencies and configure the test app.\n\nThen start the server in one window with\n\n  $ pecan serve config.py\n\nand run the client in another window with\n\n  $ python client.py\n\nThe output will look like\n  \n  HTTP GET Strings, using indexes\n  URL : http://127.0.0.1:8080/strings?input%5B1%5D=b\u0026input%5B0%5D=a\n  TEXT: u'[\"a\", \"b\"]'\n  JSON: [u'a', u'b']\n  \n  HTTP GET Pairs, using indexes\n  URL : http://127.0.0.1:8080/pairs?input%5B0%5D.right=A\u0026input%5B1%5D.right=B\u0026input%5B0%5D.left=a\u0026input%5B1%5D.left=b\n  TEXT: u'[{\"right\": \"A\", \"left\": \"a\"}, {\"right\": \"B\", \"left\": \"b\"}]'\n  JSON: [{u'right': u'A', u'left': u'a'}, {u'right': u'B', u'left': u'b'}]\n  \n  HTTP GET Strings, without indexes, one\n  URL : http://127.0.0.1:8080/strings?input=a\n  TEXT: u'[\"a\"]'\n  JSON: [u'a']\n  \n  HTTP GET Strings, without indexes, multiple\n  URL : http://127.0.0.1:8080/strings?input=a\u0026input=b\n  TEXT: u'[\"a\", \"b\"]'\n  JSON: [u'a', u'b']\n  \n  HTTP GET Strings, without indexes, multiple, list (BROKEN)\n  URL : http://127.0.0.1:8080/strings?input=b\n  TEXT: u'[\"b\"]'\n  JSON: [u'b']\n\n  HTTP GET Pairs, without indexes, separate lists\n  URL : http://127.0.0.1:8080/pairs?input.left=a\u0026input.left=b\u0026input.right=A\u0026input.right=B\n  TEXT: u'[{\"right\": \"A\", \"left\": \"a\"}, {\"right\": \"B\", \"left\": \"b\"}]'\n  JSON: [{u'right': u'A', u'left': u'a'}, {u'right': u'B', u'left': u'b'}]  \n\n  HTTP GET Pairs, without indexes, hand-encoded\n  URL : http://127.0.0.1:8080/pairs?input.left=a\u0026input.right=A\u0026input.left=b\u0026input.right=B\n  TEXT: u'[{\"right\": \"A\", \"left\": \"a\"}, {\"right\": \"B\", \"left\": \"b\"}]'\n  JSON: [{u'right': u'A', u'left': u'a'}, {u'right': u'B', u'left': u'b'}]\n  \n  HTTP GET Pairs, without indexes, tuples (BROKEN)\n  URL : http://127.0.0.1:8080/pairs?input.left=b\u0026input.right=B\n  TEXT: u'[{\"right\": \"B\", \"left\": \"b\"}]'\n  JSON: [{u'right': u'B', u'left': u'b'}]\n  \n  HTTP GET Pairs, without indexes, nested dicts (BROKEN)\n  URL : http://127.0.0.1:8080/pairs?input=right\u0026input=left\u0026input=right\u0026input=left\n  TEXT: u'{\"debuginfo\": null, \"faultcode\": \"Server\", \"faultstring\": \"__init__() takes exactly 1 argument (2 given)\"}'\n  JSON: {u'debuginfo': None, u'faultcode': u'Server', u'faultstring': u'__init__() takes exactly 1 argument (2 given)'}\n  \n  HTTP GET Pairs, without indexes, nested dicts, 2 (BROKEN)\n  URL : http://127.0.0.1:8080/pairs?input%5B1%5D=right\u0026input%5B1%5D=left\u0026input%5B0%5D=right\u0026input%5B0%5D=left\n  TEXT: u'{\"debuginfo\": null, \"faultcode\": \"Client\", \"faultstring\": \"Unknown argument: \\\\\"input[1], input[0]\\\\\"\"}'\n  JSON: {u'debuginfo': None, u'faultcode': u'Client', u'faultstring': u'Unknown argument: \"input[1], input[0]\"'}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhellmann%2Fwsme-experimentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdhellmann%2Fwsme-experimentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhellmann%2Fwsme-experimentation/lists"}