Skip to content

gateyourprojectdone2025/PythonProjects

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

10 Commits
Β 
Β 

Repository files navigation

1.Car Dealership Management System.

2.Invoice and Product Management System Using Python.

3.Online Shopping and Delivery System.

4.College Management System.

5.A Smart Blogging & Content Sharing Platform.

6.Library Management System.

7.Hotel Management System Using Python,Django.

8.Pizza Ordering App System Using Python, Django.

9.Online Food Ordering and Delivery System Using Python.

10.Blood Management System Using Python.

1.Car Dealership Management System.

πŸš— Car Dealership Management System

image

A Car Rental Management System built to simplify the process of renting vehicles for users and managing cars, bookings, and customers for administrators. This system allows users to browse available cars, make bookings, and manage their rentals efficiently. It is designed with modular architecture, offering both frontend and backend functionalities.


🧰 Features

πŸ‘₯ User Features

  • User registration and login (authentication & authorization)
  • Browse available cars with details (model, rent, type, status)
  • Search and filter cars based on requirements
  • Book a car for specific dates
  • View and cancel bookings
  • Secure payment gateway integration (optional)

πŸ§‘β€πŸ’Ό Admin Features

  • Admin dashboard for managing the system
  • Add, update, and remove cars
  • Manage customer details and bookings
  • View all rental transactions
  • Generate reports (daily/weekly/monthly)

πŸ—οΈ System Architecture

Frontend:

  • HTML, CSS, JavaScript
  • (Optional: React.js for dynamic frontend)

Backend:

  • Node.js with Express.js (or PHP / Java / Python Flask – depending on implementation)

Database:

  • MySQL / MongoDB for data storage

Additional Tools:

  • JWT for authentication
  • Bcrypt for password hashing
  • RESTful API for communication between frontend and backend

πŸ—‚οΈ Project Structure

car-rental-management/
β”‚
β”œβ”€β”€ backend/
β”‚ β”œβ”€β”€ server.js
β”‚ β”œβ”€β”€ package.json
β”‚ β”œβ”€β”€ routes/
β”‚ β”œβ”€β”€ controllers/
β”‚ β”œβ”€β”€ models/
β”‚ └── config/
β”‚
β”œβ”€β”€ frontend/
β”‚ β”œβ”€β”€ public/
β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”œβ”€β”€ components/
β”‚ β”‚ β”œβ”€β”€ pages/
β”‚ β”‚ β”œβ”€β”€ App.js
β”‚ β”‚ └── index.js
β”‚ └── package.json
β”‚
β”œβ”€β”€ database/
β”‚ └── car_rental.sql
β”‚
β”œβ”€β”€ README.md
└── .gitignore

βš™οΈ Installation & Setup

1️⃣ Clone the repository

git clone https://github.com/yourusername/car-rental-management.git

2️⃣ Navigate to the project directory

cd car-rental-management

3️⃣ Install backend dependencies

cd backend
npm install

4️⃣ Install frontend dependencies (if applicable)

cd ../frontend
npm install

5️⃣ Set up database


Import car_rental.sql into your MySQL database

Update your database credentials in backend/config/db.js

6️⃣ Run the backend server

cd backend
npm start

7️⃣ Run the frontend

cd frontend
npm start

2.Invoice and Product Management System Using Python.

🧾 Invoice and Product Management System Using Python

image

The Invoice and Product Management System is a desktop-based application designed to simplify product inventory handling and automate the process of generating invoices. It allows users to manage product details, track sales, and print invoices efficiently using Python.


🧰 Features

πŸ§‘β€πŸ’Ό Admin / User Features

  • Add, update, delete, and view product details
  • Generate and print invoices
  • Automatically calculate total amounts, discounts, and taxes (GST/VAT)
  • Store customer details for future reference
  • Maintain a searchable product inventory
  • Export invoice reports to PDF or Excel
  • Simple and clean graphical user interface (GUI)

πŸ—οΈ System Architecture

Frontend (GUI):

  • Python tkinter or PyQt5 (for GUI design)

Backend (Logic & Storage):

  • Python (Core logic and event handling)
  • SQLite / MySQL (for storing product and invoice data)
  • reportlab or fpdf (for generating invoices in PDF format)

