https://github.com/controversial/pybb
A Python interface to NodeBB forums
https://github.com/controversial/pybb
Last synced: 5 months ago
JSON representation
A Python interface to NodeBB forums
- Host: GitHub
- URL: https://github.com/controversial/pybb
- Owner: controversial
- License: mit
- Created: 2016-04-17T15:55:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-20T23:47:02.000Z (over 9 years ago)
- Last Synced: 2025-07-26T19:10:20.277Z (11 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyBB
A Python interface to NodeBB forums.
Implements classes for:
- Forums
- Users
I plan to add classes for:
- Topics
- Posts
Also tries to implement 'smart' methods for returning data:
- Return a datetime object for any time-related value
## Example usage
```python
# Get object for omz-software forums
forum = Forum('https://forum.omz-software.com/')
# print forum title
print(forum.title)
# get a forum user and show their profile picture
u = forum.User('Webmaster4o')
u.image.show()
```