Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RDCH106/pycoinmon
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.8
Choose a base ref
...
head repository: RDCH106/pycoinmon
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 3 files changed
  • 1 contributor

Commits on Nov 19, 2019

  1. Update README.md

    RDCH106 authored Nov 19, 2019
    Copy the full SHA
    01f94a1 View commit details
  2. Copy the full SHA
    fa73935 View commit details

Commits on Nov 20, 2019

  1. Copy the full SHA
    47adf41 View commit details
  2. Copy the full SHA
    4981117 View commit details
  3. Copy the full SHA
    2eee09e View commit details

Commits on Nov 21, 2019

  1. Copy the full SHA
    b8de04b View commit details
  2. Copy the full SHA
    be75cbb View commit details

Commits on Apr 15, 2020

  1. Add ⚠️ notice

    RDCH106 authored Apr 15, 2020
    Copy the full SHA
    c3bc3c1 View commit details
Showing with 9 additions and 6 deletions.
  1. +2 −1 .travis.yml
  2. +3 −1 README.md
  3. +4 −4 setup.py
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
# command to install dependencies
install:
- pip install .
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
![logo](https://raw.githubusercontent.com/RDCH106/pycoinmon/master/logo.png)

**⚠️ Pycoinmon will be out of service until the migration to the new CoinCap API is performed**

# About pyCOINMON

[![PyPI](https://img.shields.io/pypi/v/pycoinmon.svg)](https://pypi.python.org/pypi/pycoinmon)
@@ -61,7 +63,7 @@ $ pycoinmon -f btc eth // search coins included keyword btc or eth
```

You can use the `-l` (or `--layout`) with template name to print the table with different style.
The default layout template is grid and it supports plain, simple, fancy_grid, pipe, orgtbl, 'presto', 'psql', 'rst'.
The default layout template is grid and it supports plain, simple, grid, fancy_grid, pipe, orgtbl, presto, psql, rst.

```
$ pycoinmon -l plain // show table with plain style
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -145,9 +145,9 @@ def requirements():
keywords = 'bitcoin criptocurrency crypto ticker python cli price-tracker command-line',
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
)
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'],
)