πŸ—‚οΈ Project Structure

invoice-product-management/
β”‚
β”œβ”€β”€ main.py
β”œβ”€β”€ database.py
β”œβ”€β”€ product.py
β”œβ”€β”€ invoice.py
β”œβ”€β”€ utils/
β”‚ β”œβ”€β”€ pdf_generator.py
β”‚ └── helpers.py
β”œβ”€β”€ assets/
β”‚ β”œβ”€β”€ logo.png
β”‚ └── icon.ico
β”œβ”€β”€ data/
β”‚ └── database.db
β”œβ”€β”€ README.md
└── requirements.txt

βš™οΈ Installation & Setup

1️⃣ Clone the repository

git clone https://github.com/yourusername/invoice-product-management.git

2️⃣ Navigate to the project folder

bash
cd invoice-product-management

3️⃣ Install dependencies

pip install -r requirements.txt

4️⃣ Run the application

python main.py

3.Online Shopping and Delivery System.

πŸ›’ Online Shopping and Delivery System

image

The Online Shopping and Delivery System is a full-stack web application designed to provide a seamless online shopping experience for users and efficient order management for administrators. It enables customers to browse products, place orders, and track deliveries, while the admin manages products, users, and orders through an intuitive dashboard.


🧰 Features

πŸ‘€ User Features

  • User registration and login (secure authentication)
  • Browse and search products by category
  • Add products to the shopping cart
  • Place and track orders
  • View order history and invoices
  • Manage delivery address and profile
  • Online payment gateway integration (optional)

πŸ§‘β€πŸ’Ό Admin Features

  • Manage products (Add, Edit, Delete)
  • Manage users and customer data
  • Manage orders and delivery status
  • Generate sales reports and insights
  • Admin login and dashboard

πŸ—οΈ System Architecture

Frontend:

  • HTML, CSS, JavaScript
  • (Optional: React.js or Angular for dynamic UI)

Backend:

  • Node.js with Express.js / Python Flask / PHP (based on your stack choice)

Database:

  • MySQL / MongoDB for data storage

Additional Tools:

  • JWT for authentication
  • Bcrypt for password hashing
  • RESTful APIs for client-server communication

πŸ—‚οΈ Project Structure

online-shopping-delivery/
β”‚
β”œβ”€β”€ backend/
β”‚ β”œβ”€β”€ server.js
β”‚ β”œβ”€β”€ routes/
β”‚ β”œβ”€β”€ controllers/
β”‚ β”œβ”€β”€ models/
β”‚ β”œβ”€β”€ middleware/
β”‚ β”œβ”€β”€ config/
β”‚ └── package.json
β”‚
β”œβ”€β”€ frontend/
β”‚ β”œβ”€β”€ public/
β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”œβ”€β”€ components/
β”‚ β”‚ β”œβ”€β”€ pages/
β”‚ β”‚ β”œβ”€β”€ App.js
β”‚ β”‚ └── index.js
β”‚ └── package.json
β”‚
β”œβ”€β”€ database/
β”‚ └── schema.sql
β”‚
β”œβ”€β”€ README.md
└── .gitignore

βš™οΈ Installation & Setup

1️⃣ Clone the repository

git clone https://github.com/yourusername/online-shopping-delivery.git

2️⃣ Navigate to the project directory

cd online-shopping-delivery

3️⃣ Install backend dependencies

cd backend
npm install

4️⃣ Install frontend dependencies (if applicable)

cd ../frontend
npm install

5️⃣ Configure Database

Import schema.sql into MySQL database

Update credentials in backend/config/db.js

6️⃣ Run the backend server

cd backend
npm start

7️⃣ Run the frontend

cd frontend
npm start

4.College Management System.

πŸŽ“ College Management System

image

The College Management System (CMS) is a full-stack application designed to automate and streamline the day-to-day administrative and academic operations of a college. It allows administrators, teachers, and students to interact within a centralized system for managing courses, attendance, grades, and communication efficiently.


🧰 Features

πŸ‘¨β€πŸ« Admin Features

  • Manage students, faculty, and departments
  • Manage courses, subjects, and class schedules
  • View attendance reports and grade summaries
  • Generate reports (student list, fee reports, performance)
  • Manage user roles (Admin, Faculty, Student)

