Content¶
There are a lot of stuff that’s not in python library (installable via pip), but still on github repository.
Link where you can find find that content:
https://github.com/Malachov/mypythontools/tree/master/content
Link where you can read about how to use it:
https://mypythontools.readthedocs.io/#content
Some examples of what you can find only on github
project-starter¶
Project scaffolding fast and easy.
Download project-starter from
https://github.com/Malachov/mypythontools/tree/master/content/project-starter
(You may need to download all mypythontools repository in zip)
And start developing.
In your IDE do bulk renaming across files and replace SET_YOUR_APP_NAME with name of your app / library.
This starter is for vue-eel applications (desktop as well as web) but also for python libraries that will be stored on PyPi.
If it’s python library, delete gui folder.
If it’s app with gui, delete setup.py, __init__.py and remove Installation and Modules from README. Also from assets delete mdi.css if not using icons and formulate.css if not using vue formulate. In package.json uncomment library you will be using.
Install used python libraries via pip install -r requirements.txt and install JS libraries as well with npm install in folder where package.json is.
To run an app in develop mode, you have to run both frontent as well as python. Run frontent with debugging app.py (do not run, just debug). Then run frontend with npm run serve in gui folder (or use Task explorer if using VS Code). Open your favourite browser and open
It’s recommended to use Vue.js devtools extension where you can see what component is on cursor, edit props values or see list of all used mutations.
In opened app, there is a little help button where there is simple overview about how to develop with these tools.
Delete is faster than write, so there is many working examples like for example plot, various formating (flex row, flex column), settings panel, function call from python to js and vice versa or automatic alerting from python. If you want to see how some example is working, just use ctrl + F in IDE or check components for it’s props.
This is how the example looks like

Docs
It includes docs structure for sphinx docs generations from docstrings. Edit first few lines in conf.py, index.rst, navi.html and if you want, add static files like logo to _static.
Usually used with https://readthedocs.org/ free hosting that trigger deploy automatically after pushing to master. Because of correct relative redirecting in index.rst and navi.html use for readthedocs /path/ before relative link to ohter module.
It’s also necassary to generate other modules rst files for other pages but it’s if using push_script.py as CI/CD (see below), it’s generated automatically via apidoc.
It’s recommended to use with sphinx-alabaster-css (see below).
CI/CD
It also include github actions yml file for pushing codecov coverage file (without token) and .travis.yml for Travis CI. You don’t need those files and can you can delete it.
There is file push_script.py in folder utils which personally is better (faster) than travis and can do most of what you want from CI like run pipeline - running tests / generate docs / increment version / push to github / push to pypi.
Check utils module for more informations.
IDE files
- It also include some default project specific
settings for VS Code. You can also delete it.
If developing py - vue - eel app this is the recommended way, but if you want to build just what is necessary from scratch, you can use this tutorial
requirements¶
Install many libraries at once (no need for Anaconda). Download requirements.txt file from https://github.com/Malachov/mypythontools/tree/master/content/requirements and in that folder use:
pip install -r requirements.txt
It’s good for python libraries that other users with different versions of libraries will use. If not standalone application where freezing into virtual env is good idea - here is possible to use this requirements with using –upgrade from time to time to be sure that your library will be working for up to date version of dependencies.
sphinx-alabaster-css¶
It’s good idea to generate documentation from code. If you are useing sphinx and alabaster theme, you can use this css file for formating.
Tested on readthedocs hosting (recommended).
CSS are served from github and it’s possible to change on one place and edit how all projects docs look like at once.
Just add this to sphinx conf.py:
>>> html_css_files = ["https://malachov.github.io/readthedocs-sphinx-alabaster-css/custom.css"]
Also of course if you want you can download it and use locally from project if you need.
Result should look like this

Tasks¶
There are VS Code tasks examples in utils and build module, but here is small tutorial how to use it. Run command Tasks: Open User Tasks, add tasks from github/content/tasks or if have no task yet, you can copy / paste all.
Install extension Task Explorer
On root copy folder utils from content/tasks
You are ready to go. You should see something like this

You can do CI / CD pipeline or Build app with one click now.