Skip to content

Commit 75c69ed

Browse files
committed
Added FAQ section
1 parent 1e44f19 commit 75c69ed

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ View all supported engines [here.](https://github.com/bisoncorps/search-engine-p
2525
- [Usage](#usage)
2626
- [Code](#code)
2727
- [Command line](#command-line)
28+
- [FAQ](docs/faq.md)
2829
- [Code of Conduct](#code-of-conduct)
2930
- [Contribution](#contribution)
3031
- [License (MIT)](#license-mit)
@@ -39,7 +40,7 @@ Popular search engines supported include:
3940
- Baidu
4041
- YouTube
4142

42-
View all supported engines [here.](https://github.com/bisoncorps/search-engine-parser/blob/master/docs/supported_engines.md)
43+
View all supported engines [here.](docs/supported_engines.md)
4344

4445
## Installation
4546
Install from PyPi:
@@ -241,13 +242,13 @@ optional arguments:
241242
```
242243

243244
## Code of Conduct
244-
Make sure to adhere to the [code of conduct](https://github.com/bisoncorps/search-engine-parser/blob/master/CODE_OF_CONDUCT.md) at all times.
245+
Make sure to adhere to the [code of conduct](CODE_OF_CONDUCT.md) at all times.
245246

246247
## Contribution
247-
Before making any contributions, please read the [contribution guide](https://github.com/bisoncorps/search-engine-parser/blob/master/CONTRIBUTING.md).
248+
Before making any contributions, please read the [contribution guide](CONTRIBUTING.md).
248249

249250
## License (MIT)
250-
This project is licensed under the [MIT 2.0 License](https://github.com/bisoncorps/search-engine-parser/blob/master/LICENSE) which allows very broad use for both academic and commercial purposes.
251+
This project is licensed under the [MIT 2.0 License](LICENSE) which allows very broad use for both academic and commercial purposes.
251252

252253
## Contributors ✨
253254

docs/faq.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# FAQ
2+
3+
## Why do I get `RuntimeError: This event loop is already running` When running in Jupyter Notebook
4+
5+
This is a popular issue on [Jupyter Notebook](https://github.com/jupyter/notebook/issues/5663). The solution:
6+
- try `pip install --upgrade ipykernel ipython` which should upgrade the ipykernet to a recent version with issue resolved
7+
- or add this to your notebook to allow nested asyncio loops
8+
```bash
9+
!pip install nest-asyncio
10+
```
11+
12+
```python
13+
import nest_asyncio
14+
nest_asyncio.apply()
15+
```
16+

0 commit comments

Comments
 (0)