Skip to content

Commit

Permalink
Many methods implemented, fixes and code improving
Browse files Browse the repository at this point in the history
  • Loading branch information
havocesp committed Jul 28, 2019
1 parent 00ed7ef commit 9a8aea0
Show file tree
Hide file tree
Showing 11 changed files with 800 additions and 246 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/cryptocmpy.egg-info/
/cryptocmpy/__pycache__/
/.idea/
build/
dist/
docs/
.mypy_cache/
/mkdocs.yml
22 changes: 3 additions & 19 deletions cryptocmpy/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,24 +1,8 @@
# -*- coding:utf-8 -*-
"""
CryptoCmpy
""" CryptoCmpy
Python 3 "CryptoCompare" site API wrapper.
"""
from cryptocmpy.core import CryptoCmpy

__project__ = 'CryptoCmpy'
__package__ = 'cryptocmpy'

__author__ = 'Daniel J. Umpierrez'
__license__ = 'UNLICENSE'
__version__ = '0.1.2'

__description__ = __doc__

__site__ = 'https://github.com/havocesp/{}'.format(__package__)
__email__ = 'umpierrez@pm.me'

__keywords__ = ['altcoins', 'altcoin', 'exchange', 'mining', 'cryptocompare', 'crypto', 'compare', 'api', 'wrapper']
from cryptocmpy.core import CryptoCmpy, CryptoNews, CryptoSocialStats

__all__ = ['__description__', '__author__', '__license__', '__version__', '__package__', '__project__', '__site__',
'__email__', '__keywords__', 'CryptoCmpy']
__all__ = ['CryptoCmpy', 'CryptoNews', 'CryptoSocialStats']

0 comments on commit 9a8aea0

Please sign in to comment.