diff options
author | skreuzer <skreuzer@FreeBSD.org> | 2015-01-20 22:45:20 +0800 |
---|---|---|
committer | skreuzer <skreuzer@FreeBSD.org> | 2015-01-20 22:45:20 +0800 |
commit | 48209add8780a767c1fd574d9a52ba2f6e46a747 (patch) | |
tree | 390f88fad2ce9c9f20767d74a56e59675def16a4 /finance | |
parent | 84f9132652e33fd538faf3a465abcaefefd5e4bd (diff) | |
download | freebsd-ports-gnome-48209add8780a767c1fd574d9a52ba2f6e46a747.tar.gz freebsd-ports-gnome-48209add8780a767c1fd574d9a52ba2f6e46a747.tar.zst freebsd-ports-gnome-48209add8780a767c1fd574d9a52ba2f6e46a747.zip |
Python module to retrieve stock quote data from Yahoo Finance
WWW: https://github.com/cgoldberg/ystockquote
Diffstat (limited to 'finance')
-rw-r--r-- | finance/Makefile | 1 | ||||
-rw-r--r-- | finance/py-ystockquote/Makefile | 18 | ||||
-rw-r--r-- | finance/py-ystockquote/distinfo | 2 | ||||
-rw-r--r-- | finance/py-ystockquote/pkg-descr | 3 |
4 files changed, 24 insertions, 0 deletions
diff --git a/finance/Makefile b/finance/Makefile index 01da75d85993..276184a7f3da 100644 --- a/finance/Makefile +++ b/finance/Makefile @@ -95,6 +95,7 @@ SUBDIR += prestashop SUBDIR += py-stripe SUBDIR += py-vatnumber + SUBDIR += py-ystockquote SUBDIR += qhacc SUBDIR += rubygem-money SUBDIR += sabernetdcs-client diff --git a/finance/py-ystockquote/Makefile b/finance/py-ystockquote/Makefile new file mode 100644 index 000000000000..85bea578f883 --- /dev/null +++ b/finance/py-ystockquote/Makefile @@ -0,0 +1,18 @@ +# Created by: Steven Kreuzer <skreuzer@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= ystockquote +PORTVERSION= 0.2.4 +CATEGORIES= finance python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Python module to retrieve stock quote data from Yahoo Finance + +LICENSE= LGPL21 + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> diff --git a/finance/py-ystockquote/distinfo b/finance/py-ystockquote/distinfo new file mode 100644 index 000000000000..b8d91ac0f78e --- /dev/null +++ b/finance/py-ystockquote/distinfo @@ -0,0 +1,2 @@ +SHA256 (ystockquote-0.2.4.tar.gz) = 5d0f65bc8cb1d5c9198deae098ee7641d8a9e2203379422c07fce5900be7d8da +SIZE (ystockquote-0.2.4.tar.gz) = 4225 diff --git a/finance/py-ystockquote/pkg-descr b/finance/py-ystockquote/pkg-descr new file mode 100644 index 000000000000..c66522963ab5 --- /dev/null +++ b/finance/py-ystockquote/pkg-descr @@ -0,0 +1,3 @@ +Python module to retrieve stock quote data from Yahoo Finance + +WWW: https://github.com/cgoldberg/ystockquote |