An open API service indexing awesome lists of open source software.

https://github.com/rohitdusane/digital_cv


https://github.com/rohitdusane/digital_cv

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Digital CV Streamlit App

This project demonstrates a digital CV built with **Streamlit**, a Python library that makes it easy to create web applications. The app is designed to display your personal details, skills, experience, and more, in an interactive and visually appealing format.

The app uses the following libraries:

- **Streamlit**: A powerful library for creating web applications with minimal effort.
- **Pillow**: A Python Imaging Library (PIL) fork that allows you to work with images.
- **CSS (in the `style` folder)**: Custom CSS styles for improving the app's design.

---

## Project Structure

The project is structured as follows:

Digital-CV/

├── app.py # Main application script (Streamlit app)
├── style/ # Folder containing custom CSS for styling
│ └── style.css # Custom CSS file for styling the app
└── images/ # Folder containing images to be used in the CV
└── profile.jpg # Profile image (can be replaced with your own)

### Key Files

- **`app.py`**: The main Python file for the Streamlit app, which defines the layout and content of your digital CV.
- **`style/style.css`**: A custom CSS file to style the app and make it visually appealing. You can modify this file to match your personal style.
- **`images/`**: Folder containing image files such as your profile photo. You can add additional images here.

---