No project description provided
Project description
pycartnext
pycartnext is a simple shopping cart service built using FastAPI and Redis for caching. It provides basic cart management functionalities like adding/removing items, modifying quantities, and applying discounts.
Features
- Add, remove, and modify items in the shopping cart
- Apply discounts to the cart
- Use Redis for caching cart data
- Easy-to-use service interface for managing the cart
Installation
Prerequisites
Ensure you have Python 3.10+ and Redis installed.
Steps to install
-
Install dependencies using Poetry:
pip install pycartnext
-
Set up Redis:
- Install Redis locally or use a Redis cloud service.
- Make sure Redis is running on
redis://127.0.0.1:6379
.
-
Example:
- Check example folder how to use.
Usage
CartService
The CartService
class handles all cart-related operations. Here's how you can use it:
-
Create a CartService instance:
from cart_service import CartService cart_service = CartService(redis_url="redis://127.0.0.1:6379")
-
Add an item to the cart:
cart_service.add_item(title="Product A", price=100.0, quantity=2)
-
Remove an item from the cart:
cart_service.remove_item(item_id=1)
-
Increment item quantity:
cart_service.increment_item_quantity(item_id=1)
-
Decrement item quantity:
cart_service.decrement_item_quantity(item_id=1)
-
Apply a discount to the cart:
cart_service.apply_discount(discount_percentage=10)
-
Clear the entire cart:
cart_service.clear_cart()
-
View the current cart:
cart = cart_service.get_cart() print(cart)
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pycartnext-0.1.1.tar.gz
.
File metadata
- Download URL: pycartnext-0.1.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-49-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9942d5ca4433d7417a02d79a356375cbff2d973ab14e542b25aa3bb2814631c7 |
|
MD5 | 1a2891912a0ffde5ab5fe5f9b14fbce7 |
|
BLAKE2b-256 | 8771e4d32ce80a1923ce94e76a06208ca9a3d11619c46328c2cafc4c9a2a968d |
File details
Details for the file pycartnext-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pycartnext-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-49-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e84ee33bd73122be80d359176e1efcbfb5b8a74b096c10f6ff0c43183834ea0 |
|
MD5 | 81cdc907b94133727a9a38ec60278176 |
|
BLAKE2b-256 | df90fbbb06b42bb2529ecba22ea6bb163f64639104418b10f01d203125e2ba18 |