Skip to content

Commit

Permalink
chore: add readme and remove venv from git
Browse files Browse the repository at this point in the history
  • Loading branch information
aarbanas committed Sep 26, 2024
1 parent d97b0ea commit 1346f99
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ yarn-error.log*
*.tsbuildinfo

# dbml
# TODO Remove before merging PR
#schema.dbml
#erd.svg
schema.dbml
erd.svg

/myenv
27 changes: 27 additions & 0 deletions scripts/educations_parser/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## How to use the parser

1. Install python locally
2. Install and activate python virtual environment:

```shell
python3 -m venv myenv
source myenv/bin/activate
```

3. Install requirements:

```shell
pip3 install -r requirements.txt
```

4. Run the parser:

```shell
python3 ./educations_parser.py
```

5. Deactivate the Virtual Environment

```shell
deactivate
```

0 comments on commit 1346f99

Please sign in to comment.