{"id":17360660,"url":"https://github.com/certik/sympy-oldcore","last_synced_at":"2026-02-08T10:31:24.790Z","repository":{"id":457449,"uuid":"81361","full_name":"certik/sympy-oldcore","owner":"certik","description":null,"archived":false,"fork":false,"pushed_at":"2008-11-26T17:42:34.000Z","size":4676,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-24T17:29:27.375Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"miliqi/laravel-curl","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/certik.png","metadata":{"files":{"readme":"README","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}},"created_at":"2008-11-26T17:41:30.000Z","updated_at":"2025-04-10T23:20:49.000Z","dependencies_parsed_at":"2022-07-04T17:31:51.265Z","dependency_job_id":null,"html_url":"https://github.com/certik/sympy-oldcore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/certik/sympy-oldcore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/certik%2Fsympy-oldcore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/certik%2Fsympy-oldcore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/certik%2Fsympy-oldcore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/certik%2Fsympy-oldcore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/certik","download_url":"https://codeload.github.com/certik/sympy-oldcore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/certik%2Fsympy-oldcore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29227729,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T09:43:19.170Z","status":"ssl_error","status_checked_at":"2026-02-08T09:42:55.556Z","response_time":57,"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":"2024-10-15T19:27:13.165Z","updated_at":"2026-02-08T10:31:24.773Z","avatar_url":"https://github.com/certik.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"SymPy\n=====\n\nA Python library for symbolic mathematics.\n\nhttp://code.google.com/p/sympy/\n\nAll people who contributed to SymPy by sending at least a patch or more (in\nthe order of the date of their first contribution): \n    Ondrej Certik \u003condrej@certik.cz\u003e\n    Fabian Seoane \u003cfabian@fseoane.net\u003e\n    Jurjen N.E. Bos \u003cjnebos@gmail.com\u003e\n    Mateusz Paprocki \u003cmattpap@gmail.com\u003e \n    Marc-Etienne M.Leveille \u003cprotonyc@gmail.com\u003e\n    Brian Jorgensen \u003cbrian.jorgensen@gmail.com\u003e\n    Jason Gedge \u003cinferno1386@gmail.com\u003e\n    Robert Schwarz \u003clethargo@googlemail.com\u003e\n    Pearu Peterson \u003cpearu.peterson@gmail.com\u003e\n    Fredrik Johansson \u003cfredrik.johansson@gmail.com\u003e\n    Chris Wu \u003cchris.wu@gmail.com\u003e\n    Kirill Smelkov \u003ckirr@landau.phys.spbu.ru\u003e\n    Ulrich Hecht \u003culrich.hecht@gmail.com\u003e\n\nAnd many more people helped on the mailinglist, reported bugs etc.\n\nLicense: New BSD License (see the LICENSE file for details)\ncovers all files in the sympy repository unless stated otherwise.\n\n0. Download\n-----------\n\nsvn checkout http://sympy.googlecode.com/svn/trunk/ sympy\n\nFor other options (tarballs, debs, etc.), see the web page of SymPy.\n\n\n1. Documentation and usage\n--------------------------\n\nEverything is at:\n\nhttp://code.google.com/p/sympy/wiki/Documentation\n\nIf you don't want to read that, here is a short usage:\n\nFrom this directory, start python and:\n\u003e\u003e\u003e from sympy import Symbol, cos\n\u003e\u003e\u003e x=Symbol('x')\n\u003e\u003e\u003e e=1/cos(x)\n\u003e\u003e\u003e print e.series(x,10)\n1 + (1/2)*x**2 + (5/24)*x**4 + (61/720)*x**6 + (277/8064)*x**8 + O(x**10)\n\nSymPy also comes with a console that is a simple wrapper around the\nclassic python console (or ipython when available) that loads the\nsympy namespace and defines three symbols: x, y, z.\n\nTo start it issue:\n\n  ./bin/isympy\n\nfrom this directory if SymPy is not installed or simply\n\n  isympy\n\nif SymPy is installed somewhere in your PATH.\n\n\n3. Tests\n--------\n\nto execute tests, run\n\n./setup.py test\n\nin the current directory.  You need to have py.test installed.\n\n\n4. How to install py.test\n-------------------------\n\nIf you use Debian, just install the python-codespeak-lib. Otherwise:\n\nExecute in your home directory:\n\nsvn co http://codespeak.net/svn/py/dist py-dist\n\nThis will create a \"py-dist\" directory in you home dir. Add this line to\nyour .bashrc:\n\neval `python ~/py-dist/py/env.py`\n\nNow you can call \"py.test\" from anywhere.\n\n5. Clean\n--------\n\nTo clean everything (thus getting the same tree as in the svn):\n\n./setup.py clean\n\n\n6. Brief History\n----------------\n\nSymPy was started by Ondrej Certik in 2005, he wrote some code during the\nsummer, then he wrote some more code during the summer 2006. In February 2007,\nFabian Seoane joined the project and helped fixed many things, contributed\ndocumentation and made it alive again. 5 students improved SymPy incredibly\nduring the summer 2007 as part of the Google Summer of Code. Pearu Peterson\njoined the development during the summer 2007 and he has made SymPy much more\ncompetitive by rewriting the core from scratch, that has made it from 10x to\n100x faster. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcertik%2Fsympy-oldcore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcertik%2Fsympy-oldcore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcertik%2Fsympy-oldcore/lists"}