https://github.com/humanshu001/python-tools-for-web-developers
Tools made in Python for making work more simpler for a Web Developers
https://github.com/humanshu001/python-tools-for-web-developers
essential python tools webdevelopment
Last synced: 2 months ago
JSON representation
Tools made in Python for making work more simpler for a Web Developers
- Host: GitHub
- URL: https://github.com/humanshu001/python-tools-for-web-developers
- Owner: humanshu001
- Created: 2024-02-27T15:57:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-05T16:02:13.000Z (about 1 year ago)
- Last Synced: 2025-01-13T09:36:41.430Z (4 months ago)
- Topics: essential, python, tools, webdevelopment
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic Tools for Web Developers
- These tools are made in Python and are used to make the life of a web developer easier, like converting image files to webp format, markdown to html, etc.## Tools
### 1. [Markdown to HTML](Tools/convertmd2html.py)
- This tool is used to convert markdown files to html files. It uses the `markdown` library to convert the markdown to html.
> **Note:** Code blocks are not supported in this tool.### 2. [Image to WebP](Tools/convertimg2webp.py)
- This tool is used to convert image files to webp format. It uses the `PIL` library to convert the image to webp.
> **Note:** This tool only supports `.jpg` and `.png` files.### 3. [Image to Base64](Tools/convertimg2base64.py)
- This tool is used to convert image files to base64 format and copies it to your clipboard. It uses the `base64` library to convert the image to base64.
> **Note:** This tool only supports `.jpg` and `.png` files.