πŸ§‘β€πŸ« Faculty Features

  • Add and update student attendance
  • Upload marks, assignments, and study materials
  • View student performance
  • Communicate with students via notice or announcement system

πŸ‘©β€πŸŽ“ Student Features

  • View personal profile, attendance, and marks
  • Access assignments and study materials
  • View class timetable
  • Download report cards
  • Receive notifications and announcements

πŸ—οΈ System Architecture

Frontend:

  • HTML, CSS, JavaScript
  • (Optional: React.js / Angular for dynamic UI)

Backend:

  • Node.js with Express.js / Python Django / PHP

Database:

  • MySQL / MongoDB

Authentication:

  • JWT or Session-based authentication
  • Role-based access control

πŸ—‚οΈ Project Structure

college-management-system/
β”‚
β”œβ”€β”€ backend/
β”‚ β”œβ”€β”€ server.js
β”‚ β”œβ”€β”€ routes/
β”‚ β”œβ”€β”€ controllers/
β”‚ β”œβ”€β”€ models/
β”‚ β”œβ”€β”€ config/
β”‚ └── package.json
β”‚
β”œβ”€β”€ frontend/
β”‚ β”œβ”€β”€ public/
β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”œβ”€β”€ components/
β”‚ β”‚ β”œβ”€β”€ pages/
β”‚ β”‚ β”œβ”€β”€ App.js
β”‚ β”‚ └── index.js
β”‚ └── package.json
β”‚
β”œβ”€β”€ database/
β”‚ └── college_db.sql
β”‚
β”œβ”€β”€ README.md
└── .gitignore

βš™οΈ Installation & Setup

1️⃣ Clone the repository

git clone https://github.com/yourusername/college-management-system.git

2️⃣ Navigate to the project directory

cd college-management-system

3️⃣ Install backend dependencies

cd backend
npm install

4️⃣ Install frontend dependencies (if applicable)

cd ../frontend
npm install

5️⃣ Configure Database

Import college_db.sql into MySQL

Update database credentials in backend/config/db.js

6️⃣ Run the backend server

cd backend
npm start

7️⃣ Run the frontend

cd frontend
npm start

5.A Smart Blogging & Content Sharing Platform.

🧠 Smart Blogging & Content Sharing Platform

image

A smart, AI-assisted blogging and content-sharing platform built using Python that enables users to create, share, and interact with blog posts. The system includes intelligent recommendations, user authentication, and a clean responsive interface for writers and readers.

πŸš€ Features

πŸ“ Blogging System

-Create, edit, and delete blog posts easily.

-Rich text editor for creating formatted content.

-Add categories, tags, and featured images.

-Auto-save draft functionality.

πŸ‘€ User Management

-User registration and login (with password hashing).

-Profile management (bio, image, social links).

-Role-based access: Admin / Author / Reader.

πŸ’¬ Social & Interactive Features

-Like and comment on posts.

-Follow/unfollow authors.

-Trending & popular posts section.

πŸ€– Smart Features

-AI-powered article suggestions.

-Automatic tag generation using NLP.

-Content summarization & grammar correction.

Steps to Run Locally

Navigate into the project folder

cd smart-blogging-platform-python

Create a virtual environment

python -m venv venv

Activate virtual environment For Windows:

venv\Scripts\activate

For Linux/Mac:

source venv/bin/activate

Install dependencies

pip install -r requirements.txt

πŸ“ Folder Structure

smart-blogging-platform-python/
β”‚
β”œβ”€β”€ app.py or manage.py
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ .env
β”œβ”€β”€ templates/
β”‚   β”œβ”€β”€ base.html
β”‚   β”œβ”€β”€ index.html
β”‚   β”œβ”€β”€ post_detail.html
β”‚   β”œβ”€β”€ profile.html
β”‚
β”œβ”€β”€ static/
β”‚   β”œβ”€β”€ css/
β”‚   β”œβ”€β”€ js/
β”‚   └── images/
β”‚
β”œβ”€β”€ models/
β”‚   β”œβ”€β”€ user.py
β”‚   β”œβ”€β”€ post.py
β”‚
└── README.md

