| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Dive into the ease of presentation creation with PowerPoint Generator, a smart web application crafted to automate PowerPoint presentations! π This project is ripe for growth and eager for your contributions. Let's enhance its capability together! π
project_demo.movIf you want to learn how to use the GPT API for creating PowerPoint presentations or understand how the project is organized, check out CODE_STRUCTURE.md. π§ In this document, I explain the code and the relationships between different parts of the code.
If you want to try using this project, here is a step-by-step guide. Those who want to contribute to (which is welcome!), please check How to Contribute
Step 1: Star The Repo βοΈStar the repo to start using this project π
Open your terminal and run the following command:
git clone https://github.com/otahina/PowerPoint-Generator-Python-Project.gitOn Windows πͺ
python -m venv venv
.\venv\Scripts\activate
pip install -r requirements.txtOn macOS and Linux π§
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtβ οΈ This step is very important to make the project work! please make sure if you set up everything correctly. Instruction βΆοΈ Setup the Secret Key and OpenAI Key
Navigate to myapp directory. Run flaskapp.py
python3 myapp/flaskapp.pyThank you for considering how you can contribute to the project! β¨
Step 1: Star The Repo βοΈStar the repo to start your contribution βοΈ
On the GitHub page for this repository, click on the Button "Fork".
β οΈ NOTE: If you're not familiar with Git, using GitHub Desktop Application is a better start. If you choose this method, make sure to download it before continuing reading.
ββ Access link to download here.
Clone the forked repository. Open terminal (command prompt) and type:
git clone https://github.com/<your-github-username>/PowerPoint-Generator-Python-Project.gitThis makes a local copy of the repository in your machine.
β οΈ Replace <your-github-username>!
Always keep your local copy of the repository updated with the original repository. Before making any changes and/or in an appropriate interval, follow the following steps:
Learn more about how to create new branch here and how to fetch and pull origin from/to your local machine here.
Learn more about how to fetch and pull origin from/to your local machine using GitHub Desktop here.
Run the following commands carefully to update your local repository.
# If you cloned a while ago, get the latest changes from upstream
git checkout main
git remote add upstream https://github.com/otahina/PowerPoint-Generator-Python-Project.git
git pull upstream main
# Make a feature branch (Always check your current branch is up to date before creating a new branch from it to avoid merge conflicts)
git checkout -b <branch-name>
Thank you for your contribution! I'll check your pull request. π
If you want to learn more about how to contribute, visit CONTRIBUTING.md.
The application uses a secret key for session management and an OpenAI key for the GPT-3.5 Turbo API. These keys are defined as environment variables, and you can easily set them up using the provided .env.example file.
SECRET_KEY=your_secret_key OPENAI_KEY=your_openai_key PEXELS_API_KEY=your_pexels_key
Here's a brief description of each key and how to obtain them:
SECRET_KEY: πThis is used for web application security such as session management. You can create your own secure, random string for this.
OPENAI_KEY: π€This is required to access the OPENAI API. Although there's a limitation with the free version, it's sufficient for trying out this web application on your local machine. You can obtain this key by creating an account on the https://platform.openai.com.
PEXELS_API_KEY: ποΈ This key is used for the free image search API provided by Pexels. It's very useful for adding creative images to your presentations. You can get this key by creating a free account on the https://www.pexels.com/api After registering, the API key is automatically generated for you.
Have a question, idea, or want to contribute? Join us in Discussions!
Ota Hina Gagandeep SinghThis project is licensed under the terms of the MIT license.
| Back | FazBrowse Home | New Git URL |