https://github.com/aryannn053/jarvis
a simplistic jarvis ai built using python
https://github.com/aryannn053/jarvis
Last synced: about 2 months ago
JSON representation
a simplistic jarvis ai built using python
- Host: GitHub
- URL: https://github.com/aryannn053/jarvis
- Owner: aryannn053
- Created: 2024-07-21T14:18:30.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-21T14:19:44.000Z (10 months ago)
- Last Synced: 2025-02-03T01:11:04.261Z (3 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jarvis In Python
This is an AI created using Python, This AI can tell you the time, sleep, tell you joke and much more. All modules needed to create this ai are in the readme.md file.# Modules
## pyttsx3
import pyttsx3 as py3This module will help jarvis to speak
```
pip install pyttsx3
```## SpeechRecognition
import speech_recognition as srThis module will help jarvis to listen our voice
```
pip install SpeechRecognition
```## webbrowser
import webbrowser as wbThis module will help jarvis to open websites
```
pip install webbrowser
```## wikipedia
import wikipediaThis module will help jarvis to search wikipedia
```
pip install wikipedia
```## pyjokes
import pyjokes as pyjThis module will help jarvis to tell us programming jokes
```
pip install pyjokes
```## datetime
import datetimeThis module will help jarvis to tell us the time
```
pip install datetime
```