How to package a pythin script or project for distribution. Offical Docs are [here][python_package]. Packaging for pip requires use …
read moreOther articles
Pelican New Post script
In the aim of keeping the navigation of the Blog posts clean, I have limited my self to a few …
read morePython Base Types
Modify Pelican theme
First figure out which theme you are using. List installed themes via:
% pelican-themes -l simple notmyidea
pelicanconf.py does not …
read morePelican Site add Tags and Categories list
I think it improves website usability when they are navigatable via the URL.
For example when viewing Posts under the …
read morePython Regular Expressions
Python Regular Expressions Quick Guide:
read more^ Matches the beginning of a line $ Matches the end of the line . Matches any character …
Python merge PDFs
Using python script to merge pdfs together.
Install package
pip install pypdf
Script:
read morefrom pypdf import PdfWriter pdfs = ['file1.pdf …
Pythonista pip install pelican
On the journey towards publish static site generator blog posts from iPadOS, my next step after installing stash on pythonista …
read morePythonista using stash for pip
Installing stash on pythonista
read morePython read a CSV file
Python example for reading data from a csv file.
read moreimport csv with open(data.csv', newline='') as csvfile: spamreader = csv …
Python Sinewave
Create and plot a sinewave in python
read more