-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from guilyx/bump-version
Bump Version to v1.0.0
- Loading branch information
Showing
11 changed files
with
348 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ parsers: | |
|
||
ignore: | ||
- "setup.py" | ||
- "examples/*" | ||
|
||
comment: | ||
layout: "reach,diff,flags,files,footer" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.0.0] - 03-10-2022 | ||
### Added | ||
- This CHANGELOG file to hopefully serve as an evolving example of a | ||
standardized open source project CHANGELOG. | ||
- Class Objects for API Responses, serialized from JSON. | ||
- Endpoints documentation | ||
|
||
### Changed | ||
- HMAC Signature Generation has been fixed | ||
|
||
### Removed | ||
- main.py is now removed. To try out the library, users will now use docker-compose, attach to it, run python, import the project and run some methods. | ||
|
||
## [0.0.1] - 02-10-2022 | ||
### Added | ||
- Basic API Client with faulty HMAC Signature Generation | ||
- All Endpoints wrapped | ||
- Readme with examples, setup steps | ||
- Custom Exceptions based on Nexo's API | ||
- Basic Tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import nexo | ||
import os | ||
from dotenv import load_dotenv | ||
|
||
load_dotenv() | ||
|
||
key = os.getenv("NEXO_PUBLIC_KEY") | ||
secret = os.getenv("NEXO_PUBLIC_KEY") | ||
|
||
client = nexo.Client(key, secret) | ||
balances = client.get_account_balances() | ||
print(balances) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.