https://github.com/rohitdusane/digital_cv
https://github.com/rohitdusane/digital_cv
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rohitdusane/digital_cv
- Owner: RohitDusane
- Created: 2025-02-28T15:01:46.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2025-02-28T15:19:28.000Z (3 months ago)
- Last Synced: 2025-02-28T20:41:40.781Z (3 months ago)
- Language: CSS
- Size: 2.44 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.---