ParseResult needs strings
Browse files- pest-management-opendata.py +1 -1
- requirements.txt +7 -0
pest-management-opendata.py
CHANGED
@@ -78,7 +78,7 @@ class SplitManager:
|
|
78 |
|
79 |
def url(self, split):
|
80 |
path = self.path.joinpath(split).with_suffix('.csv.gz')
|
81 |
-
source = self.bucket._replace(path=path)
|
82 |
|
83 |
return urlunparse(source)
|
84 |
|
|
|
78 |
|
79 |
def url(self, split):
|
80 |
path = self.path.joinpath(split).with_suffix('.csv.gz')
|
81 |
+
source = self.bucket._replace(path=str(path))
|
82 |
|
83 |
return urlunparse(source)
|
84 |
|
requirements.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
awswrangler
|
2 |
+
boto3
|
3 |
+
datasets
|
4 |
+
numpy
|
5 |
+
opencv-python
|
6 |
+
pandas
|
7 |
+
shapely
|