{"id":26794709,"url":"https://github.com/eqs/pyof-prototype","last_synced_at":"2026-05-03T19:31:20.022Z","repository":{"id":117962086,"uuid":"255371385","full_name":"eqs/pyof-prototype","owner":"eqs","description":"A prototype of Python binding of openFrameworks","archived":false,"fork":false,"pushed_at":"2020-04-14T14:42:26.000Z","size":13418,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T17:34:15.136Z","etag":null,"topics":["creative-coding","openframeworks","python"],"latest_commit_sha":null,"homepage":null,"language":"C++","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/eqs.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-13T15:48:34.000Z","updated_at":"2020-04-15T16:24:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"483effa0-8f6c-40aa-9617-11744a46d386","html_url":"https://github.com/eqs/pyof-prototype","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eqs/pyof-prototype","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eqs%2Fpyof-prototype","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eqs%2Fpyof-prototype/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eqs%2Fpyof-prototype/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eqs%2Fpyof-prototype/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eqs","download_url":"https://codeload.github.com/eqs/pyof-prototype/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eqs%2Fpyof-prototype/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32582472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["creative-coding","openframeworks","python"],"created_at":"2025-03-29T17:28:37.032Z","updated_at":"2026-05-03T19:31:20.016Z","avatar_url":"https://github.com/eqs.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Prototype of openFrameworks for Python\n\n* **This repository is not an official openFrameworks repository.**\n* Only part of functions of openFrameworks are implemented.\n\n## Link\n\n* (in Japanese) openFrameworksのアプリケーションをPythonのライブラリとして呼び出す実験｜eqs｜note\n  * https://note.com/eqs/n/n0edb73ac1383\n* guoguofish/pyOF: Python binding for openFrameworks\n  * https://github.com/guoguofish/pyOF\n\n## Examples\n\n### `example1.py`: Simple Animation\n\n![ex1](./fig/pyof_example1.gif)\n\n```python\nimport sys\nimport numpy as np\n\nsys.path.append('../bin')\nimport pyof as of\n\n\nclass ofApp(of.ofPyBaseApp):\n    def setup(self):\n        of.ofSetWindowTitle('Hello, openFrameworks!')\n        self.x = 0.0\n        self.y = 0.0\n\n    def update(self):\n        t = of.ofGetFrameNum()\n        self.x = 200 + 100 * np.cos(t * 0.1)\n        self.y = 200 + 100 * np.sin(t * 0.1)\n\n    def draw(self):\n        of.ofDrawCircle(self.x, self.y, 40)\n\n\nif __name__ == '__main__':\n    app = ofApp()\n    app.run(400, 400, of.OF_WINDOW)\n```\n\n### `example2.py`: Numpy SIMD operations and Scipy Functions\n\n![ex2](./fig/pyof_example2.gif)\n\n\n### `example3.py`: Machine Learning Package (GPy)\n\n![ex3](./fig/pyof_example3.gif)\n\nGPy: https://sheffieldml.github.io/GPy/\n\n\n## Usage\n\n### Requirements\n\n* Visual Studio 2017\n* oF v0.11.0\n* Python 3.7\n* pybind11 2.4.3\n\n### Build `pyof`\n\n1. Set a path to your python to env `PYTHONPATH`\n2. Put this project into `\u003coF_root\u003e/apps/myApps`\n3. Open `pyof.sln` and run build\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feqs%2Fpyof-prototype","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feqs%2Fpyof-prototype","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feqs%2Fpyof-prototype/lists"}