Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
chimet-scraper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SERG
chimet-scraper
Commits
2fabcfc5
Commit
2fabcfc5
authored
6 years ago
by
Alois Klink
Browse files
Options
Downloads
Patches
Plain Diff
Update installation requirements
I needed these but accidentally forgot to add them into the documentation.
parent
f801b26e
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+2
-2
2 additions, 2 deletions
README.md
chimet-scraper.py
+1
-1
1 addition, 1 deletion
chimet-scraper.py
with
3 additions
and
3 deletions
README.md
+
2
−
2
View file @
2fabcfc5
...
...
@@ -15,11 +15,11 @@ location.
## Requirements
This program requires Python3,
`pandas`
, and
`tqdm`
.
This program requires Python3,
`python-dateutil`
,
`pandas`
, and
`tqdm`
.
These can be installed via:
```
pip3 install pandas tqdm
pip3 install
python-dateutil
pandas tqdm
```
Or, if you use
`pipenv`
, you can use the following to install from the
...
...
This diff is collapsed.
Click to expand it.
chimet-scraper.py
+
1
−
1
View file @
2fabcfc5
...
...
@@ -9,7 +9,7 @@ try:
import
tqdm
# cool progress bar
except
ImportError
as
e
:
raise
ImportError
(
"
Could not find needed modules. Please run
\n
"
"
pip3 install python-dateutil
s
pandas tqdm
\n
"
"
pip3 install python-dateutil pandas tqdm
\n
"
"
to install all modules. Original error was {e}
"
)
from
e
def
parse_date
(
date_str
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment