Kora is a Python library for Google Colab.
Questions tagged [kora]
6 questions
8
votes
1 answer
Python 3.8 with Kora in Colab is not working anymore, how to fix?
I did:
!pip install kora
import kora.install.py38
but got error:
Requirement already satisfied: kora in /usr/local/lib/python3.7/dist-packages (0.9.19)
Requirement already satisfied: ipython in /usr/local/lib/python3.7/dist-packages (from kora)…

Charlie Parker
- 5,884
- 57
- 198
- 323
1
vote
0 answers
import function from another file in colab not working
I am trying to import a function from another file different directory in Colab, but it's not working.
I have tried:
1)
!pip install kora -q
from kora import drive
drive.link_nbs()
sys.path(0,"path to file")
import name_file
import ipynb

soufiyane ouali
- 11
- 1
0
votes
1 answer
Browser not opening using Selenium and Kora on Google Colab
The browser will not open with the "get" object while using Google Colab with Selenium and Kora. Here is my code:
from kora.selenium import wd
website = "https://www.espn.com"
wd.get(website)
It just returns "completed" and nothing happens. Any…

John H
- 15
- 4
0
votes
1 answer
How to use Selenium IDE on Google Colabs without requirement of custom library e.g. Kora?
Aim to control an eToro account from site with signals of buying and selling given to Selenium API.
Using Selenium on local machine is done using this code:
from selenium import webdriver
PATH = "C:\Chrome Webdriver\chromedriver.exe"
driver =…

Null
- 7
- 7
0
votes
1 answer
Not able to open website in google colab using selenium webdriver
I am trying to open website website in google colab using selenium but not able to do so. Installing chrome driver and setting path variable had issues, so I used Kora library. I am able to to execute wd.get('website') successfully and able to print…

Junaid
- 13
- 7
0
votes
1 answer
package in google colab
simple question:
does different notebooks in google colab share the same package?
I run !pip list, and I want to find Kora, which is a module that I just installed by !pip Kora.
As you can see, I can find kora from one notebook, but can't find it…

Kai
- 77
- 1
- 13