VirtualTam's bookmarks
14 bookmarks found
Page 1 of 1
-
1$ pip install howdoi 2$ howdoi format date bash 3> DATE=`date +%Y-%m-%d`
-
xkcd: Python Environment
2018-05-02 -
-
Packaging Cython applications
2017-05-02 - http://stackoverflow.com/questions/37471313/setup-requires-with-cython
- http://stackoverflow.com/questions/35497572/using-python-setuptools-to-put-cython-compiled-pyd-files-in-their-original-folde
- http://stackoverflow.com/questions/32528560/using-setuptools-to-create-a-cython-package-calling-an-external-c-library
- http://stackoverflow.com/questions/22214022/how-to-run-nosetests-in-a-project-using-cython
-
1# from a virtualenv 2$ pip list --outdated
-
eg: display example usage for *nix commands
2015-05-02 1$ pip install eg 2$ eg <command>
-
Transifex client - Usage memo
2014-11-12 1# setup a transifex virtualenv 2virtualenv2 VENV; source VENV/bin/activate; pip install transifex-client 3 4# global config: ~/.transifexrc 5# this step can be omitted, as 'tx init' will create the file if it doesn't exist 6[https://www.transifex.com] 7username = User 8token = 9password = un54f3_p4ssw0rd! 10hostname = https://www.transifex.com 11 12# setup example project 13mkdir example; cd example 14tx init 15tx set --auto-remote https://www.transifex.com/projects/p/my-project/ 16 17# get the files 18tx pull -l pt_BR 19 20# edit things 21poedit / linguist-qt4 22 23# push to transifex 24tx push -t
-
This document describes the current state of packaging in Python using Distribution Utilities (“Distutils”) and its extensions from the end-user’s point-of-view, describing how to extend the capabilities of a standard Python installation by building packages and installing third-party packages, modules and extensions.
Page 1 of 1