mathexp


Namemathexp JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/JWKennington/mathexp
SummaryMathematical Experiments
upload_time2024-03-04 03:13:13
maintainer
docs_urlNone
authorJ. W. Kennington
requires_python>=3.7, <4
license
keywords symbolic math combinatorics finite groups
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # MATHematical EXPeriments: `mathexp`

The `mathexp` repo contains a general set symbolic expression utilities, mostly for extending the capabilities of `sympy`. The repo also contains a set of executable scripts for performing various mathematical experiments. Caveat lector.

## Installation

```bash
pip install mathexp
```

## Sample Usage

### Working with integer partitions

```python
from maths.comb import partition

partition.from_str('3+2+1')
>> > IntegerPartition([3, 2, 1])
```

More documentation to come.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JWKennington/mathexp",
    "name": "mathexp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7, <4",
    "maintainer_email": "",
    "keywords": "symbolic math,combinatorics,finite groups",
    "author": "J. W. Kennington",
    "author_email": "jameswkennington@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/87/a3/005481584c238b147781f4780f5253400677ef2999eabd011a646ec2deb6/mathexp-0.0.2.tar.gz",
    "platform": null,
    "description": "# MATHematical EXPeriments: `mathexp`\n\nThe `mathexp` repo contains a general set symbolic expression utilities, mostly for extending the capabilities of `sympy`. The repo also contains a set of executable scripts for performing various mathematical experiments. Caveat lector.\n\n## Installation\n\n```bash\npip install mathexp\n```\n\n## Sample Usage\n\n### Working with integer partitions\n\n```python\nfrom maths.comb import partition\n\npartition.from_str('3+2+1')\n>> > IntegerPartition([3, 2, 1])\n```\n\nMore documentation to come.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Mathematical Experiments",
    "version": "0.0.2",
    "project_urls": {
        "Bug Reports": "https://github.com/JWKennington/mathexp/issues",
        "Documentation": "https://mathexp.readthedocs.io/en/latest/",
        "Funding": "https://www.buymeacoffee.com/locallytrivial",
        "Homepage": "https://github.com/JWKennington/mathexp",
        "Source": "https://github.com/JWKennington/mathexp"
    },
    "split_keywords": [
        "symbolic math",
        "combinatorics",
        "finite groups"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87a3005481584c238b147781f4780f5253400677ef2999eabd011a646ec2deb6",
                "md5": "36625157dce0faafee84ee23df26bec9",
                "sha256": "001acc7ff4fd4b507aacbc746ad13eeaa291a9aab83b4e07462109dc903e3a2e"
            },
            "downloads": -1,
            "filename": "mathexp-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "36625157dce0faafee84ee23df26bec9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, <4",
            "size": 2851,
            "upload_time": "2024-03-04T03:13:13",
            "upload_time_iso_8601": "2024-03-04T03:13:13.500915Z",
            "url": "https://files.pythonhosted.org/packages/87/a3/005481584c238b147781f4780f5253400677ef2999eabd011a646ec2deb6/mathexp-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-04 03:13:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JWKennington",
    "github_project": "mathexp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mathexp"
}
        
Elapsed time: 0.21422s