Skip to content

Commit f315c85

Browse files
committed
Version bump to v2.6.0, README updated
1 parent c5eadb5 commit f315c85

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ This miner is written in Python 3, and should be run in a Python 3.x environment
8888
| `getRemainingRateLimit()` | `int` | Obtains the numerical count of the remaining GitHub REST API (v3) calls allowed before reaching the rate limit. |
8989
| `printRemainingRateLimit()` | `None` | Prints the numerical count of the remaining GitHub API (v3) calls allowed before reaching the rate limit. |
9090
| `repoExists(user, repo)` | `bool` | Calls the GitHub REST API (v3) using a GET request with a URL of the form `https://api.github.com/repos/{user}/{repo}` and indicates whether that response was successful (i.e. whether the repository exists on GitHub). |
91+
| `writeData(path, data)` | `None` | Writes a UTF-8 encoded JSON file containing the serialized `data` to the indicated `path`. |
92+
| `readData(path)` | `list` | Reads a UTF-8 encoded JSON file from the indicated `path` using [`bigjson`](https://github.com/henu/bigjson) for handling large JSON datasets and outputting to a Python object that operates similar to a `list`. |
9193

9294
## License
9395

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from distutils.core import setup
55

66
setup(name='MinerUtils',
7-
version='2.5.5',
7+
version='2.6.0',
88
description='GitHub API Access Utilities',
99
author='Nicholas Nelson & Caius Brindescu',
1010
author_email='[email protected]',

0 commit comments

Comments
 (0)