condynsate


Namecondynsate JSON
Version 0.6.6 PyPI version JSON
download
home_pageNone
SummarySimulates and visualizes articulated systems in real time
upload_time2024-04-29 23:22:23
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2023 Grayson Schaer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords dynamic system control visualization simulation articulated education pybullet meshcat matplotlib
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # condynsate

 [condynsate](https://github.com/GrayKS3248/condynsate) is a dynamic system simulation and visualization tool built with [PyBullet](https://pybullet.org/wordpress/) and [MeshCat](https://github.com/meshcat-dev/meshcat-python). It automatically simulates multiple objects and their interactions as described by [.urdf](http://wiki.ros.org/urdf), [.stl](https://en.wikipedia.org/wiki/STL_(file_format)), and [.obj](https://en.wikipedia.org/wiki/Wavefront_.obj_file) files and can render real time visualizations in a web browser.

# Installation

## From Source

condynsate requires python => 3.8

```bash
pip install condynsate
```

## Miniconda

* **Install Miniconda**
  
  * [Install Miniconda.](https://docs.conda.io/projects/miniconda/en/latest/)
  
  * To verify that Miniconda is installed properly, open **Anaconda Prompt (Miniconda3)** and run the command:
    
    ```bash
    conda --version
    ```

* **Create a new virtual environment**
  
  * To create a new environment, open **Anaconda Prompt (Miniconda3)** and run the command:
    
    ```bash
    conda create -n ENVNAME
    ```
  
  * Next, activate the newly made environment: 
    
    ```bash
    conda activate ENVNAME
    ```
  
  * You can confirm the virtual environment is activated when environment name on the left side of the command line changes from ``(base)`` to``(ENVNAME)``

* **Install dependencies from Conda-Forge:**
  
  * Configure the environment channels by running the commands:
    
    ```bash
    conda config --env --add channels conda-forge
    conda config --env --set channel_priority strict
    conda clean -a -i
    ```
  
  * Install dependencies available from Conda-Forge by running the command:
    
    ```bash
    conda install -y python=3 numpy pynput matplotlib pybullet control sympy notebook
    ```

* **Install condynsate using pip**
  
  * To install condynsate run the commands:
    
    ```bash
    pip cache purge
    pip install condynsate
    ```
  
  * You can ensure condynsate installed correctly by starting a python bash, importing condynsate, and checking the version number:
    
    ```python
    python
    import condynsate
    condynsate.__version__ 
    ```

# Usage

For examples of usage, see [examples](https://github.com/GrayKS3248/condynsate/tree/main/examples).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "condynsate",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "dynamic, system, control, visualization, simulation, articulated, education, pybullet, meshcat, matplotlib",
    "author": null,
    "author_email": "Grayson Schaer <gschaer2@illinois.edu>",
    "download_url": "https://files.pythonhosted.org/packages/8a/e7/ed151f814e2efbe24c6d23905dfe5dde7d224af894f7caabbe625c383534/condynsate-0.6.6.tar.gz",
    "platform": null,
    "description": "# condynsate\r\n\r\n [condynsate](https://github.com/GrayKS3248/condynsate) is a dynamic system simulation and visualization tool built with [PyBullet](https://pybullet.org/wordpress/) and [MeshCat](https://github.com/meshcat-dev/meshcat-python). It automatically simulates multiple objects and their interactions as described by [.urdf](http://wiki.ros.org/urdf), [.stl](https://en.wikipedia.org/wiki/STL_(file_format)), and [.obj](https://en.wikipedia.org/wiki/Wavefront_.obj_file) files and can render real time visualizations in a web browser.\r\n\r\n# Installation\r\n\r\n## From Source\r\n\r\ncondynsate requires python => 3.8\r\n\r\n```bash\r\npip install condynsate\r\n```\r\n\r\n## Miniconda\r\n\r\n* **Install Miniconda**\r\n  \r\n  * [Install Miniconda.](https://docs.conda.io/projects/miniconda/en/latest/)\r\n  \r\n  * To verify that Miniconda is installed properly, open **Anaconda Prompt (Miniconda3)** and run the command:\r\n    \r\n    ```bash\r\n    conda --version\r\n    ```\r\n\r\n* **Create a new virtual environment**\r\n  \r\n  * To create a new environment, open **Anaconda Prompt (Miniconda3)** and run the command:\r\n    \r\n    ```bash\r\n    conda create -n ENVNAME\r\n    ```\r\n  \r\n  * Next, activate the newly made environment: \r\n    \r\n    ```bash\r\n    conda activate ENVNAME\r\n    ```\r\n  \r\n  * You can confirm the virtual environment is activated when environment name on the left side of the command line changes from ``(base)`` to``(ENVNAME)``\r\n\r\n* **Install dependencies from Conda-Forge:**\r\n  \r\n  * Configure the environment channels by running the commands:\r\n    \r\n    ```bash\r\n    conda config --env --add channels conda-forge\r\n    conda config --env --set channel_priority strict\r\n    conda clean -a -i\r\n    ```\r\n  \r\n  * Install dependencies available from Conda-Forge by running the command:\r\n    \r\n    ```bash\r\n    conda install -y python=3 numpy pynput matplotlib pybullet control sympy notebook\r\n    ```\r\n\r\n* **Install condynsate using pip**\r\n  \r\n  * To install condynsate run the commands:\r\n    \r\n    ```bash\r\n    pip cache purge\r\n    pip install condynsate\r\n    ```\r\n  \r\n  * You can ensure condynsate installed correctly by starting a python bash, importing condynsate, and checking the version number:\r\n    \r\n    ```python\r\n    python\r\n    import condynsate\r\n    condynsate.__version__ \r\n    ```\r\n\r\n# Usage\r\n\r\nFor examples of usage, see [examples](https://github.com/GrayKS3248/condynsate/tree/main/examples).\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Grayson Schaer  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Simulates and visualizes articulated systems in real time",
    "version": "0.6.6",
    "project_urls": {
        "Homepage": "https://github.com/GrayKS3248/condynsate"
    },
    "split_keywords": [
        "dynamic",
        " system",
        " control",
        " visualization",
        " simulation",
        " articulated",
        " education",
        " pybullet",
        " meshcat",
        " matplotlib"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84b705349983715af98af430d568cb5816cb863b034b073a4b576911406ac418",
                "md5": "7a00a8758aa8d19e5b0a6fdf0ddfe0e8",
                "sha256": "b74ad34cee591cfb5a2ec9ddb8d17daf9f980e547ab9d98b4a4b4096439869f3"
            },
            "downloads": -1,
            "filename": "condynsate-0.6.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7a00a8758aa8d19e5b0a6fdf0ddfe0e8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 96944,
            "upload_time": "2024-04-29T23:22:14",
            "upload_time_iso_8601": "2024-04-29T23:22:14.908817Z",
            "url": "https://files.pythonhosted.org/packages/84/b7/05349983715af98af430d568cb5816cb863b034b073a4b576911406ac418/condynsate-0.6.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ae7ed151f814e2efbe24c6d23905dfe5dde7d224af894f7caabbe625c383534",
                "md5": "45467b3219111ee7bb43441bdbf46c7e",
                "sha256": "07c3285c108584924009b22891481957f6b3f030397595d95a688c7aa5869e6b"
            },
            "downloads": -1,
            "filename": "condynsate-0.6.6.tar.gz",
            "has_sig": false,
            "md5_digest": "45467b3219111ee7bb43441bdbf46c7e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 92881,
            "upload_time": "2024-04-29T23:22:23",
            "upload_time_iso_8601": "2024-04-29T23:22:23.081954Z",
            "url": "https://files.pythonhosted.org/packages/8a/e7/ed151f814e2efbe24c6d23905dfe5dde7d224af894f7caabbe625c383534/condynsate-0.6.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-29 23:22:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GrayKS3248",
    "github_project": "condynsate",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "condynsate"
}
        
Elapsed time: 0.26186s