Skip to content

Commit b397b64

Browse files
authored
Update README.md
1 parent 87c9de0 commit b397b64

File tree

1 file changed

+42
-1
lines changed

1 file changed

+42
-1
lines changed

README.md

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,42 @@
1-
InstaQuoteBot
1+
# InstaQuoteBot
2+
3+
## Overview
4+
InstaQuoteBot is a Python script designed to automate the process of generating and posting quote images to Instagram. It utilizes the InstaBot Python module to handle Instagram interactions. The script prompts the user to log in, fetches quotes and authors from an API, generates images using two different templates in an alternating fashion, and finally posts them to Instagram with default captions and hashtags.
5+
6+
## Requirements
7+
- Python 3.x
8+
- InstaBot Python module
9+
- Image Processing / Editing libraries (e.g., Pillow)
10+
11+
## Installation
12+
1. Clone this repository:
13+
```bash
14+
https://github.com/codeterrayt/InstaQuoteBot.git
15+
```
16+
2. Navigate to the project directory:
17+
```bash
18+
cd InstaQuoteBot
19+
```
20+
3. Install dependencies:
21+
To use the InstaQuoteBot script, you need to ensure that you have the following dependencies installed:
22+
```bash
23+
pip install instabot requests pillow numpy
24+
```
25+
26+
4. Run the Script
27+
```bash
28+
python main.py
29+
```
30+
31+
## Configuration
32+
33+
- **Image Templates:** Replace the template files in the `templates` directory with your desired image templates. Ensure that the templates are appropriately sized and formatted. You can modify the templates directly from the code by editing the [GeneateImage.py](GeneateImage.py).
34+
35+
- **Default Caption and Hashtags:** Modify the default caption and hashtags in the script to suit your preferences. You can find these in the script and adjust them accordingly.
36+
37+
38+
## Contributing
39+
Contributions are welcome! If you'd like to add new features, improve existing ones, or fix any issues, feel free to submit a pull request.
40+
41+
## License
42+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)