Skip to content

Commit 80d8c92

Browse files
committed
Docs
1 parent 7d4fde5 commit 80d8c92

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

docs/index.rst

+2-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
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+
###########################
153

164
.. automodule:: fastjsonschema
175
:members:

fastjsonschema/__init__.py

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@
55
#
66

77
"""
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+
820
``fastjsonschema`` implements validation of JSON documents by JSON schema.
921
The library implements JSON schema drafts 04, 06 and 07. The main purpose is
1022
to have a really fast implementation. See some numbers:
@@ -54,6 +66,9 @@
5466
other languages.
5567
* JSON schema says you can use keyword ``default`` for providing default values. This implementation
5668
uses that and always returns transformed input data.
69+
70+
API
71+
***
5772
"""
5873

5974
from .draft04 import CodeGeneratorDraft04

0 commit comments

Comments
 (0)