smilestats


Namesmilestats JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryA package to calculate molecule statistics by their smile encoding.
upload_time2024-12-08 12:22:36
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords smiles cheminformatics chemistry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # smilestats

This is a small library that provides functions to calculate certain molecule features using the [SMILES](http://opensmiles.org/) encoding. The library uses the pysmiles package to read molecules encoded in SMILES as graphs.

# Installation

Requirements are Python 3.8 or higher version. To install the package from PyPI, run this command:

```bash
pip install smilestats
```

# Example

```python
from smilestats import aromatic_ring_count

print(aromatic_ring_count('Cc1cc(O)ccc1O'))
# 1 
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "smilestats",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "SMILES, cheminformatics, chemistry",
    "author": null,
    "author_email": "Barkov Mikhail <mik.bar@tutamail.com>",
    "download_url": "https://files.pythonhosted.org/packages/0d/58/a1ea0312c7f93382efbd5500691a287bd9cfb12d422d0b7613a35d77888c/smilestats-0.1.0.tar.gz",
    "platform": null,
    "description": "# smilestats\n\nThis is a small library that provides functions to calculate certain molecule features using the [SMILES](http://opensmiles.org/) encoding. The library uses the pysmiles package to read molecules encoded in SMILES as graphs.\n\n# Installation\n\nRequirements are Python 3.8 or higher version. To install the package from PyPI, run this command:\n\n```bash\npip install smilestats\n```\n\n# Example\n\n```python\nfrom smilestats import aromatic_ring_count\n\nprint(aromatic_ring_count('Cc1cc(O)ccc1O'))\n# 1 \n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A package to calculate molecule statistics by their smile encoding.",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/MikBark/smilestats"
    },
    "split_keywords": [
        "smiles",
        " cheminformatics",
        " chemistry"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dd831d296fbf5b24febee5a7551ea5d08929d24ded123953f2812d4ad88bd7d",
                "md5": "ed215add7a84a87d8607b1577b391652",
                "sha256": "de4f73f24f9c0db0a78be3e609ecce81acc0b72377181fb47451c1ad31fff347"
            },
            "downloads": -1,
            "filename": "smilestats-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ed215add7a84a87d8607b1577b391652",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 6279,
            "upload_time": "2024-12-08T12:22:34",
            "upload_time_iso_8601": "2024-12-08T12:22:34.472787Z",
            "url": "https://files.pythonhosted.org/packages/8d/d8/31d296fbf5b24febee5a7551ea5d08929d24ded123953f2812d4ad88bd7d/smilestats-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d58a1ea0312c7f93382efbd5500691a287bd9cfb12d422d0b7613a35d77888c",
                "md5": "6a749613b19c08574d4b91858d252e27",
                "sha256": "b02135e06232e670d5fc42ac2415a73c9754c8c1340df08a4543ecd78224d23a"
            },
            "downloads": -1,
            "filename": "smilestats-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6a749613b19c08574d4b91858d252e27",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4350,
            "upload_time": "2024-12-08T12:22:36",
            "upload_time_iso_8601": "2024-12-08T12:22:36.074725Z",
            "url": "https://files.pythonhosted.org/packages/0d/58/a1ea0312c7f93382efbd5500691a287bd9cfb12d422d0b7613a35d77888c/smilestats-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-08 12:22:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MikBark",
    "github_project": "smilestats",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "smilestats"
}
        
Elapsed time: 0.46367s