-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanaconda-project.yml
More file actions
42 lines (34 loc) · 839 Bytes
/
anaconda-project.yml
File metadata and controls
42 lines (34 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: python-wine-scraper
description: scraper.py collects the data of wine products; it returns a csv file, wine_data.csv, with the scraped data.
import.py creates a postgres table called 'bottles' and imports the scraped data from wine_data.cvs into it.
commands:
scraper:
description: run scraper.py
unix: python ${PROJECT_DIR}/scraper.py
windows: python %PROJECT_DIR%\scraper.py
supports_http_options: true
env_spec: default
channels:
- conda-forge
- defaults
- bioconda
- anaconda
platforms:
- linux-64
- win-64
env_specs:
default:
description: Default environment spec for running commands
packages:
- anaconda-project
- beautifulsoup4
- git
- numpy
- pandas
- pip
- psycopg2
- python
- python-dotenv
- regex
- requests
- sqlalchemy