Metadata-Version: 2.1
Name: wimby
Version: 1.1.14
Summary: Arkivist is a lightweight manager for JSON files.
Home-page: https://github.com/rmaniego/wimby
Author: Rodney Maniego Jr.
Author-email: rod.maniego23@gmail.com
License: MIT
Download-URL: https://github.com/rmaniego/wimby/archive/v1.0.tar.gz
Keywords: cryptocurrency,analytics,weighted averages
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

![](/resources/banner.png)

# wimby
Wimby is a lean cryptocurrency analytics, using periodic weighted averages.

## Official Release
**Wimby** can now be used on your Python projects through PyPi by running pip command on a Python-ready environment.

`pip install wimby --upgrade`

## Usage
**1. Import Package**
```python
from wimby import Wimby
```

**2. Initialization**
```python
# set a list of coin aliases
coins = ["bitcoin"]

# initialize
analytics = Wimby(coins)

# aliased coin validation
coins = ["btc"]
analytics = Wimby(coins, aliased=True)

# add coin aliases one-by-one
analytics.add("eth")

# or replace with new a list of coins
coins = ["ethereum", "dogecoin"]
analytics.change(coins)

# perform analysis
analytics.analyze()

# arkivist object
momentum = analytics.momentum

# arkivist object
movers = analytics.movers

```

