https://github.com/blendthink/ner-notion
Extracts person names from Notion-sites constructed using Super.
https://github.com/blendthink/ner-notion
ner notion
Last synced: 30 days ago
JSON representation
Extracts person names from Notion-sites constructed using Super.
- Host: GitHub
- URL: https://github.com/blendthink/ner-notion
- Owner: blendthink
- License: mit
- Created: 2022-08-13T01:57:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-14T03:24:11.000Z (almost 4 years ago)
- Last Synced: 2025-04-01T10:23:45.606Z (about 1 year ago)
- Topics: ner, notion
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> **Warning**\
> Avoid running programs on sites other than you own.\
> It puts a load on Notion-sites.
## Features
Extracts person names from [Notion]-sites constructed using [Super].
> **Note**\
> [Wraptas], etc. are not supported.
## Getting started
### 1. Install Python
Use [pyenv] for Python version management.
```shell
pyenv install
```
### 2. Install dependencies
Use [venv] for virtual environments.
```shell
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
deactivate
```
### 3. Setup .env
```shell
cat < .env
TARGET_URL={Notion-site URL}
EOF
```
### 4. Run
```shell
source venv/bin/activate
python main.py
deactivate
```
[Notion]: https://www.notion.so
[Super]: https://super.so
[Wraptas]: https://wraptas.com
[pyenv]: https://github.com/pyenv/pyenv
[venv]: https://docs.python.org/3/library/venv.html