6.Library Management System.

πŸ“š Library Management System

image

A Library Management System (LMS) built using Python that helps librarians and users manage books efficiently. The system allows adding, updating, issuing, and returning books with real-time availability tracking. It provides a simple interface for both admin and users to maintain and access library records easily.

πŸš€ Features

🏫 Admin Features

-Add, update, and delete books.

-Manage student records.

-Issue and return books.

-View all issued books and due dates.

πŸ‘¨β€πŸŽ“ User Features

-Search for books by title, author, or category.

-View book availability.

-Request or reserve books.

-Maintain a history of borrowed books.

πŸ’Ύ System Features

-Real-time book availability tracking.

-Fine calculation for late returns.

-Login authentication for users and admin.

-Data stored securely in a database.

Navigate into the project folder

cd library-management-system

Create a virtual environment

python -m venv venv

Activate virtual environment

For Windows:

venv\Scripts\activate

For Linux/Mac:

source venv/bin/activate

Install dependencies

pip install -r requirements.txt

Run the Application

-For Flask:

python app.py

-For Django:

python manage.py runserver

πŸ“ Folder Structure

library-management-system/
β”‚
β”œβ”€β”€ app.py or manage.py
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ .env
β”œβ”€β”€ templates/
β”‚   β”œβ”€β”€ index.html
β”‚   β”œβ”€β”€ add_book.html
β”‚   β”œβ”€β”€ issue_book.html
β”‚   β”œβ”€β”€ return_book.html
β”‚
β”œβ”€β”€ static/
β”‚   β”œβ”€β”€ css/
β”‚   β”œβ”€β”€ js/
β”‚   └── images/
β”‚
β”œβ”€β”€ models/
β”‚   β”œβ”€β”€ book.py
β”‚   β”œβ”€β”€ student.py
β”‚   β”œβ”€β”€ issue.py
β”‚
└── README.md

7 Hotel Management System Using Python & Django

image

πŸ“˜ Overview

The Hotel Management System is a web-based application built using Python and the Django Framework. It streamlines hotel operations such as room reservations, customer management, check-in/check-out processes, and billing. This system helps hotels manage their day-to-day tasks efficiently, reducing manual errors and improving guest experience.

🎯 Objectives

-To manage hotel room bookings and availability digitally.

-To provide a user-friendly interface for both administrators and customers.

-To automate guest check-in/check-out and billing processes.

-To maintain a centralized database for all hotel operations.

πŸš€ Key Features

πŸ‘¨β€πŸ’Ό Admin Panel

-Add, edit, delete room details.

-Manage customer data and booking records.

-Approve or reject room booking requests.

-View revenue reports and booking statistics.

-Generate and print invoices.

πŸ‘€ Customer Panel

-User registration and secure login.

-Search for available rooms by date or type.

-Book, modify, or cancel reservations.

-View booking history and payment status.

πŸ’‘ System Features

-Automated room availability updates.

-Role-based authentication (Admin/User).

-Email notifications for booking confirmation.

-Responsive UI for desktop and mobile devices.

Setup Steps

2️⃣ Navigate to the project directory

cd hotel-management-system

3️⃣ Create a virtual environment

python -m venv venv

4️⃣ Activate the environment

Windows

venv\Scripts\activate

macOS/Linux

source venv/bin/activate

5️⃣ Install dependencies

pip install -r requirements.txt

6️⃣ Apply database migrations

python manage.py migrate

7️⃣ Create an admin user

python manage.py createsuperuser

8️⃣ Run the development server

python manage.py runserver

πŸ“ Folder Structure

hotel-management-system/
β”‚
β”œβ”€β”€ manage.py
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ db.sqlite3
β”‚
β”œβ”€β”€ hotel/
β”‚   β”œβ”€β”€ admin.py
β”‚   β”œβ”€β”€ apps.py
β”‚   β”œβ”€β”€ forms.py
β”‚   β”œβ”€β”€ models.py
β”‚   β”œβ”€β”€ urls.py
β”‚   β”œβ”€β”€ views.py
β”‚   └── templates/
β”‚       β”œβ”€β”€ base.html
β”‚       β”œβ”€β”€ home.html
β”‚       β”œβ”€β”€ booking.html
β”‚       β”œβ”€β”€ admin_dashboard.html
β”‚       β”œβ”€β”€ room_list.html
β”‚       └── invoice.html
β”‚
└── static/
    β”œβ”€β”€ css/
    β”œβ”€β”€ js/
    └── images/

