summaryrefslogtreecommitdiff
path: root/cccfetch
diff options
context:
space:
mode:
Diffstat (limited to 'cccfetch')
-rwxr-xr-xcccfetch25
1 files changed, 0 insertions, 25 deletions
diff --git a/cccfetch b/cccfetch
deleted file mode 100755
index d0bf3ce..0000000
--- a/cccfetch
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /usr/bin/env python3
-##
-## coinfetch - Cryptocurrency price fetcher
-## Copyright (C) 2015 Delwink, LLC
-##
-## This program is free software: you can redistribute it and/or modify
-## it under the terms of the GNU Affero General Public License as published by
-## the Free Software Foundation, version 3 only.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU Affero General Public License for more details.
-##
-## You should have received a copy of the GNU Affero General Public License
-## along with this program. If not, see <http://www.gnu.org/licenses/>.
-##
-
-from sys import argv
-from coinfetchapi import *
-
-try:
- coinfetch(['--api=ccc'] + argv[1:])
-except UsageException as e:
- print_usage(e)