pysmiles


Namepysmiles JSON
Version 1.1.2 PyPI version JSON
download
home_pagehttps://github.com/pckroon/pysmiles
SummaryA lightweight SMILES reader and writer
upload_time2023-09-19 10:55:09
maintainer
docs_urlNone
authorP C Kroon
requires_python
licenseApache 2.0
keywords smiles cheminformatics chemistry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            [![Build Status](https://travis-ci.org/pckroon/pysmiles.svg?branch=master)](https://travis-ci.org/pckroon/pysmiles)
[![Coverage Status](https://coveralls.io/repos/github/pckroon/pysmiles/badge.svg?branch=master)](https://coveralls.io/github/pckroon/pysmiles?branch=master)

# pysmiles: The lightweight and pure-python SMILES reader and writer

This is a small project I started because I couldn't find any SMILES reader or
writer that was easy to install (read: Python only). Currently, the writer is
extremely basic, and although it should produce valid SMILES they won't be
pretty, but see also issue #17. The reader is in a better state, and should be usable.

SMILES strings are assumed to be as specified by the
[OpenSmiles standard][opensmiles].

## Molecules
Molecules are depicted as [Networkx][networkx] graphs. Atoms are the nodes of
the graph, and bonds are the edges. Nodes can have the following attributes:
- element: str. This describes the element of the atom. Defaults to '\*'
    meaning unknown.
- aromatic: bool. Whether the atom is part of an (anti)-aromatic system. 
    Defaults to False.
- isotope: float. The mass of the atom. Defaults to unknown.
- hcount: int. The number of implicit hydrogens attached to this atom.
    Defaults to 0.
- charge: int. The charge of this atom. Defaults to 0.
- class: int. The "class" of this atom. Defaults to 0.

Edges have the following attributes:
- order: Number. The bond order. 1.5 is used for aromatic bonds. Defaults to 1.

There is currently no way of specifying stereo chemical information, and this
is discarded upon reading. Somewhere in the future this will probably be
stored in the "stereo" attribute of nodes.

## Reading SMILES
The function `read_smiles(smiles, explicit_hydrogen=False,
zero_order_bonds=True, reinterpret_aromatic=True)` can be used to parse a
SMILES string. It should not be used to validate whether a string is a valid
SMILES string --- the function does very little validation whether your SMILES string makes chemical sense.
Edges in the created molecule will always have an 'order'
attribute. Nodes will have the relevant attributes in so far they are
specified. Atoms for which the element is not known (\*) will not have an
element attribute.
- `explicit_hydrogen` determines whether hydrogen atoms should be
    represented as explicit nodes in the created molecule, or implicit in the
    'hcount' attribute.
- `zero_order_bonds` determines whether zero-order bonds (.) in the SMILES
    string should result in edges in the produced molecule.
- `reinterpret_aromatic` determines whether aromaticity should be 
    reinterpreted, and determined from the constructed molecule, or whether
    the aromaticity specifications from the SMILES string (lower case 
    elements) should be taken as leading. If `True`, will also set bond orders 
    to 1 for bonds that are not part of an aromatic ring and have a bond order 
    of 1.5. If `False`, will create a molecule using *only* the information in 
    the SMILES string.

### Stereochemical information
Currently the library cannot handle stereochemical information, neither E/Z nor
R/S. Any stereochemical information that was in the SMILES string will be
*discarded* upon parsing. This means there will be no difference between
parsing *e.g.* `N[C@](Br)(O)C`, `N[C@@](Br)(O)C` and `NC(Br)(O)C`. Parsing
these *will result in the same molecule*. The same holds for *e.g.* `F/C=C/F`
and `FC=CF`. These will result in the same molecule.

Whenever stereochemical information is being discarded a warning will be
logged using the built-in `logging` module. If you want to disable all the
messages logged by `pysmiles` you can add the following snippet to your code,
without interfering with any logging by your own code:

```python
import logging
logging.getLogger('pysmiles').setLevel(logging.CRITICAL)  # Anything higher than warning
```


## Writing SMILES
The function `write_smiles(molecule, default_element='*', start=None)` can be
used to write SMILES strings from a molecule. The function does *not* check 
whether your molecule makes chemical sense. Instead, it writes a SMILES 
representation of the molecule you provided, and nothing else.
- `default_element` is the element to use for nodes that do not have an 
    'element' attribute.
- `start` is the key of the node where the depth first traversal should be 
    started. Something clever is done if not specified.

## Additional functions
In addition to these two core functions, four more functions are exposed that
can help in creating chemically relevant molecules with minimal work.

- `fill_valence(mol, respect_hcount=True, respect_bond_order=True,
                 max_bond_order=3)`
    This function will fill the valence of all atoms in your molecule by 
    incrementing the 'hcount' and, if specified, bond orders. Note that it does
    not use 'charge' attribute to find the correct valence.
    - `repect_hcount`: bool. Whether existing hcounts can be overwritten.
    - `respect_bond_order`: bool. Whether bond orders can be changed
    - `max_bond_order`: int. The maximum bond order that will be set.
- `add_explicit_hydrogens(mol)`
    This function transforms implicit hydrogens, specified by 'hcount' 
    attributes, to explicit nodes.
- `remove_explicit_hydrogens(mol)`
    This function does the inverse of `add_explicit_hydrogens`: it will remove
    explicit hydrogen nodes and add them to the relevant 'hcount' attributes.
- `correct_aromatic_rings(mol)`
    This function marks all (anti)-aromatic atoms in your molecule, and sets 
    all bonds between (anti)-aromatic atoms to order 1.5.
    It fills the valence of all atoms (see also `fill_valence`) before trying
    to figure our which atoms are aromatic. It works by first finding all 
    atoms that are in a ring. Next, for every atom in every ring it is checked
    whether the atoms are sp2 hybridized (note that this is a vague term. 
    Strictly speaking we check whether their element is something that *could*
    be aromatic, and whether they have 2 or 3 bonds.). Finally, the number of 
    electrons per ring is counted, and if this is even, the atoms in the ring
    are said to be aromatic.
    This function is the most fragile in the whole library, and I expect it to
    produce wrong answers in some cases. In particular for fused (aromatic)
    ring systems (such as indole) and rings with extracyclic heteroatoms
    (O=C1C=CC=C1). Buyer beware.

## Examples
### Reading
```python
from pysmiles import read_smiles

smiles = 'C1CC[13CH2]CC1C1CCCCC1'
mol = read_smiles(smiles)

print(mol.nodes(data='element'))
# [(0, 'C'),
#  (1, 'C'),
#  (2, 'C'),
#  (3, 'C'),
#  (4, 'C'),
#  (5, 'C'),
#  (6, 'C'),
#  (7, 'C'),
#  (8, 'C'),
#  (9, 'C'),
#  (10, 'C'),
#  (11, 'C')]
print(mol.nodes(data='hcount'))
# [(0, 2),
#  (1, 2),
#  (2, 2),
#  (3, 2),
#  (4, 2),
#  (5, 1),
#  (6, 1),
#  (7, 2),
#  (8, 2),
#  (9, 2),
#  (10, 2),
#  (11, 2)]

mol_with_H = read_smiles(smiles, explicit_hydrogen=True)
print(mol_with_H.nodes(data='element'))
# [(0, 'C'),
#  (1, 'C'),
#  (2, 'C'),
#  (3, 'C'),
#  (4, 'C'),
#  (5, 'C'),
#  (6, 'C'),
#  (7, 'C'),
#  (8, 'C'),
#  (9, 'C'),
#  (10, 'C'),
#  (11, 'C'),
#  (12, 'H'),
#  (13, 'H'),
#  (14, 'H'),
#  (15, 'H'),
#  (16, 'H'),
#  (17, 'H'),
#  (18, 'H'),
#  (19, 'H'),
#  (20, 'H'),
#  (21, 'H'),
#  (22, 'H'),
#  (23, 'H'),
#  (24, 'H'),
#  (25, 'H'),
#  (26, 'H'),
#  (27, 'H'),
#  (28, 'H'),
#  (29, 'H'),
#  (30, 'H'),
#  (31, 'H'),
#  (32, 'H'),
# (33, 'H')]
```

### Writing
```python
import networkx as nx
from pysmiles import write_smiles, fill_valence

mol = nx.Graph()
mol.add_edges_from([(0, 1), (1, 2), (1, 3), (3, 4), (1, 5), (3, 6)])
for idx, ele in enumerate('CCCCOCO'):
    mol.nodes[idx]['element'] = ele
mol.nodes[4]['charge'] = -1
mol.nodes[4]['hcount'] = 0
mol.edges[3, 6]['order'] = 2

print(write_smiles(mol))
# [O-]C(=O)C([C])([C])[C]
fill_valence(mol, respect_hcount=True)
print(write_smiles(mol))
# [O-]C(=O)C(C)(C)C
```

## Limitations
- The writer produces non-recommended SMILES strings (as per OpenSmiles).
- The writer is better described as a "serializer": if the graph provided
    doesn't make chemical sense the produced "SMILES" string will be an
    exact representation of that graph. Because of this, the SMILES string
    will be invalid though.
- `fill_valence` does not use 'charge' to find the correct valence.
- `correct_aromatic_rings` is fragile.
- There is currently no way of specifying stereo chemical information. The 
    parser can deal with it, but it will be discarded.
- It only processes SMILES. This might later be extended to e.g. InChi, SLN,
    SMARTS, etc.

## Requirements
- [networkx][networkx]

## Similar projects
There are more python projects that deal with SMILES, and I try to list at 
least some of them here. If yours is missing, feel free to open up a PR.
- [PySMILE](https://github.com/jhosmer/PySmile): A similar named project, 
    capable of encoding/decoding SMILE format objects. Doesn't deal with 
    SMILES.
- [RDKit](https://github.com/rdkit/rdkit): A collection of cheminformatics and 
    machine-learning software, capable of reading and writing SMILES, InChi, 
    and others.
- [OpenEye Chem toolkit](https://www.eyesopen.com/oechem-tk): The OpenEye 
    chemistry toolkit is a programming library for chemistry and 
    cheminformatics. It is capable of dealing with (canonical) SMILES and 
    InChi.

## License
PySmiles is distributed under the Apache 2.0 license.
    Copyright 2018 Peter C Kroon

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


[opensmiles]: http://opensmiles.org/
[networkx]: https://networkx.github.io/


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pckroon/pysmiles",
    "name": "pysmiles",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "SMILES cheminformatics chemistry",
    "author": "P C Kroon",
    "author_email": "p.c.kroon@rug.nl",
    "download_url": "https://files.pythonhosted.org/packages/31/05/09a00812763fdd7978bc08937817c9d1de1b45ae9fda99fea03ba39a2060/pysmiles-1.1.2.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://travis-ci.org/pckroon/pysmiles.svg?branch=master)](https://travis-ci.org/pckroon/pysmiles)\n[![Coverage Status](https://coveralls.io/repos/github/pckroon/pysmiles/badge.svg?branch=master)](https://coveralls.io/github/pckroon/pysmiles?branch=master)\n\n# pysmiles: The lightweight and pure-python SMILES reader and writer\n\nThis is a small project I started because I couldn't find any SMILES reader or\nwriter that was easy to install (read: Python only). Currently, the writer is\nextremely basic, and although it should produce valid SMILES they won't be\npretty, but see also issue #17. The reader is in a better state, and should be usable.\n\nSMILES strings are assumed to be as specified by the\n[OpenSmiles standard][opensmiles].\n\n## Molecules\nMolecules are depicted as [Networkx][networkx] graphs. Atoms are the nodes of\nthe graph, and bonds are the edges. Nodes can have the following attributes:\n- element: str. This describes the element of the atom. Defaults to '\\*'\n    meaning unknown.\n- aromatic: bool. Whether the atom is part of an (anti)-aromatic system. \n    Defaults to False.\n- isotope: float. The mass of the atom. Defaults to unknown.\n- hcount: int. The number of implicit hydrogens attached to this atom.\n    Defaults to 0.\n- charge: int. The charge of this atom. Defaults to 0.\n- class: int. The \"class\" of this atom. Defaults to 0.\n\nEdges have the following attributes:\n- order: Number. The bond order. 1.5 is used for aromatic bonds. Defaults to 1.\n\nThere is currently no way of specifying stereo chemical information, and this\nis discarded upon reading. Somewhere in the future this will probably be\nstored in the \"stereo\" attribute of nodes.\n\n## Reading SMILES\nThe function `read_smiles(smiles, explicit_hydrogen=False,\nzero_order_bonds=True, reinterpret_aromatic=True)` can be used to parse a\nSMILES string. It should not be used to validate whether a string is a valid\nSMILES string --- the function does very little validation whether your SMILES string makes chemical sense.\nEdges in the created molecule will always have an 'order'\nattribute. Nodes will have the relevant attributes in so far they are\nspecified. Atoms for which the element is not known (\\*) will not have an\nelement attribute.\n- `explicit_hydrogen` determines whether hydrogen atoms should be\n    represented as explicit nodes in the created molecule, or implicit in the\n    'hcount' attribute.\n- `zero_order_bonds` determines whether zero-order bonds (.) in the SMILES\n    string should result in edges in the produced molecule.\n- `reinterpret_aromatic` determines whether aromaticity should be \n    reinterpreted, and determined from the constructed molecule, or whether\n    the aromaticity specifications from the SMILES string (lower case \n    elements) should be taken as leading. If `True`, will also set bond orders \n    to 1 for bonds that are not part of an aromatic ring and have a bond order \n    of 1.5. If `False`, will create a molecule using *only* the information in \n    the SMILES string.\n\n### Stereochemical information\nCurrently the library cannot handle stereochemical information, neither E/Z nor\nR/S. Any stereochemical information that was in the SMILES string will be\n*discarded* upon parsing. This means there will be no difference between\nparsing *e.g.* `N[C@](Br)(O)C`, `N[C@@](Br)(O)C` and `NC(Br)(O)C`. Parsing\nthese *will result in the same molecule*. The same holds for *e.g.* `F/C=C/F`\nand `FC=CF`. These will result in the same molecule.\n\nWhenever stereochemical information is being discarded a warning will be\nlogged using the built-in `logging` module. If you want to disable all the\nmessages logged by `pysmiles` you can add the following snippet to your code,\nwithout interfering with any logging by your own code:\n\n```python\nimport logging\nlogging.getLogger('pysmiles').setLevel(logging.CRITICAL)  # Anything higher than warning\n```\n\n\n## Writing SMILES\nThe function `write_smiles(molecule, default_element='*', start=None)` can be\nused to write SMILES strings from a molecule. The function does *not* check \nwhether your molecule makes chemical sense. Instead, it writes a SMILES \nrepresentation of the molecule you provided, and nothing else.\n- `default_element` is the element to use for nodes that do not have an \n    'element' attribute.\n- `start` is the key of the node where the depth first traversal should be \n    started. Something clever is done if not specified.\n\n## Additional functions\nIn addition to these two core functions, four more functions are exposed that\ncan help in creating chemically relevant molecules with minimal work.\n\n- `fill_valence(mol, respect_hcount=True, respect_bond_order=True,\n                 max_bond_order=3)`\n    This function will fill the valence of all atoms in your molecule by \n    incrementing the 'hcount' and, if specified, bond orders. Note that it does\n    not use 'charge' attribute to find the correct valence.\n    - `repect_hcount`: bool. Whether existing hcounts can be overwritten.\n    - `respect_bond_order`: bool. Whether bond orders can be changed\n    - `max_bond_order`: int. The maximum bond order that will be set.\n- `add_explicit_hydrogens(mol)`\n    This function transforms implicit hydrogens, specified by 'hcount' \n    attributes, to explicit nodes.\n- `remove_explicit_hydrogens(mol)`\n    This function does the inverse of `add_explicit_hydrogens`: it will remove\n    explicit hydrogen nodes and add them to the relevant 'hcount' attributes.\n- `correct_aromatic_rings(mol)`\n    This function marks all (anti)-aromatic atoms in your molecule, and sets \n    all bonds between (anti)-aromatic atoms to order 1.5.\n    It fills the valence of all atoms (see also `fill_valence`) before trying\n    to figure our which atoms are aromatic. It works by first finding all \n    atoms that are in a ring. Next, for every atom in every ring it is checked\n    whether the atoms are sp2 hybridized (note that this is a vague term. \n    Strictly speaking we check whether their element is something that *could*\n    be aromatic, and whether they have 2 or 3 bonds.). Finally, the number of \n    electrons per ring is counted, and if this is even, the atoms in the ring\n    are said to be aromatic.\n    This function is the most fragile in the whole library, and I expect it to\n    produce wrong answers in some cases. In particular for fused (aromatic)\n    ring systems (such as indole) and rings with extracyclic heteroatoms\n    (O=C1C=CC=C1). Buyer beware.\n\n## Examples\n### Reading\n```python\nfrom pysmiles import read_smiles\n\nsmiles = 'C1CC[13CH2]CC1C1CCCCC1'\nmol = read_smiles(smiles)\n\nprint(mol.nodes(data='element'))\n# [(0, 'C'),\n#  (1, 'C'),\n#  (2, 'C'),\n#  (3, 'C'),\n#  (4, 'C'),\n#  (5, 'C'),\n#  (6, 'C'),\n#  (7, 'C'),\n#  (8, 'C'),\n#  (9, 'C'),\n#  (10, 'C'),\n#  (11, 'C')]\nprint(mol.nodes(data='hcount'))\n# [(0, 2),\n#  (1, 2),\n#  (2, 2),\n#  (3, 2),\n#  (4, 2),\n#  (5, 1),\n#  (6, 1),\n#  (7, 2),\n#  (8, 2),\n#  (9, 2),\n#  (10, 2),\n#  (11, 2)]\n\nmol_with_H = read_smiles(smiles, explicit_hydrogen=True)\nprint(mol_with_H.nodes(data='element'))\n# [(0, 'C'),\n#  (1, 'C'),\n#  (2, 'C'),\n#  (3, 'C'),\n#  (4, 'C'),\n#  (5, 'C'),\n#  (6, 'C'),\n#  (7, 'C'),\n#  (8, 'C'),\n#  (9, 'C'),\n#  (10, 'C'),\n#  (11, 'C'),\n#  (12, 'H'),\n#  (13, 'H'),\n#  (14, 'H'),\n#  (15, 'H'),\n#  (16, 'H'),\n#  (17, 'H'),\n#  (18, 'H'),\n#  (19, 'H'),\n#  (20, 'H'),\n#  (21, 'H'),\n#  (22, 'H'),\n#  (23, 'H'),\n#  (24, 'H'),\n#  (25, 'H'),\n#  (26, 'H'),\n#  (27, 'H'),\n#  (28, 'H'),\n#  (29, 'H'),\n#  (30, 'H'),\n#  (31, 'H'),\n#  (32, 'H'),\n# (33, 'H')]\n```\n\n### Writing\n```python\nimport networkx as nx\nfrom pysmiles import write_smiles, fill_valence\n\nmol = nx.Graph()\nmol.add_edges_from([(0, 1), (1, 2), (1, 3), (3, 4), (1, 5), (3, 6)])\nfor idx, ele in enumerate('CCCCOCO'):\n    mol.nodes[idx]['element'] = ele\nmol.nodes[4]['charge'] = -1\nmol.nodes[4]['hcount'] = 0\nmol.edges[3, 6]['order'] = 2\n\nprint(write_smiles(mol))\n# [O-]C(=O)C([C])([C])[C]\nfill_valence(mol, respect_hcount=True)\nprint(write_smiles(mol))\n# [O-]C(=O)C(C)(C)C\n```\n\n## Limitations\n- The writer produces non-recommended SMILES strings (as per OpenSmiles).\n- The writer is better described as a \"serializer\": if the graph provided\n    doesn't make chemical sense the produced \"SMILES\" string will be an\n    exact representation of that graph. Because of this, the SMILES string\n    will be invalid though.\n- `fill_valence` does not use 'charge' to find the correct valence.\n- `correct_aromatic_rings` is fragile.\n- There is currently no way of specifying stereo chemical information. The \n    parser can deal with it, but it will be discarded.\n- It only processes SMILES. This might later be extended to e.g. InChi, SLN,\n    SMARTS, etc.\n\n## Requirements\n- [networkx][networkx]\n\n## Similar projects\nThere are more python projects that deal with SMILES, and I try to list at \nleast some of them here. If yours is missing, feel free to open up a PR.\n- [PySMILE](https://github.com/jhosmer/PySmile): A similar named project, \n    capable of encoding/decoding SMILE format objects. Doesn't deal with \n    SMILES.\n- [RDKit](https://github.com/rdkit/rdkit): A collection of cheminformatics and \n    machine-learning software, capable of reading and writing SMILES, InChi, \n    and others.\n- [OpenEye Chem toolkit](https://www.eyesopen.com/oechem-tk): The OpenEye \n    chemistry toolkit is a programming library for chemistry and \n    cheminformatics. It is capable of dealing with (canonical) SMILES and \n    InChi.\n\n## License\nPySmiles is distributed under the Apache 2.0 license.\n    Copyright 2018 Peter C Kroon\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n        http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n\n[opensmiles]: http://opensmiles.org/\n[networkx]: https://networkx.github.io/\n\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "A lightweight SMILES reader and writer",
    "version": "1.1.2",
    "project_urls": {
        "Homepage": "https://github.com/pckroon/pysmiles"
    },
    "split_keywords": [
        "smiles",
        "cheminformatics",
        "chemistry"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbed08c83b4834b1a46bf7684616b692cd0a1009371136c8f84be719dc9d4b08",
                "md5": "c7e19467b16804993c4f557ce764a727",
                "sha256": "491346ebc125dc203c4ae5899738b053d52af1abea1623e922d6fca0f809369c"
            },
            "downloads": -1,
            "filename": "pysmiles-1.1.2-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c7e19467b16804993c4f557ce764a727",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 22501,
            "upload_time": "2023-09-19T10:55:07",
            "upload_time_iso_8601": "2023-09-19T10:55:07.900512Z",
            "url": "https://files.pythonhosted.org/packages/cb/ed/08c83b4834b1a46bf7684616b692cd0a1009371136c8f84be719dc9d4b08/pysmiles-1.1.2-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "310509a00812763fdd7978bc08937817c9d1de1b45ae9fda99fea03ba39a2060",
                "md5": "77e5f14d4edd1f06826f6a36a3ee86e0",
                "sha256": "587f745014e4a343b483a0f7f9c1dcf1da25ce88070ada3507c8fe998bee8016"
            },
            "downloads": -1,
            "filename": "pysmiles-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "77e5f14d4edd1f06826f6a36a3ee86e0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 34209,
            "upload_time": "2023-09-19T10:55:09",
            "upload_time_iso_8601": "2023-09-19T10:55:09.006575Z",
            "url": "https://files.pythonhosted.org/packages/31/05/09a00812763fdd7978bc08937817c9d1de1b45ae9fda99fea03ba39a2060/pysmiles-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-19 10:55:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pckroon",
    "github_project": "pysmiles",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "pysmiles"
}
        
Elapsed time: 0.12684s