Skip to content

Commit

Permalink
Proxy fix (#54)
Browse files Browse the repository at this point in the history

* Adding the proxy parameter, adding more unittest to increase coverage. Fixes #51

Signed-off-by: Linwood Creekmore III <[email protected]>

* Adding the proxy parameter, adding more unittest to increase coverage. Fixes #51.  Travis and appveyor fix

Signed-off-by: Linwood Creekmore III <[email protected]>

* Adding the proxy parameter, adding more unittest to increase coverage. Fixes #51.  Travis and appveyor fix2li

Signed-off-by: Linwood Creekmore III <[email protected]>

* Adding the proxy parameter, adding more unittest to increase coverage. Fixes #51.  Travis and appveyor fix3

Signed-off-by: Linwood Creekmore III <[email protected]>

* Adding the proxy parameter, adding more unittest to increase coverage. Fixes #51.  Travis and appveyor fix4

Signed-off-by: Linwood Creekmore III <[email protected]>

* Adding the proxy parameter, adding more unittest to increase coverage. Fixes #51.  Travis and appveyor fix5

Signed-off-by: Linwood Creekmore III <[email protected]>

* fix bdist_wheel

small

* small update to fix

small update to fix

* geopandas add

small add

* geopandas add

small add final

Signed-off-by: Linwood Creekmore III <[email protected]>

* fixing travis

* geopandas add

small add final. fix

Signed-off-by: Linwood Creekmore III <[email protected]>

* geopandas add

small add final. fix. Final

Signed-off-by: Linwood Creekmore III <[email protected]>

* fixed bug in line 636

Signed-off-by: Linwood Creekmore III <[email protected]>

* fixed bug in line 636; added version change

Signed-off-by: Linwood Creekmore III <[email protected]>
  • Loading branch information
linwoodc3 committed Oct 20, 2018
1 parent 64744d2 commit df8a6f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,6 @@

2018-08-11
Added more unittests, included proxy parameter, removed r output and added parquet format.

2018-10-18
Fixed bug in line 636; had hanging proxies parameter.
2 changes: 1 addition & 1 deletion gdelt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__author__ = 'Linwood Creekmore III'
__email__ = '[email protected]'
__license__ = 'GNU General Public License v3.0'
__version__ = '0.1.10.5.3'
__version__ = '0.1.10.6'
__url__ = 'https://linwoodc3.github.io/gdeltPyR/'
__description__ = 'Python based framework to retreive Global Database of ' \
'Events, Language, and Tone (GDELT)' \
Expand Down
2 changes: 1 addition & 1 deletion gdelt/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ def Search(self,
pool = NoDaemonProcessPool(processes=cpu_count())
downloaded_dfs = list(pool.imap_unordered(_mp_worker,
self.download_list,
proxies=self.proxies))
))
pool.close()
pool.terminate()
pool.join()
Expand Down

0 comments on commit df8a6f7

Please sign in to comment.