8.Pizza Ordering App System Using Python, Django.

πŸ• Pizza Ordering App System Using Python & Django

image

πŸ“˜ Overview

The Pizza Ordering App System is a web-based application built using Python and Django Framework. It enables users to order pizzas online, customize toppings and sizes, and track orders in real time. Admins can manage the menu, view orders, and handle deliveries efficiently through the admin dashboard.

🎯 Objectives

-To provide a convenient platform for customers to order pizzas online.

-To allow restaurant admins to manage menus and orders effectively.

-To track real-time orders and improve food delivery operations.

-To automate billing and record-keeping.

πŸš€ Key Features

πŸ‘€ Customer Features

-Register and log in securely.

-Browse pizza menu with prices and images.

-Customize pizzas (size, crust, toppings).

-Add to cart, update quantity, and checkout.

-Track order status (Pending, In Progress, Delivered).

-View order history and receipts.

πŸ‘¨β€πŸ³ Admin Features

Manage pizza categories and menu items.

Update prices, toppings, and availability.

Manage customer orders and delivery status.

Generate reports on total sales and orders.

πŸ’‘ System Features

-Authentication and role-based access (Admin/User).

-Responsive design for mobile and desktop.

-Automated order ID generation.

πŸ—οΈ Tech Stack

-Layer Technology -Frontend HTML5, CSS3, Bootstrap, JavaScript -Backend Python, Django Framework -Database SQLite / MySQL -Authentication Django Authentication System -Payment (Optional) Razorpay / Stripe API -Version Control Git, GitHub

πŸͺœ Steps to Run Locally

1️⃣ Clone the repository git clone https://github.com/your-username/pizza-ordering-app.git

2️⃣ Navigate to project directory cd pizza-ordering-app

3️⃣ Create and activate a virtual environment python -m venv venv venv\Scripts\activate # Windows source venv/bin/activate # macOS/Linux

4️⃣ Install dependencies pip install -r requirements.txt

5️⃣ Apply database migrations python manage.py migrate

6️⃣ Create admin user

python manage.py createsuperuser

7️⃣ Run the development server

python manage.py runserver

πŸ“ Folder Structure

pizza-ordering-app/
β”‚
β”œβ”€β”€ manage.py
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ db.sqlite3
β”‚
β”œβ”€β”€ pizza_app/
β”‚   β”œβ”€β”€ admin.py
β”‚   β”œβ”€β”€ models.py
β”‚   β”œβ”€β”€ views.py
β”‚   β”œβ”€β”€ urls.py
β”‚   β”œβ”€β”€ forms.py
β”‚   └── templates/
β”‚       β”œβ”€β”€ base.html
β”‚       β”œβ”€β”€ menu.html
β”‚       β”œβ”€β”€ cart.html
β”‚       β”œβ”€β”€ checkout.html
β”‚       β”œβ”€β”€ order_status.html
β”‚       └── admin_dashboard.html
β”‚
└── static/
    β”œβ”€β”€ css/
    β”œβ”€β”€ js/
    └── images/

9.Online Food Ordering and Delivery System Using Python.

πŸ” Online Food Ordering and Delivery System Using Python

Uploading image.png…

πŸ“Œ Overview

The Online Food Ordering and Delivery System is a Python-based web application designed to simplify the process of ordering food online. It allows customers to browse restaurants, select dishes, place orders, and have their food delivered to their doorstep. The system streamlines interactions between customers, restaurants, and delivery staff, ensuring an efficient and user-friendly experience.

This project is developed using Python (with Django/Flask framework), SQLite/MySQL as the database, and includes an admin panel for managing restaurants, menus, and orders.

🎯 Features

πŸ‘¨β€πŸ³ User Features:

-User Registration and Login

-Browse Restaurants and Menus

-Add Food Items to Cart

-Place and Track Orders

-Online Payment (optional integration)

-View Order History

πŸͺ Restaurant Features:

-Manage Restaurant Profile

