-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
24 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Changelog of the PyStackAPI library | ||
|
||
## 0.1.1 (25.09.2023) | ||
|
||
### Added: | ||
|
||
+ method `__str__` to class `Item` for more pretty result printing. |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# ![](logo.png) | ||
|
||
Here is PyStackAPI version 0.1.0 | ||
Here is PyStackAPI version 0.1.1 | ||
|
||
## What is PyStackAPI? | ||
|
||
|
@@ -11,7 +11,7 @@ PyStackAPI is a modern, 100% typed wrapper for the StackExchange API, written in | |
To install PyStackAPI, just enter in the terminal: | ||
|
||
```shell | ||
pip install git+https://github.com/wchistow/[email protected].0 | ||
pip install git+https://github.com/wchistow/[email protected].1 | ||
``` | ||
|
||
## Documentation | ||
|
@@ -36,5 +36,17 @@ print(f'Total questions on StackOverflow: {info.total_questions}') | |
Output: | ||
|
||
```text | ||
Total questions in StackOverflow: 23789952 | ||
Total questions on StackOverflow: 23789952 | ||
``` | ||
|
||
## Changelog | ||
|
||
You can find the changelog for the PyStackAPI library in file [CHANGELOG.md](https://github.com/wchistow/pystackapi/blob/master/CHANGELOG.md). | ||
|
||
## Contributing | ||
|
||
Want to contribute? | ||
|
||
1. fork this repository; | ||
2. do something with code (see [developers' guide](https://github.com/wchistow/pystackapi/blob/master/CONTRIBUTING.md)); | ||
3. create pull request. |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .network import Network | ||
from .site import Site | ||
|
||
__version__ = '0.1.0' | ||
__version__ = '0.1.1' | ||
__all__ = ('Site', 'Network', 'sites', 'errors', 'item') |