Python related links¶

  • Advanced python. Lecture on python by Thomas Wouters at Google. 21 Feb 2007 [1]

  • reddit channel for python

  • Numpy for Matlab users (Accessed July 2019)

  • pandas dataframe reference

Footnotes

[1]

Accessed on 28 Aug 2019

Matplotlib (separate page).

Managing dependencies — Reinout van Rees’s website Article from 2009 about Managing dependencies.

PyFormat: Examples of using format() in python

Old talk by Aaron Meurer: 10 awesome features of Python you cannot do because you are still using Python 2 9 April 2014 at APUG

Python documentation in info format (useful with a powerful info reader like emacs).

Example using datetime¶

The documentation of the datetime module indicates that there are these objects: * datetime * time * timezone

import datetime
import time
b= 1261228562.0
print(b)
a = datetime.datetime.fromtimestamp(b)
print(a)

Style guide¶

  • Google python style guide (part of the general style guides). These guides are kept in a “styleguide” github repo.

  • Fluent python book by Luciano Ramalho (O’Reilly 2015). The example code is in github.

Virtualenv¶

Turns out that virtualenv is not the same as venv

I finally read a stack overflow article/question (Jan 2017) that clarifies what is what and there’s a good link to explain pipenv in realpython.com

I think I like the answer from Rias Rizvi suggesting that one should generally use venv for python 3.3 and newer. Since python 2 is deprecated, it sounds like there is no need to use virtualenv.

Then there also is pipenv. And pipenv uses virtualenv instead of venv.

puffer-fish

Navigation

Notes

  • Bash
  • CentOS
  • C Programming
  • C++ links
  • Git notes
  • Magit
  • Go
  • Linux material
  • Notes on debian system administration
  • Dev containers
  • Haskell
  • Kernel
  • Java serial lines
  • Javascript
  • kubernetes notes
  • kubernetes course, chapter #8
  • Kubernetes Pods
  • Nix
  • Nixpkgs
  • Macports
  • Macports folders
  • man pages
  • Gnu make
  • matplotlib
  • Questions about minikube
  • Node
  • npm
  • OSX notes
  • Podman
  • PowerShell
  • Python related links
  • Python and Qt
  • Rust links
  • Rustlings
  • Secure shell
  • Utilities

Emacs entries

  • Emacs
  • Notes on creating an emacs package

Fedora entries

  • Fedora
  • mock

Related Topics

  • Documentation overview
    • Previous: PowerShell
    • Next: Python and Qt
©2025, alst2821. | Powered by Sphinx 9.1.0 & Alabaster 1.0.0 | Page source