djhx-blogger 0.1.6__tar.gz → 0.1.7__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.
Potentially problematic release.
This version of djhx-blogger might be problematic. Click here for more details.
- djhx_blogger-0.1.7/PKG-INFO +36 -0
- djhx_blogger-0.1.7/README.md +22 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/pyproject.toml +2 -1
- djhx_blogger-0.1.7/src/djhx_blogger.egg-info/PKG-INFO +36 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger.egg-info/SOURCES.txt +1 -0
- djhx_blogger-0.1.6/PKG-INFO +0 -12
- djhx_blogger-0.1.6/src/djhx_blogger.egg-info/PKG-INFO +0 -12
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/LICENSE +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/setup.cfg +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/__init__.py +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/__main__.py +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/cli.py +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/deploy.py +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/gen.py +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/log_config.py +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/css/archive.css +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/css/article.css +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/css/basic.css +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/css/category.css +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/images/favicon.ico +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/template/archive.html +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/template/article.html +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger/static/template/category.html +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger.egg-info/dependency_links.txt +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger.egg-info/entry_points.txt +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger.egg-info/requires.txt +0 -0
- {djhx_blogger-0.1.6 → djhx_blogger-0.1.7}/src/djhx_blogger.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: djhx-blogger
|
|
3
|
+
Version: 0.1.7
|
|
4
|
+
Summary: A simple static site generator, support only markdown file.
|
|
5
|
+
Requires-Python: >=3.9
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: beautifulsoup4>=4.14.2
|
|
9
|
+
Requires-Dist: fabric>=3.2.2
|
|
10
|
+
Requires-Dist: jinja2>=3.1.6
|
|
11
|
+
Requires-Dist: markdown>=3.9
|
|
12
|
+
Requires-Dist: typer>=0.20.0
|
|
13
|
+
Dynamic: license-file
|
|
14
|
+
|
|
15
|
+
# djhx-blogger
|
|
16
|
+
|
|
17
|
+
一个个人使用的博客生成器。
|
|
18
|
+
|
|
19
|
+
## 命令
|
|
20
|
+
|
|
21
|
+
查看帮助
|
|
22
|
+
```shell
|
|
23
|
+
blg --help
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
生成一个示例博客目录
|
|
27
|
+
|
|
28
|
+
```shell
|
|
29
|
+
blg -n "C:\Users\ABC\Desktop\"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
生成静态页面
|
|
33
|
+
|
|
34
|
+
```shell
|
|
35
|
+
blg blg -o "C:\Users\ABC\Desktop\simple-blog\"
|
|
36
|
+
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# djhx-blogger
|
|
2
|
+
|
|
3
|
+
一个个人使用的博客生成器。
|
|
4
|
+
|
|
5
|
+
## 命令
|
|
6
|
+
|
|
7
|
+
查看帮助
|
|
8
|
+
```shell
|
|
9
|
+
blg --help
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
生成一个示例博客目录
|
|
13
|
+
|
|
14
|
+
```shell
|
|
15
|
+
blg -n "C:\Users\ABC\Desktop\"
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
生成静态页面
|
|
19
|
+
|
|
20
|
+
```shell
|
|
21
|
+
blg blg -o "C:\Users\ABC\Desktop\simple-blog\"
|
|
22
|
+
```
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: djhx-blogger
|
|
3
|
+
Version: 0.1.7
|
|
4
|
+
Summary: A simple static site generator, support only markdown file.
|
|
5
|
+
Requires-Python: >=3.9
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: beautifulsoup4>=4.14.2
|
|
9
|
+
Requires-Dist: fabric>=3.2.2
|
|
10
|
+
Requires-Dist: jinja2>=3.1.6
|
|
11
|
+
Requires-Dist: markdown>=3.9
|
|
12
|
+
Requires-Dist: typer>=0.20.0
|
|
13
|
+
Dynamic: license-file
|
|
14
|
+
|
|
15
|
+
# djhx-blogger
|
|
16
|
+
|
|
17
|
+
一个个人使用的博客生成器。
|
|
18
|
+
|
|
19
|
+
## 命令
|
|
20
|
+
|
|
21
|
+
查看帮助
|
|
22
|
+
```shell
|
|
23
|
+
blg --help
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
生成一个示例博客目录
|
|
27
|
+
|
|
28
|
+
```shell
|
|
29
|
+
blg -n "C:\Users\ABC\Desktop\"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
生成静态页面
|
|
33
|
+
|
|
34
|
+
```shell
|
|
35
|
+
blg blg -o "C:\Users\ABC\Desktop\simple-blog\"
|
|
36
|
+
```
|
djhx_blogger-0.1.6/PKG-INFO
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: djhx-blogger
|
|
3
|
-
Version: 0.1.6
|
|
4
|
-
Summary: A simple static site generator, support only markdown file.
|
|
5
|
-
Requires-Python: >=3.9
|
|
6
|
-
License-File: LICENSE
|
|
7
|
-
Requires-Dist: beautifulsoup4>=4.14.2
|
|
8
|
-
Requires-Dist: fabric>=3.2.2
|
|
9
|
-
Requires-Dist: jinja2>=3.1.6
|
|
10
|
-
Requires-Dist: markdown>=3.9
|
|
11
|
-
Requires-Dist: typer>=0.20.0
|
|
12
|
-
Dynamic: license-file
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: djhx-blogger
|
|
3
|
-
Version: 0.1.6
|
|
4
|
-
Summary: A simple static site generator, support only markdown file.
|
|
5
|
-
Requires-Python: >=3.9
|
|
6
|
-
License-File: LICENSE
|
|
7
|
-
Requires-Dist: beautifulsoup4>=4.14.2
|
|
8
|
-
Requires-Dist: fabric>=3.2.2
|
|
9
|
-
Requires-Dist: jinja2>=3.1.6
|
|
10
|
-
Requires-Dist: markdown>=3.9
|
|
11
|
-
Requires-Dist: typer>=0.20.0
|
|
12
|
-
Dynamic: license-file
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|