实用又强大,6款Python时间&日期库推荐

在使用 Python 的开发过程中,除了使用 datetime 标准库来处理时间和日期,还有许多第三方的开源库值得尝试。

1、Arrow

Arrow 是一个专门处理时间和日期的轻量级 Python 库,它提供了一种合理、智能的方式来创建、操作、格式化、转换时间和日期,并提供了一个支持许多常见构建方案的智能模块 API 。简单来说,它可以帮你以更简便的操作和更少的代码来使用日期和时间。其设计灵感主要来源于 moment.js 和 requests 。

Quick start

 
 
 
 
  1. $ pip install arrow
 
 
 
 
  1. >>> import arrow
  2. >>> utc = arrow.utcnow()
  3. >>> utc
  4. >>> utc = utc.replace(hours=-1)
  5. >>> utc
  6. >>> local = utc.to('US/Pacific')
  7. >>> local
  8. >>> arrow.get('2013-05-11T21:23:58.970460+00:00')
  9. >>> local.timestamp
  10. 1368303838
  11. >>> local.format()
  12. '2013-05-11 13:23:58 -07:00'
  13. >>> local.format('YYYY-MM-DD HH:mm:ss ZZ')
  14. '2013-05-11 13:23:58 -07:00'
  15. >>> local.humanize()
  16. 'an hour ago'
  17. >>> local.humanize(locale='ko_kr')
  18. '1시간 전' 

2、Delorean

Delorean 提供了一个相比于 datetime 和 pytz 的更好的抽象,让你处理时间更容易。它有很多有用的处理时区的特性,标准化时区或者从一个时区改变到另外一个时区。

Quick start

 
 
 
 
  1. from datetime import datetime
  2. import pytz
  3. est = pytz.timezone('US/Eastern')
  4. d = datetime.now(pytz.utc)
  5. d = est.normalize(d.astimezone(est))
  6. return d 
 
 
 
 
  1. from delorean import Delorean
  2. d = Delorean()
  3. d = d.shift('US/Eastern')
  4. return d 

3、Pendulum

原生的 datetime 足够应付基本情况,但当面对更复杂的用例时,通常会有的捉襟见肘,不那么直观。 Pendulum 在标准库的基础之上,提供了一个更简洁,更易于使用的 API ,旨在让 Python datetime 更好用。

Quick start

 
 
 
 
  1. >>> import pendulum
  2. >>> now_in_paris = pendulum.now('Europe/Paris')
  3. >>> now_in_paris
  4. '2016-07-04T00:49:58.502116+02:00'
  5. # Seamless timezone switching
  6. >>> now_in_paris.in_timezone('UTC')
  7. '2016-07-03T22:49:58.502116+00:00'
  8. >>> tomorrow = pendulum.now().add(days=1)
  9. >>> last_week = pendulum.now().subtract(weeks=1)
  10. >>> if pendulum.now().is_weekend():
  11. ...     print('Party!')
  12. 'Party!'
  13. >>> past = pendulum.now().subtract(minutes=2)
  14. >>> past.diff_for_humans()
  15. >>> '2 minutes ago'
  16. >>> delta = past - last_week
  17. >>> delta.hours
  18. 23
  19. >>> delta.in_words(locale='en')
  20. '6 days 23 hours 58 minutes'
  21. # Proper handling of datetime normalization
  22. >>> pendulum.create(2013, 3, 31, 2, 30, 0, 0, 'Europe/Paris')
  23. '2013-03-31T03:30:00+02:00' # 2:30 does not exist (Skipped time)
  24. # Proper handling of dst transitions
  25. >>> just_before = pendulum.create(2013, 3, 31, 1, 59, 59, 999999, 'Europe/Paris')
  26. '2013-03-31T01:59:59.999999+01:00'
  27. >>> just_before.add(microseconds=1)
  28. '2013-03-31T03:00:00+02:00'

4、dateutil

dateutil 是 datetime 标准库的一个扩展库,几乎支持以所有字符串格式对日期进行通用解析,日期计算灵活,内部数据更新及时。

Quick start

 
 
 
 
  1. >>> from dateutil.relativedelta import *
  2. >>> from dateutil.easter import *
  3. >>> from dateutil.rrule import *
  4. >>> from dateutil.parser import *
  5. >>> from datetime import *
  6. >>> now = parse("Sat Oct 11 17:13:46 UTC 2003")
  7. >>> today = now.date()
  8. >>> year = rrule(YEARLY,dtstart=now,bymonth=8,bymonthday=13,byweekday=FR)[0].year
  9. >>> rdelta = relativedelta(easter(year), today)
  10. >>> print("Today is: %s" % today)
  11. Today is: 2003-10-11
  12. >>> print("Year with next Aug 13th on a Friday is: %s" % year)
  13. Year with next Aug 13th on a Friday is: 2004
  14. >>> print("How far is the Easter of that year: %s" % rdelta)
  15. How far is the Easter of that year: relativedelta(months=+6)
  16. >>> print("And the Easter of that year is: %s" % (today+rdelta))
  17. And the Easter of that year is: 2004-04-11 

5、moment

用于处理日期/时间的 Python 库,设计灵感同样是来源于 moment.js 和 requests ,设计理念源自 Times Python 模块。

Usage

 
 
 
 
  1. import moment
  2. from datetime import datetime
  3. # Create a moment from a string
  4. moment.date("12-18-2012")
  5. # Create a moment with a specified strftime format
  6. moment.date("12-18-2012", "%m-%d-%Y")
  7. # Moment uses the awesome dateparser library behind the scenes
  8. moment.date("2012-12-18")
  9. # Create a moment with words in it
  10. moment.date("December 18, 2012")
  11. # Create a moment that would normally be pretty hard to do
  12. moment.date("2 weeks ago")
  13. # Create a future moment that would otherwise be really difficult
  14. moment.date("2 weeks from now")
  15. # Create a moment from the current datetime
  16. moment.now()
  17. # The moment can also be UTC-based
  18. moment.utcnow()
  19. # Create a moment with the UTC time zone
  20. moment.utc("2012-12-18")
  21. # Create a moment from a Unix timestamp
  22. moment.unix(1355875153626)
  23. # Create a moment from a Unix UTC timestamp
  24. moment.unix(1355875153626, utc=True)
  25. # Return a datetime instance
  26. moment.date(2012, 12, 18).date
  27. # We can do the same thing with the UTC method
  28. moment.utc(2012, 12, 18).date
  29. # Create and format a moment using Moment.js semantics
  30. moment.now().format("YYYY-M-D")
  31. # Create and format a moment with strftime semantics
  32. moment.date(2012, 12, 18).strftime("%Y-%m-%d")
  33. # Update your moment's time zone
  34. moment.date(datetime(2012, 12, 18)).locale("US/Central").date
  35. # Alter the moment's UTC time zone to a different time zone
  36. moment.utcnow().timezone("US/Eastern").date
  37. # Set and update your moment's time zone. For instance, I'm on the
  38. # west coast, but want NYC's current time.
  39. moment.now().locale("US/Pacific").timezone("US/Eastern")
  40. # In order to manipulate time zones, a locale must always be set or
  41. # you must be using UTC.
  42. moment.utcnow().timezone("US/Eastern").date
  43. # You can also clone a moment, so the original stays unaltered
  44. now = moment.utcnow().timezone("US/Pacific")
  45. future = now.clone().add(weeks=2) 

6、When.py

提供对用户非常友好的特性来帮助执行常见的日期和时间操作。

Usage

网页名称:实用又强大,6款Python时间&日期库推荐
标题路径:http://www.shufengxianlan.com/qtweb/news36/328436.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联