arrow icon indicating copy to clipboard operation
arrow copied to clipboard

๐Ÿน Better dates & times for Python

Results 121 arrow issues
Sort by recently updated
recently updated
newest added

I've got a number of datetimes in a spreadsheet that look like this: ``` July 29, 2022 @ 9:44 AM Aug 2, 2022 @ 6:30 PM ... ``` I'm attempting...

## Pull Request Checklist Thank you for taking the time to improve Arrow! Before submitting your pull request, please check all *appropriate* boxes: - [x] ๐Ÿงช Added **tests** for changed...

## Pull Request Checklist - [ ] ๐Ÿงช Added **tests** for changed code. - [x] ๐Ÿ› ๏ธ All tests **pass** when run locally (run `tox` or `make test` to find out!)....

## Pull Request Checklist Thank you for taking the time to improve Arrow! Before submitting your pull request, please check all *appropriate* boxes: - [x ] ๐Ÿงช Added **tests** for...

## Issue Description ```python import arrow arrow.get('1657831049') ``` results in ``` arrow.parser.ParserError: Could not match input '1657831049' to any of the following formats: YYYY-MM-DD, YYYY-M-DD, YYYY-M-D, YYYY/MM/DD, YYYY/M/DD, YYYY/M/D, YYYY.MM.DD,...

bug

The v1.0.0 release of Arrow contains breaking changes, this migration guide outlines the changed APIs and functionality. Please visit #923 to discuss the changes and ask any questions. 1. Python...

documentation

There is a strong need for GPS time conversion in many science applications. Unfortunately none of the existing python date/time libraries support GPS time conversion. The only library that does...

enhancement

## Issue Description ## System Info - ๐Ÿ–ฅ **OS name and version**: Windows 11 - ๐Ÿ **Python version**: 3.8.6 - ๐Ÿน **Arrow version**: 0.14.2 ![image](https://user-images.githubusercontent.com/18203761/174707568-f7c67646-6775-4df8-a63e-b87f5fb3ecdf.png) the return of arrow.get("2020/6/17\xa0\xa000:00:00") is...

bug

Date format missing timezone string ## Issue Description ``` flight_schedule_date = arrow.now("America/New_York") flight_landing_date = flight_schedule_date.shift(hours=28).to('+05:30') print(f'flight scheduled departure is {flight_schedule_date.format("DD,MMM HH:mm A ZZZ")} and expected arrival at destination is {flight_landing_date.format("DD,MMM...

bug

Hi, I've been trying to make use of type hints and just used this library for the first time. Your documentation says "Full support for PEP 484-style type hints" but...

documentation