Skip to main content

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

  1. Install dependencies using Poetry:

    pip install pycartnext
    
  2. Set up Redis:

    • Install Redis locally or use a Redis cloud service.
    • Make sure Redis is running on redis://127.0.0.1:6379.
  3. Example:

    • Check example folder how to use.

Usage

CartService

The CartService class handles all cart-related operations. Here's how you can use it:

  1. Create a CartService instance:

    from cart_service import CartService
    
    cart_service = CartService(redis_url="redis://127.0.0.1:6379")
    
  2. Add an item to the cart:

    cart_service.add_item(title="Product A", price=100.0, quantity=2)
    
  3. Remove an item from the cart:

    cart_service.remove_item(item_id=1)
    
  4. Increment item quantity:

    cart_service.increment_item_quantity(item_id=1)
    
  5. Decrement item quantity:

    cart_service.decrement_item_quantity(item_id=1)
    
  6. Apply a discount to the cart:

    cart_service.apply_discount(discount_percentage=10)
    
  7. Clear the entire cart:

    cart_service.clear_cart()
    
  8. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycartnext-0.1.1.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

pycartnext-0.1.1-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

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

Hashes for pycartnext-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9942d5ca4433d7417a02d79a356375cbff2d973ab14e542b25aa3bb2814631c7
MD5 1a2891912a0ffde5ab5fe5f9b14fbce7
BLAKE2b-256 8771e4d32ce80a1923ce94e76a06208ca9a3d11619c46328c2cafc4c9a2a968d

See more details on using hashes here.

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

Hashes for pycartnext-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3e84ee33bd73122be80d359176e1efcbfb5b8a74b096c10f6ff0c43183834ea0
MD5 81cdc907b94133727a9a38ec60278176
BLAKE2b-256 df90fbbb06b42bb2529ecba22ea6bb163f64639104418b10f01d203125e2ba18

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page