-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from dh-tech/feature/rename-formatter-converter
Rename formatters submodule and classes to converters
- Loading branch information
Showing
26 changed files
with
398 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Converters | ||
========== | ||
|
||
.. automodule:: undate.converters.base | ||
:members: | ||
:undoc-members: | ||
|
||
ISO8601 | ||
------- | ||
|
||
.. automodule:: undate.converters.iso8601 | ||
:members: | ||
:undoc-members: | ||
|
||
Extended Date-Time Format (EDTF) | ||
-------------------------------- | ||
|
||
.. automodule:: undate.converters.edtf.converter | ||
:members: | ||
:undoc-members: | ||
|
||
.. automodule:: undate.converters.edtf.parser | ||
:members: | ||
:undoc-members: | ||
|
||
.. transformer is more of an internal, probably doesn't make sense to include | ||
.. .. automodule:: undate.converters.edtf.transformer | ||
.. :members: | ||
.. :undoc-members: | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Undate objects | ||
============== | ||
|
||
undates and undate intervals | ||
------------------------------ | ||
|
||
.. autoclass:: undate.undate.Undate | ||
:members: | ||
|
||
.. autoclass:: undate.undate.UndateInterval | ||
:members: | ||
|
||
date, timedelta, and date precision | ||
----------------------------------- | ||
|
||
.. autoclass:: undate.date.Date | ||
:members: | ||
|
||
.. autoclass:: undate.date.Timedelta | ||
:members: | ||
|
||
.. autoclass:: undate.date.DatePrecision |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
API documentation | ||
================= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
|
||
core | ||
converters |
Oops, something went wrong.