Browse Source

Datetime fix

pull/28/head
Jure Šorn 5 years ago
parent
commit
f5ee7f0fc5
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -496,8 +496,8 @@ import pytz
```python
<D/T/DT> = D/T/DT.fromisoformat('<iso>') # Object from ISO string.
<DT> = DT.strptime(<str>, '<format>') # Datetime from string, according to format.
<D/DTn> = D/DT.fromordinal(<int>) # Date or datetime from days since Christ.
<D/DTn> = D/DT.fromtimestamp(<real>) # D/DT from seconds since Epoch in local time.
<D/DTn> = D/DT.fromordinal(<int>) # Object from days since Christ.
<D/DTn> = D/DT.fromtimestamp(<real>) # Object from seconds since Epoch in local time.
<DTn> = DT.utcfromtimestamp(<real>) # Naive DT from seconds since Epoch in UTC time.
<DTa> = DT.fromtimestamp(<real>, <tz>) # Aware DT from seconds since Epoch in tz time.
```

Loading…
Cancel
Save