EasyDocPy 1.2.0__tar.gz → 1.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {easydocpy-1.2.0 → easydocpy-1.2.1}/EasyDocPy.egg-info/PKG-INFO +11 -1
- {easydocpy-1.2.0 → easydocpy-1.2.1}/PKG-INFO +11 -1
- {easydocpy-1.2.0 → easydocpy-1.2.1}/README.md +10 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/easydoc/analyser.py +1 -1
- {easydocpy-1.2.0 → easydocpy-1.2.1}/pyproject.toml +1 -1
- {easydocpy-1.2.0 → easydocpy-1.2.1}/EasyDocPy.egg-info/SOURCES.txt +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/EasyDocPy.egg-info/dependency_links.txt +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/EasyDocPy.egg-info/entry_points.txt +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/EasyDocPy.egg-info/top_level.txt +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/LICENSE +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/easydoc/__init__.py +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/easydoc/__main__.py +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/easydoc/config/custom_comment_lines.json +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/easydoc/generator.py +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/easydoc/objects.py +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/easydoc/templates/template.md +0 -0
- {easydocpy-1.2.0 → easydocpy-1.2.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: EasyDocPy
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: python documentation generator
|
|
5
5
|
Author: epsilonkn
|
|
6
6
|
License-Expression: MIT
|
|
@@ -19,6 +19,16 @@ The idea of that package is to create a technical documentation of a python sour
|
|
|
19
19
|
|
|
20
20
|
For more information, read the wiki : https://github.com/epsilonkn/EasyDoc/wiki
|
|
21
21
|
|
|
22
|
+
## Getting Started :
|
|
23
|
+
|
|
24
|
+
**Using pip :**
|
|
25
|
+
|
|
26
|
+
pip install EasyDocPy
|
|
27
|
+
|
|
28
|
+
**On github :**
|
|
29
|
+
\
|
|
30
|
+
Read the wiki of the module
|
|
31
|
+
|
|
22
32
|
## To use it :
|
|
23
33
|
|
|
24
34
|
### To comment your code :
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: EasyDocPy
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: python documentation generator
|
|
5
5
|
Author: epsilonkn
|
|
6
6
|
License-Expression: MIT
|
|
@@ -19,6 +19,16 @@ The idea of that package is to create a technical documentation of a python sour
|
|
|
19
19
|
|
|
20
20
|
For more information, read the wiki : https://github.com/epsilonkn/EasyDoc/wiki
|
|
21
21
|
|
|
22
|
+
## Getting Started :
|
|
23
|
+
|
|
24
|
+
**Using pip :**
|
|
25
|
+
|
|
26
|
+
pip install EasyDocPy
|
|
27
|
+
|
|
28
|
+
**On github :**
|
|
29
|
+
\
|
|
30
|
+
Read the wiki of the module
|
|
31
|
+
|
|
22
32
|
## To use it :
|
|
23
33
|
|
|
24
34
|
### To comment your code :
|
|
@@ -6,6 +6,16 @@ The idea of that package is to create a technical documentation of a python sour
|
|
|
6
6
|
|
|
7
7
|
For more information, read the wiki : https://github.com/epsilonkn/EasyDoc/wiki
|
|
8
8
|
|
|
9
|
+
## Getting Started :
|
|
10
|
+
|
|
11
|
+
**Using pip :**
|
|
12
|
+
|
|
13
|
+
pip install EasyDocPy
|
|
14
|
+
|
|
15
|
+
**On github :**
|
|
16
|
+
\
|
|
17
|
+
Read the wiki of the module
|
|
18
|
+
|
|
9
19
|
## To use it :
|
|
10
20
|
|
|
11
21
|
### To comment your code :
|
|
@@ -324,7 +324,7 @@ class Parser:
|
|
|
324
324
|
Returns:
|
|
325
325
|
str: retourne la chaine traité selon l'algorithme défini plus haut
|
|
326
326
|
"""
|
|
327
|
-
string = re.sub("\s{4}", "\t", string)
|
|
327
|
+
string = re.sub(r"\s{4}", "\t", string)
|
|
328
328
|
if "\t" in string :
|
|
329
329
|
nb_tab : str = "\t" * string.count("\t")
|
|
330
330
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|