{"id":16650010,"url":"https://github.com/mosquito/fast-json","last_synced_at":"2026-04-12T08:33:30.410Z","repository":{"id":66117661,"uuid":"123422493","full_name":"mosquito/fast-json","owner":"mosquito","description":"Fast JSON serialization and deserialization with ujson","archived":false,"fork":false,"pushed_at":"2018-12-12T16:43:45.000Z","size":9,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-19T06:46:37.989Z","etag":null,"topics":["json","python3","ujson"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mosquito.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-03-01T10:53:32.000Z","updated_at":"2022-04-02T16:22:54.000Z","dependencies_parsed_at":"2023-02-20T19:45:36.713Z","dependency_job_id":null,"html_url":"https://github.com/mosquito/fast-json","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mosquito%2Ffast-json","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mosquito%2Ffast-json/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mosquito%2Ffast-json/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mosquito%2Ffast-json/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mosquito","download_url":"https://codeload.github.com/mosquito/fast-json/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243230068,"owners_count":20257640,"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":["json","python3","ujson"],"created_at":"2024-10-12T09:14:51.317Z","updated_at":"2025-12-24T08:45:50.905Z","avatar_url":"https://github.com/mosquito.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"fast-json\n=========\n\nCombines best parts of json and ujson for fast serialization.\n\n.. code-block:: python\n\n    import fast_json\n\n    print(\n        fast_json.dumps({\n            \"foo\": \"bar\",\n             \"now\": datetime.datetime.now()\n        })\n    )\n\nSerializing custom type\n~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code-block:: python\n\n    import fast_json\n    from collections import namedtuple\n\n\n    MyType = namedtuple(\"MyType\", [\"name\", \"value\"])\n\n\n    @fast_json.convert.register(MyType)\n    def _(value):\n        return \"name={0.name} value={0.value}\".format(value)\n\n\n    print(\n        fast_json.dumps({\n            \"one\": MyType(name=\"foo\", value=\"bar\")\n        })\n    )\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmosquito%2Ffast-json","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmosquito%2Ffast-json","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmosquito%2Ffast-json/lists"}