-Add/Edit/Delete Food Items

-View and Accept/Reject Orders

-Update Order Status (Preparing, Out for Delivery, Delivered)

🚴 Delivery Staff Features:

-View Assigned Deliveries

-Update Delivery Status

βš™οΈ Admin Features:

-Manage Users, Restaurants, and Delivery Staff

-View All Orders and Transactions

-Generate Reports and Analytics

Installation Steps

Clone the repository:

git clone https://github.com/yourusername/Online-Food-Ordering-System.git
cd Online-Food-Ordering-System

Create and activate virtual environment:

python -m venv venv
venv\Scripts\activate    # For Windows
source venv/bin/activate # For Mac/Linux

Install dependencies:

pip install -r requirements.txt

Apply migrations:

python manage.py makemigrations
python manage.py migrate

Create a superuser:

python manage.py createsuperuser

Run the server:

python manage.py runserver

πŸ§‘β€πŸ’» Project Structure

Online-Food-Ordering-System/
β”‚
β”œβ”€β”€ foodapp/
β”‚   β”œβ”€β”€ migrations/
β”‚   β”œβ”€β”€ templates/
β”‚   β”œβ”€β”€ static/
β”‚   β”œβ”€β”€ views.py
β”‚   β”œβ”€β”€ models.py
β”‚   β”œβ”€β”€ urls.py
β”‚   └── forms.py
β”‚
β”œβ”€β”€ OnlineFoodOrdering/
β”‚   β”œβ”€β”€ settings.py
β”‚   β”œβ”€β”€ urls.py
β”‚   └── wsgi.py
β”‚
β”œβ”€β”€ manage.py
β”œβ”€β”€ requirements.txt
└── README.md

10.Blood Management System Using Python.

🩸 Blood Management System Using Python

Screenshot 2025-09-08 120627 ## πŸ“Œ Overview

The Blood Management System is a Python-based web application designed to manage and streamline blood donation and distribution between donors, hospitals, and blood banks. This system maintains records of blood donors, recipients, available blood units, and requests, ensuring that blood can be provided efficiently during emergencies.

The project aims to digitize the manual blood bank process using Python (Django/Flask), providing a user-friendly interface for users and administrators.

🎯 Objectives

-To simplify blood donor registration and blood request processing.

-To maintain an accurate database of available blood types and quantities.

-To connect donors, recipients, and hospitals through a centralized platform.

-To automate notifications and approvals for urgent blood requirements.

🧩 Key Features

πŸ‘€ User/Donor:

-Register and update donor profile

-View blood donation history

-Request for blood donation

-Receive notifications for blood camps and urgent needs

πŸ₯ Hospital / Recipient:

-Request specific blood groups

-Check blood availability

-Manage transfusion records

βš™οΈ Admin Panel:

-Add / Manage Donors and Hospitals

-Approve or reject donation and request forms

-Manage blood stock

-Generate reports on donations and blood usage

βš™οΈ Installation Guide

Clone the Repository

git clone https://github.com/yourusername/Blood-Management-System.git
cd Blood-Management-System

Create and Activate Virtual Environment

python -m venv venv
venv\Scripts\activate     # For Windows
source venv/bin/activate  # For Mac/Linux

Install Required Libraries

pip install -r requirements.txt

Apply Database Migrations

python manage.py makemigrations
python manage.py migrate

Create Admin User

python manage.py createsuperuser

Run the Application

python manage.py runserver

πŸ“ Project Structure

Blood-Management-System/
β”‚
β”œβ”€β”€ bloodapp/
β”‚   β”œβ”€β”€ migrations/
β”‚   β”œβ”€β”€ static/
β”‚   β”œβ”€β”€ templates/
β”‚   β”œβ”€β”€ models.py
β”‚   β”œβ”€β”€ views.py
β”‚   β”œβ”€β”€ urls.py
β”‚   └── forms.py
β”‚
β”œβ”€β”€ BloodManagement/
β”‚   β”œβ”€β”€ settings.py
β”‚   β”œβ”€β”€ urls.py
β”‚   └── wsgi.py
β”‚
β”œβ”€β”€ manage.py
β”œβ”€β”€ requirements.txt
└── README.md

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published