Skip to content

Commit

Permalink
updated v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
samapriya committed Dec 27, 2018
1 parent 73a68af commit 7708e4d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ To obtain help for a specific functionality, simply call it with _help_ switch,
The tool is designed to handle batch uploading of images and tables(shapefiles). While there are image collection where you can batch upload imagery,for vector or shapefiles you have to batch upload them to a folder.

### selenium update
This download selenium drivers and places to to your local directory for windows and linux subsystems.
This download selenium drivers and places to to your local directory for windows and linux subsystems. This is the first step to use selenium supported upload.

``` geeup update```

Expand Down Expand Up @@ -232,6 +232,10 @@ optional arguments:

# Changelog

### v0.0.8

- fixed issues with unused imports

### v0.0.7

- fixed issues with manifest lib
Expand Down
2 changes: 1 addition & 1 deletion geeup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'Samapriya Roy'
__email__ = '[email protected]'
__version__ = '0.0.7'
__version__ = '0.0.8'
7 changes: 4 additions & 3 deletions geeup/metadata_ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@
import json
import manifest_lib
import pandas as pd
import ee
import requests
import retrying
if sys.version_info > (3, 0):
from urllib.parse import unquote
else:
from urllib import unquote

import ee
import requests
import retrying

from requests_toolbelt import MultipartEncoder
from bs4 import BeautifulSoup

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def readme():
return f.read()
setuptools.setup(
name='geeup',
version='0.0.7',
version='0.0.8',
packages=find_packages(),
url='https://github.com/samapriya/geeup',
install_requires=['earthengine_api >= 0.1.87','requests >= 2.10.0','retrying >= 1.3.3','beautifulsoup4 >= 4.5.1','pandas>=0.23.0','psutil>=5.4.5',
Expand Down

0 comments on commit 7708e4d

Please sign in to comment.