A simple image board built with Python and Flask.
- Image Boards: Create and participate in image boards on different topics.
- Text Board: A text-only board for discussions.
- Customizable Themes: The look and feel of the boards can be customized with different themes, including glassy, acrylic, and Frutiger Aero.
- API: A simple API to fetch text posts.
-
Clone the repository:
git clone https://github.com/korrykatti/python-image-board.git -
Install the dependencies:
pip install -r requirements.txt -
Run the application:
python main.py
You can fetch a single text post by its ID using the following API endpoint:
/api/post/<post_id>
Example response:
{
"title": "Hello, world!",
"content": "This is my first post on the text board.",
"timestamp": 1678886400
}