{"id":28569675,"url":"https://github.com/abilian/cython-plus","last_synced_at":"2026-03-10T12:36:03.559Z","repository":{"id":145110678,"uuid":"383389294","full_name":"abilian/cython-plus","owner":"abilian","description":"Multi-core concurrent programming in Python. (Friendly) fork of Cython.","archived":false,"fork":false,"pushed_at":"2022-11-14T15:13:31.000Z","size":52508,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-08-16T16:18:26.127Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/abilian.png","metadata":{"files":{"readme":"README-Cython.rst","changelog":"CHANGES.rst","contributing":"docs/CONTRIBUTING.rst","funding":".github/FUNDING.yml","license":"COPYING.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":"scoder","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":"pypi/Cython","community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2021-07-06T08:04:26.000Z","updated_at":"2024-07-11T13:27:03.000Z","dependencies_parsed_at":"2023-04-16T07:15:44.563Z","dependency_job_id":null,"html_url":"https://github.com/abilian/cython-plus","commit_stats":null,"previous_names":["abilian/cythonplus"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abilian/cython-plus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fcython-plus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fcython-plus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fcython-plus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fcython-plus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abilian","download_url":"https://codeload.github.com/abilian/cython-plus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fcython-plus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30333580,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-06-10T17:15:25.803Z","updated_at":"2026-03-10T12:36:03.535Z","avatar_url":"https://github.com/abilian.png","language":"Python","funding_links":["https://github.com/sponsors/scoder","https://tidelift.com/funding/github/pypi/Cython","https://tidelift.com/subscription/pkg/pypi-cython"],"categories":[],"sub_categories":[],"readme":"(Original Cython README).\n\n\nWelcome to Cython!\n==================\n\nCython is a language that makes writing C extensions for\nPython as easy as Python itself.  Cython is based on\nPyrex, but supports more cutting edge functionality and\noptimizations.\n\nThe Cython language is very close to the Python language, but Cython\nadditionally supports calling C functions and declaring C types on variables\nand class attributes.  This allows the compiler to generate very efficient C\ncode from Cython code.\n\nThis makes Cython the ideal language for wrapping external C libraries, and\nfor fast C modules that speed up the execution of Python code.\n\n* Official website: https://cython.org/\n* Documentation: http://docs.cython.org/\n* Github repository: https://github.com/cython/cython\n* Wiki: https://github.com/cython/cython/wiki\n\nYou can **support the Cython project** via\n`Github Sponsors \u003chttps://github.com/users/scoder/sponsorship\u003e`_ or\n`Tidelift \u003chttps://tidelift.com/subscription/pkg/pypi-cython\u003e`_.\n\n\nInstallation:\n-------------\n\nIf you already have a C compiler, just do::\n\n   pip install Cython\n\notherwise, see `the installation page \u003chttp://docs.cython.org/en/latest/src/quickstart/install.html\u003e`_.\n\n\nLicense:\n--------\n\nThe original Pyrex program was licensed \"free of restrictions\" (see below).\nCython itself is licensed under the permissive **Apache License**.\n\nSee `LICENSE.txt \u003chttps://github.com/cython/cython/blob/master/LICENSE.txt\u003e`_.\n\n\nContributing:\n-------------\n\nWant to contribute to the Cython project?\nHere is some `help to get you started \u003chttps://github.com/cython/cython/blob/master/docs/CONTRIBUTING.rst\u003e`_.\n\nWe are currently building the next great Cython edition:\n`Cython 3.0 \u003chttps://github.com/cython/cython/milestone/58\u003e`_.\nYou can help us make the life of Python 3.x users easier.\n\n\nGet the full source history:\n----------------------------\n\nNote that Cython used to ship the full version control repository in its source\ndistribution, but no longer does so due to space constraints.  To get the\nfull source history from a downloaded source archive, make sure you have git\ninstalled, then step into the base directory of the Cython source distribution\nand type::\n\n    make repo\n\n\nThe following is from Pyrex:\n------------------------------------------------------\nThis is a development version of Pyrex, a language\nfor writing Python extension modules.\n\nFor more info, see:\n\n* Doc/About.html for a description of the language\n* INSTALL.txt    for installation instructions\n* USAGE.txt      for usage instructions\n* Demos          for usage examples\n\nComments, suggestions, bug reports, etc. are\nwelcome!\n\nCopyright stuff: Pyrex is free of restrictions. You\nmay use, redistribute, modify and distribute modified\nversions.\n\nThe latest version of Pyrex can be found `here \u003chttp://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/\u003e`_.\n\n| Greg Ewing, Computer Science Dept\n| University of Canterbury\n| Christchurch, New Zealand\n\n A citizen of NewZealandCorp, a wholly-owned subsidiary of USA Inc.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabilian%2Fcython-plus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabilian%2Fcython-plus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabilian%2Fcython-plus/lists"}