-
Archives
- April 2017
- April 2016
- July 2015
- November 2014
- October 2014
- June 2014
- May 2014
- January 2014
- December 2013
- October 2013
- April 2013
- April 2012
- October 2011
- July 2011
- April 2011
- March 2011
- February 2011
- May 2010
- April 2010
- January 2010
- October 2009
- June 2009
- May 2009
- April 2009
- February 2009
- October 2008
- September 2008
- August 2008
- July 2008
- January 2008
- December 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
-
Meta
Category Archives: python
Using Oracle SYS_GUID() and RAW in SQLAlchemy
How to use RAW data types from cx_Oracle dialect in SQLAlchemy to create unique row IDs that are generated by SYS_GUID(). Use Oracle’s SYS_GUID() function to create unique IDs for rows without Sequences. Continue reading
Posted in cx_Oracle, Oracle, Programming, python, SQLAlchemy
Leave a comment
HOW TO Lower Case All Dictionary Keys in a Complex Python Dictionary
This tutorial shows you how to write and use a function that will iterate over complex, nested dictionary or list or combination of the two. For any dictionaries it finds, it will rename the keys to lower-case. This is useful … Continue reading
Posted in How Tos, Programming, python, Software
1 Comment
HOWTO: Create a random alpha-numeric string in Python
Creating an alpha-numeric string in python is easy, but having a quick function you can call or import as a module is better! This is very useful for things like password generators. To see how to do this in Perl, … Continue reading
Posted in How Tos, Programming, python
Leave a comment