Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donaldte/django-ecom
Application de ecommerce avec Python et Django plus integration des modes de paiement (Paypal, Orange Money, MTN Mobile, Moove etc)
https://github.com/donaldte/django-ecom
django djangoecommerce master-card mtnmobilemoney orangemoney payment-integration paypal python3 visa-credit-card
Last synced: about 1 month ago
JSON representation
Application de ecommerce avec Python et Django plus integration des modes de paiement (Paypal, Orange Money, MTN Mobile, Moove etc)
- Host: GitHub
- URL: https://github.com/donaldte/django-ecom
- Owner: donaldte
- License: apache-2.0
- Created: 2022-10-25T08:36:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-27T12:19:50.000Z (over 1 year ago)
- Last Synced: 2023-05-27T13:32:40.652Z (over 1 year ago)
- Topics: django, djangoecommerce, master-card, mtnmobilemoney, orangemoney, payment-integration, paypal, python3, visa-credit-card
- Language: Python
- Homepage:
- Size: 720 KB
- Stars: 3
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-ecommerce
Application de ecommerce avec django avec integration des API de paiement (`Paypal`, `credit card` `Orange Money`, `MTN Mobile`, `Moove money` etc)Vous pourriez aller plus loin avec ce projet.
# tech`Python` version 3.9, `django` version 4.1.2
# Page principal
![main](https://user-images.githubusercontent.com/81464575/200109393-04e3de68-1b31-43c9-af49-9d6fa18ca76e.png)
# Page panier
![panier](https://user-images.githubusercontent.com/81464575/200109518-506ef3e1-c3fe-4d30-9598-322e27ad49c8.png)
# Page commande
![commande](https://user-images.githubusercontent.com/81464575/200109571-e59767f0-6c8f-4cc4-90e6-c84dabea32d3.png)
# Modes paiement
![Screenshot from 2022-11-19 16-57-30](https://user-images.githubusercontent.com/81464575/202870990-c3dd75cf-718c-44e9-8386-d744c4b5a839.png)
# Paiement succes
![Screenshot from 2022-11-19 21-33-44](https://user-images.githubusercontent.com/81464575/202871029-79a4f97b-0852-4bb1-8226-19e518ea8b4e.png)# Structure
![](https://user-images.githubusercontent.com/81464575/202889122-8af94bc4-1a79-42e2-9e7a-f9fec4a28654.png)![](https://user-images.githubusercontent.com/81464575/202889068-90f62c2d-b3ac-4fe5-9d5c-2900a5cb7644.png)
# Table dans le Admin
![Screenshot from 2022-11-20 03-58-17](https://user-images.githubusercontent.com/81464575/202888995-d964fa84-00e9-46a0-92dc-aaf70e85c920.png)
![Screenshot from 2022-11-20 03-58-51](https://user-images.githubusercontent.com/81464575/202889006-947d79f1-95f8-496a-9a3c-2fc472de755d.png)
![Screenshot from 2022-11-20 04-00-19](https://user-images.githubusercontent.com/81464575/202889009-e6cf2c3f-f1aa-4b47-bb62-85569db19343.png)
![Screenshot from 2022-11-20 04-00-55](https://user-images.githubusercontent.com/81464575/202889013-a7e34c81-a4e6-4394-a454-308d658ab437.png)
![Screenshot from 2022-11-20 04-01-28](https://user-images.githubusercontent.com/81464575/202889021-ee003cc3-77b7-4335-a88a-ecaa339a25f0.png)
![Screenshot from 2022-11-20 04-15-14](https://user-images.githubusercontent.com/81464575/202889039-8ec6cf7d-e205-45d1-849f-f9abe0cfd290.png)# django-ecom
django-ecom app# Step 1
Clone the project
```
git clone https://github.com/donaldte/django-ecom.git
```# Step 2
Go to django-ecom directory
```
cd django-ecom
```# Step 3
Create a virtual environment
```
python3.9 -m venv venv
```# Step 4
Activate a virtual environment
Linux/mac user
```
source venv/bin/activate
```Window user
```
venv\Scripts\activate
```# Step 5
Install requirements
```
pip install -r requirements.txt
```