Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dimitri Podborski
AutomationTools
Commits
8a6593aa
Commit
8a6593aa
authored
Jan 15, 2021
by
Dimitri Podborski
Browse files
add gitignore for vscode
parent
74b76b9d
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
8a6593aa
####################################
# 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]
...
...
README.md
View file @
8a6593aa
...
...
@@ -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
**e
nvironment variables
**
:
### E
nvironment 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
```
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment