https://github.com/astupidbear/skypecall
Skype Call
https://github.com/astupidbear/skypecall
Last synced: 8 months ago
JSON representation
Skype Call
- Host: GitHub
- URL: https://github.com/astupidbear/skypecall
- Owner: AStupidBear
- Created: 2019-10-26T09:34:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-27T05:21:05.000Z (almost 6 years ago)
- Last Synced: 2025-01-10T03:01:29.842Z (9 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
First, install Docker.
```
sudo apt-get install docker.io
```Then, download the dockerfile and run.
```
wget https://raw.githubusercontent.com/AStupidBear/skypecall/master/skypecall.Dockerfile.py
python skypecall.Dockerfile.py --user xxxx --passwd xxxx --callto xxxx
```If you don't want to use docker, you can run the python file directly after setting up selenium and google-chrome manually.
```
pip install selenium
npm install -g selenium-side-runner
npm install -g chromedriver
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install -y ./google-*.deb && rm google-*.deb
wget https://raw.githubusercontent.com/AStupidBear/skypecall/master/skypecall.py
python skypecall.py --user xxxx --passwd xxxx --callto xxxx
```