This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.sitepoint.com/using-regular-expressions-to-check-string-length/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TODO: | |
# 1. Implement wait time for flutter clean to complete for a given folder and then move to next | |
# 2. Ignore other files like .zip etc which may be in the folder | |
import os | |
for i in os.listdir(): | |
os.chdir(i) | |
os.system('flutter clean') | |
print('Cleaned ',i) | |
os.chdir('../') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.flutter_application_1 | |
import android.content.Context | |
import android.content.ContextWrapper | |
import android.content.Intent | |
import android.content.IntentFilter | |
import android.os.BatteryManager | |
import android.os.Build.VERSION | |
import android.os.Build.VERSION_CODES | |
import androidx.annotation.NonNull |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. I have built a Multivendor E-commerce platform using Django and Django REST framework. | |
1. 1. User authentication and profiling | |
1.2. Two profiles for users one is seller profile and other is regular customer profile. You sign up initially as a regular customer but the site has an application process built in that lets you apply for the sellers profile. Once the administrator verifies the details and documents admin can allow the user account to be upgraded to a sellers account. | |
1.3. Sellers Can register shops on the platform which will be use to register products that they want to sell. | |
1.4. The products again have to be approved by the admin/staff of the site in order to be counted as sellable items. | |
1.5. I have implemented categories and sub categories with markets in my web application so that everything is well categorized. | |
1.6. I have also implemented a REST API using Django REST framework that enables us to create a variety of other applications like android/iOS applications. | |
Link to the site: http:/ |