John Doknjas

Results 9 issues of John Doknjas

Note - since this PR is quite big, please merge the other PRs into master first. I'll then resolve any conflicts for this PR. Closes #110 This PR allows the...

Inspired by issue #113, it's probably best to change a few things about self.depth. Not required per se, but maybe better practice. - Have it be an int instead of...

Hi @Snuggle, this PR adds the following to hypixel.py: - A function to get a list of a player's friends (their UUIDs). - A function that returns whether a player...

Hi, not sure if this is the right place for this, but I noticed on PyPI that the current release is from July 31, 2020. I think this means that...

Some discussion of this function in PR #124. If possible, would be good to make this function more accurate, although this may be challenging. The function works by checking if...

When finding the exp from one level to the next, handle cases where the latter is a multiple of 100. Currently in master the program tries to use an index...

This PR doesn't do any functional change, it just makes the implementation of getTotalExpToFullLevel a bit simpler to understand.

``` def first() -> None: print('hi') def second(recurse: bool = False) -> None: if recurse: second() ``` For this code snippet, vulture correctly labels `first` as unused, but it doesn't...

Hi, just realized that my previous PR uses some features that require at least python 3.8. So this PR just updates the requirements to match that. If this isn't ideal...