Commit 8a6593aa authored by Dimitri Podborski's avatar Dimitri Podborski
Browse files

add gitignore for vscode

parent 74b76b9d
####################################
# Visual Studio Code
####################################
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# Local History for Visual Studio Code
.history/
####################################
# Python
####################################
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
......
......@@ -10,14 +10,26 @@ The general idea is to fire requests to MDMS using curl, process the information
## Requirements
To work properly this script requires the following **environment variables**:
### Environment variables
- `MPEG_LOGIN` - MDMS login
- `MPEG_PWD` - MDMS password
- `MPEG_LOGIN` - [MDMS](https://dms.mpeg.expert) login
- `MPEG_PWD` - [MDMS](https://dms.mpeg.expert) password
- `GITLAB_TOKEN` - your private GitLab token. You can create your token [here](http://mpegx.int-evry.fr/software/profile/personal_access_tokens).
Following **python packages** should be installed:
## Tools
- python3
- [curl](https://curl.se)
- ...
### Python packages / libs
- [python-gitlab](https://python-gitlab.readthedocs.io/en/stable/)
- [bs4](https://www.crummy.com/software/BeautifulSoup/bs4/doc/)
- [csv](https://docs.python.org/3/library/csv.html) (Python Standard Library)
You can install these using `pip` for example:
```sh
pip3 install python-gitlab bs4 csv
pip3 install python-gitlab bs4
```
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment