Metadata-Version: 2.4
Name: uaibot
Version: 1.2.7
Summary: Uaibot, online robotic simulator
Author-email: Vinicius Goncalves et al <vinicius.marianog@gmail.com>
Project-URL: Homepage, https://uaibot.github.io/
Project-URL: Documentation, https://uaibot.github.io/docs/API_Reference/Python_API_reference/Python_API_reference.html
Project-URL: Repository, https://github.com/UAIbot/UAIbotPy
Project-URL: Issues, https://github.com/UAIbot/UAIbotPy/issues
Keywords: robotics,simulator
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: C++
Classifier: Operating System :: OS Independent
Classifier: Framework :: Jupyter
Classifier: Framework :: IPython
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: colour>=0.1.5
Requires-Dist: httplib2>=0.20.4
Requires-Dist: ipython>=7.34
Requires-Dist: matplotlib>=3.10.0
Requires-Dist: numpy>=1.24
Requires-Dist: pybind11>=2.10
Requires-Dist: quadprog>=0.1.13
Requires-Dist: requests
Requires-Dist: scipy>=1.10
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: nox; extra == "test"
Dynamic: license-file

<h1>UAIBot</h1>

<p align="center">
    <img src="https://viniciusmgn.github.io/aulas_manipuladores/presentation/images/aula1/logouaibot.svg" alt="UAIBot Logo"/>
</p>

[![PyPI Version](https://img.shields.io/pypi/v/uaibot?logo=pypi&logoColor=white&label=PyPI)](https://pypi.org/project/uaibot/)
[![GitHub Package Version](https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2FUAIbot%2FUAIbotPy%2Frefs%2Fheads%2Fmain%2Fpyproject.toml&query=%24.project.version&prefix=v&logo=github&label=GitHub&labelColor=gray&color=blue)](https://github.com/UAIbot/UAIbotPy)
<!-- For testing only
[![GitHub Package Version](https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2Ffbartelt%2FUAIbotPy%2Ffeature%2Fpython-support%2Fpyproject.toml&query=%24.project.version&prefix=v&logo=github&label=GitHub&labelColor=gray&color=blue)](https://github.com/UAIbot/UAIbotPy) -->


<h2>Introduction</h2>

UAIBot is a web-based Python robotic simulator developed by <strong>Vinicius Mariano Gonçalves</strong>  (Electrical Engineering Department, Federal University of Minas Gerais, Brazil) and his students. 

While teaching robotics, I used many different desktop-based simulators with my students (such as CoppeliaSim and Matlab Toolboxes). However, I realized that students nowadays are much more used to web-based applications. This is why I, together with my students, came up with the idea of creating a simulator with the following goals:

<ul>
  <li>It can be used in a web browser if the student desires.</li>
  <li>Programming should be done in a language that most students already know or have some interest in learning, i.e., they should not be forced to learn a very specific language to use this simulator. Nowadays, the language that better fits these requirements is <strong>Python</strong>.  </li>
  <li>It should be easy to set up and simple to use.</li>
  <li>For didactic purposes, it should be a <strong>low-level</strong> simulator. This means that is up to the user to simulate everything, with the help of the functions/interfaces from the simulator. Since everything is under the user's control, if something goes awry it is easier to pinpoint what is wrong.</li>
  
</ul>

Guided by these goals, me and my student [Johnata Brayan](http://setpointcapybara.com/site/) came, in January 2022,  with the idea of creating <strong>UAIBot</strong>.
It is focused, so far, on <strong>open-chain serial robotic manipulators</strong>, although there is some limited support already for other kind of robots.

<h2>How it works</h2>

A Python library is used to code everything. First, it is used to <strong>set up the scenario</strong> (robots and other objects). Then, it is up to the user to explicitly compute each object's movement using the provided interfaces, creating <strong>animation frames</strong> for each one of them.  Then the user <strong> creates the interactive animation</strong> as a HTML file, that can be shared and even embedded in a Web Page for didactic purposes.

So, in UAIBot, all the simulation is first created (the computations take place) and the animation is displayed!

Examples of HTML simulations made using UAIBot can be seen [here](https://viniciusmgn.github.io/aulas_manipuladores/presentation/images/aula1/democontrole1.html) , [here](https://viniciusmgn.github.io/aulas_manipuladores/presentation/images/aula5/anim9.html) and [here](https://viniciusmgn.github.io/aulas_manipuladores/presentation/images/aula1/democontrole2.html).

The animations are displayed using [Three.js](https://threejs.org/), in JavaScript. So the Python code automatically generates the JavaScript code to set up the animation that was coded using Python. In fact, UAIBot wraps in Python many of Three.js' functions, allowing us to use many of Three.js' features to visually customize the simulation.

<h2>Getting started</h2>

[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1i3sxpV_DvVr_WH3vPFoN-ZPSP0ktpFlx?usp=sharing)

It is easier to start using UAIBot in a web browser. We will use [GoogleColab](https://colab.research.google.com/) since it allows us to run Python code in a web browser.

Open a new notebook. Now, we need to install UAIBot in the GoogleColab servers. This can be done by simply running the following commands:

```python
!pip install uaibot
```

After it is done, we test if it is working by running the following command

```python
import uaibot as ub

sim = ub.Demo.constrained_control_demo_1()
```

This will generate a simulation that was already pre-coded into UAIbot. It will return the simulation variable (sim) and automatically run the animation for you!

If you want to run the simulation again, you don't need to compute it again. Just run <strong>sim.run()</strong>.

Note that you will need to reinstall UAIBot every time you open GoogleColab since the virtual machine created for you will be deleted.

<h2>Using in desktop-based IDE's</h2>

You can install the UAIBot package locally in your machine. **You will need Python 3.11**. We suggested creating a brand new environment and then install it using the terminal

```python
>>pip install uaibot
```

The <strong>sim.run()</strong> may not work in some IDEs. In that case, you need to save the simulation as a HTML file:

```python
import uaibot as ub

sim = ub.Demo.constrained_control_demo_1()
sim.save('C:\\','test_uaibot')
```

This will save the file <strong>test_uaibot.html</strong> in your C: directory. You can then just open and visualize it. You can share just this file with your friends as well, it usually will be a small file. Since much of the information (as 3D models) is stored in a web server, <strong>in order to visualize the file an internet connection is required</strong>.

<h2>How to use the simulator</h2>

Please see the [UAIBot documentation](http://uaibot.github.io/).

If you know Portuguese, you can also see my [Robotic Manipulator course](https://viniciusmgn.github.io/aulas_manipuladores), which uses UAIBot.

<h2>Why "UAIBot"?</h2>

"Uai" is an interjection commonly used by mineiros, that is, people who were born in the state of Minas Gerais, Brazil. It is one of the regional symbols of Minas Gerais. It is pronounced like the English "why" and has roughly the same meaning, used when mineiros are confused or in doubt. Indeed, some linguistic researchers think that the origin of this interjection is exactly the English word "why".

<h2>What is exactly the logo of "UAIBot"???</h2>

It is supposed to be a robotic manipulator in front of a mountain. Mountains, along with the aforementioned "Uai", are one of the symbols of the state of Minas Gerais, Brazil.

<h2>Collaborators</h2>

[Johnata Brayan](http://setpointcapybara.com/site/) (Electrical Engineering student, UFMG)<br>
Felipe Bartelt (PhD student, UFMG)<br>

## Contributing
We welcome contributions! Please read our [Contribution Guidelines](.github/CONTRIBUTING.md) before submitting changes.
