File tree 2 files changed +17
-14
lines changed
2 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 1
- fastjsonschema documentation
2
- ############################
3
-
4
- Installation
5
- ************
6
-
7
- .. code-block :: bash
8
-
9
- pip install fastjsonschema
10
-
11
- Support only for Python 3.3 and higher.
12
-
13
- Documentation
14
- *************
1
+ Fast JSON schema for Python
2
+ ###########################
15
3
16
4
.. automodule :: fastjsonschema
17
5
:members:
Original file line number Diff line number Diff line change 5
5
#
6
6
7
7
"""
8
+ Installation
9
+ ************
10
+
11
+ .. code-block:: bash
12
+
13
+ pip install fastjsonschema
14
+
15
+ Support only for Python 3.3 and higher.
16
+
17
+ About
18
+ *****
19
+
8
20
``fastjsonschema`` implements validation of JSON documents by JSON schema.
9
21
The library implements JSON schema drafts 04, 06 and 07. The main purpose is
10
22
to have a really fast implementation. See some numbers:
54
66
other languages.
55
67
* JSON schema says you can use keyword ``default`` for providing default values. This implementation
56
68
uses that and always returns transformed input data.
69
+
70
+ API
71
+ ***
57
72
"""
58
73
59
74
from .draft04 import CodeGeneratorDraft04
You can’t perform that action at this time.
0 commit comments