Login

Excel Date

Author:
cronosa
Posted:
April 14, 2010
Language:
Python
Version:
1.1
Score:
0 (after 0 ratings)

This allows you to just call excel_date and it will convert any dates between excel and python datetime.

1
2
3
4
def excel_date(value):
	value = float(value) - 2
	edate = datetime.datetime(year=1900,month=1,day=1)
	return edate + datetime.timedelta(days=value)

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 11 months, 3 weeks ago

Comments

pakalk (on April 15, 2010):

You could explain input and output values. Example?

#

Please login first before commenting.