Featured on Weekly Python issue 436 π
π Open inventory management and Point of sales (powered by python) for small shops.
- π Crisp UI
- π Intuitive
- π Instant lookup
- βοΈ Towards customisation
It also makes a great Flask base and supports commands such as:
python manage.py startapp loans
pip install shopyo
close and reopen your cmd
shopyo new <path> <project folder>
example:
shopyo new /home/profiles/arj/desktop shopyotest
then cd into the folder
/home/profiles/arj/desktop
then install requirements (install in venv if you like)
pip install -r requirements.txt
then
python manage.py initialise
python manage.py runserver
go to url ^^
beta - now in beta!
alpha - highly volatile, core features not yet finished
π²πΊ π©πͺ π¨π³ π¬π§ πΈπ¬ πΊπ¬ π²x
Basics:
- Control Panel
- Admin
- Base
- Login
Shop:
- Appointment
- Products
- People
- Internals
- Settings
If you want to use the project as a Flask base, just remove the shop modules in modules/
This is my first time contributing to a public repo and I have quite enjoyed it. If you're a
first-time-contributor
the community is very helpful and can help you progress. Since I have been helping in this repo, I have also learnt a few things myself. The owner of the repo is active and is always willing to help.Also, if I'm around and you're stuck give us a shout. I'll help if I can.
@blips5
I want to learn!
Months ago, I was searching github for a point of sales solution that used Python. What bothered me was that many of the applications I found were not ideal. Some required Posgres with the expectation that a user would already have this installed, others had codebases that were a mess of spaghetti code, yet others were django-based accounting monsters ...
I decided to try making my own solution, modeled after a client request, I had once recived. I Made it flask-based with SQLalchemy and SQLite. You can instantly get started with no hassle, switching to something more powerful when you want to (since it uses an ORM)
For the UI, we used the latest, bootstrap4, fa5 and jq3. Interestingly enough, I had two shop owners try it and they were very impressed with the ease of use.
It is still in devolopment and supports instant lookup. Long story short, with some programming skills, you can solve some everyday problems. And yes, no cdn, all libs are bundled so that you can use it completely offline
See this linked-in article!
- Shopyo is announced on LinkedIn
- Featured on Python Weekly issue 436
- Bhavesh Solanki tells about his Open Source experience contributing to Shopyo on LinkedIn
- Arthur Nangai from Andela joins the project as 3rd core committer
- Project goes officially in Beta, v1.0.0 released
- Duckduckgo recognises Shopyo
- Shopyo becomes a trending OpenSource project
site name | description |
---|---|
Maurilearn.com | Elearning platform |
- Point of Sales
- Accounting
- download python3.8
- clone and cd into project
- run
python -m pip install -r requirements.txt
- run
python -m pip install -r dev_requirements.txt
if you want to contribute
cd
into shopyo/shopyo if not already.
initialise and setup app.
python manage.py initialise
run the app.
python manage.py runserver
go to the indicated url
Super User password
User ID: user
password: pass
In case of change to models, do
python manage.py db migrate
pyhton manage.py db upgrade
The application makes use of end to end
tests. To get these up and running you will need selenium and a chrome web driver.
- The chromedriver is already part of the applciation folder.
- To run tests cd into the
shopyo folder
and run the command.pytest
. - To ensure your code meets PEP8 standard, run the command.
flake8 shopyo
.
initialise database.
python manage.py db init # create db from new
python manage.py db migrate
python manage.py db upgrade
clean project
python manage.py clean
removes __pycache__/
, test.db
and migrations
.
create new module
python manage.py startapp modulename
run server
python manage.py rundebug
python manage.py runserver
create new module
Sphinx docs generater
Run
sphinx-build -b html sphinx_source docs
in shopyo/
to generate docs
Read the docs for Sphinx Alablaster
Modules are found in the modules folder.
A typical structure is as follows:
apple/
templates/
apple/
view.py
models.py
info.json
You must ensure that
- The view is named
view.py
- The info is named
info.json
- The module folder and the folder inside templates both have the same name
- Blueprints must be named
<nameofmodulefolder>_blueprint
, in this demoapple_blueprint
And ... the app will load all the modules, just make sure in info.json you keep url_prefix, type, name, and fa-icon
For the time being it's best to look into existing modules and do the same.
Shopyo internals explained here: Shopyo: Enhance Your Flask by Exploring An Advanced Flask App
If you want to contribute, go ahead, we β€οΈ it. We follow a π― % first-timers-friendly policy.
-
Fork repo.
-
Create a new branch. For example:
bg-fix-migration-file
. -
Once you have add your changes ensure tests are still passing.
-
Add tests for any new functionality added.
-
Ensure you commits follow the standard specified here.
-
Follow the Pull request template.
-
Add your country flag in readme after accepted PR
-
Update fork as below then
-
Push
git push origin <branch-name>
- If it closes an issue, add
Fixes #94
for example, as seen here - PR against
dev
branch, not master
cd <your/local/cloned/repo/path/here>
git remote add upstream https://github.com/Abdur-rahmaanJ/shopyo.git
git fetch upstream
git pull upstream master
Why do we need another folder in templates?
Flask loads all templates in one namespace. If you specify apple/index.html
flask will load the index.html in the apple folder in templates
- βοΈ Models
- βοΈ Migrations
- βοΈ Restful Api
- βοΈ Manage.py
- βοΈ CSRF protection
- βοΈ Easy dev/production mode switch
- βοΈ Login
- βοΈ Api namespacing / apps
- βοΈ Django-like structure (where models, views and templates all in one folder)
- βοΈ Relative reference (.forms for example)
- βοΈ Roles management
In Progress
- π Unit tests
- π Integration tests
- π Permission levels
- clone project
- create and activate venv
- cd into project folder
- run
pip install -e .
- after changes run
pip install -e . --upgrade
- test
shopyo <your options>
Support team if you are stuck
digits.net