"""Data management for the bot"""from.db_managerimportDbManager
[docs]classPostData:"""Class that handles the management of persistent data fetch or manipulation in the post bot"""
[docs]@staticmethoddefget_n_posts()->int:"""Gets the total number of posts Returns: total number of posts """returnDbManager.count_from(table_name="published_post")