autoblogs 0.0.1.dev0__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.
- autoblogs-0.0.1.dev0/LICENSE +21 -0
- autoblogs-0.0.1.dev0/PKG-INFO +93 -0
- autoblogs-0.0.1.dev0/README.md +47 -0
- autoblogs-0.0.1.dev0/autoblogs/__init__.py +16 -0
- autoblogs-0.0.1.dev0/autoblogs/api.py +6 -0
- autoblogs-0.0.1.dev0/autoblogs.egg-info/PKG-INFO +93 -0
- autoblogs-0.0.1.dev0/autoblogs.egg-info/SOURCES.txt +10 -0
- autoblogs-0.0.1.dev0/autoblogs.egg-info/dependency_links.txt +1 -0
- autoblogs-0.0.1.dev0/autoblogs.egg-info/top_level.txt +2 -0
- autoblogs-0.0.1.dev0/pyproject.toml +38 -0
- autoblogs-0.0.1.dev0/setup.cfg +4 -0
- autoblogs-0.0.1.dev0/setup.py +40 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Debmalya Pramanik
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: autoblogs
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: Advanced Project Tracker and Manager Application
|
|
5
|
+
Home-page: https://github.com/PyUtility/autoblogs
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 Debmalya Pramanik
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Classifier: Development Status :: 1 - Planning
|
|
29
|
+
Classifier: Intended Audience :: Developers
|
|
30
|
+
Classifier: Intended Audience :: Education
|
|
31
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
32
|
+
Classifier: Operating System :: Unix
|
|
33
|
+
Classifier: Operating System :: POSIX
|
|
34
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
35
|
+
Classifier: Programming Language :: Python
|
|
36
|
+
Classifier: Programming Language :: Python :: 3
|
|
37
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
39
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
40
|
+
Requires-Python: >=3.12
|
|
41
|
+
Description-Content-Type: text/markdown
|
|
42
|
+
License-File: LICENSE
|
|
43
|
+
Dynamic: home-page
|
|
44
|
+
Dynamic: license-file
|
|
45
|
+
Dynamic: requires-python
|
|
46
|
+
|
|
47
|
+
<div align = "center">
|
|
48
|
+
|
|
49
|
+
# Auto Blogs - AI-Powered Content Generation Toolkit
|
|
50
|
+
|
|
51
|
+
[](https://github.com/PyUtility/autoblogs/issues)
|
|
52
|
+
[](https://github.com/PyUtility/autoblogs/network)
|
|
53
|
+
[](https://github.com/PyUtility/autoblogs/stargazers)
|
|
54
|
+
[](https://github.com/PyUtility/autoblogs/blob/master/LICENSE)
|
|
55
|
+
|
|
56
|
+
</div>
|
|
57
|
+
|
|
58
|
+
<div align = "justify">
|
|
59
|
+
|
|
60
|
+
AN AI-assisted content generation tool that can leverage both open-source and/or propritary Large Language Model (LLM) agent to
|
|
61
|
+
create high-quality, SEO-optimized contents for various needs. he system integrates a *human-in-the-loop workflow*, ensuring
|
|
62
|
+
that AI-generated drafts can be reviewed, edited, and refined before publishing.
|
|
63
|
+
|
|
64
|
+
## Project Overview
|
|
65
|
+
|
|
66
|
+
This project aims to simplify and accelerate the process of writing blog content by combining AI automation with human editorial
|
|
67
|
+
control. It provides a flexible framework where multiple LLM providers can be integrated to create and customize contents using
|
|
68
|
+
a [streamlit](https://streamlit.io/) dashboard (for local environment) or from GitHub PR reviews before being published to
|
|
69
|
+
various platforms like [GitHub Pages](https://docs.github.com/en/pages), [substack](https://substack.com/), etc.
|
|
70
|
+
|
|
71
|
+
## Getting Started
|
|
72
|
+
|
|
73
|
+
The repository provides two distinct services - a content generation tool that is built and developed using Python programming,
|
|
74
|
+
and can be installed using PyPI as below:
|
|
75
|
+
|
|
76
|
+
```shell
|
|
77
|
+
pip install autoblogs
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
The other is the local host development environment that can be used to quickly create contents. This uses a `streamlit`
|
|
81
|
+
interface when you can generate and review contents before final publishing.
|
|
82
|
+
|
|
83
|
+
## Contribution Guidelines
|
|
84
|
+
|
|
85
|
+
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome. A detailed
|
|
86
|
+
overview on how to contribute can be found in the **contributing guidelines**. If you run into an issue, please file a new
|
|
87
|
+
[issue](https://github.com/PyUtility/autoblogs/issues) for discussion. Create a pull request for a new feature or a fix to
|
|
88
|
+
an existing issue [here](https://github.com/PyUtility/autoblogs/pulls).
|
|
89
|
+
|
|
90
|
+
As contributors and maintainers to this project, you are expected to abide by [PyUtility](https://github.com/PyUtility)'s
|
|
91
|
+
code of conduct. More information can be found at: **Contributor Code of Conduct**.
|
|
92
|
+
|
|
93
|
+
</div>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<div align = "center">
|
|
2
|
+
|
|
3
|
+
# Auto Blogs - AI-Powered Content Generation Toolkit
|
|
4
|
+
|
|
5
|
+
[](https://github.com/PyUtility/autoblogs/issues)
|
|
6
|
+
[](https://github.com/PyUtility/autoblogs/network)
|
|
7
|
+
[](https://github.com/PyUtility/autoblogs/stargazers)
|
|
8
|
+
[](https://github.com/PyUtility/autoblogs/blob/master/LICENSE)
|
|
9
|
+
|
|
10
|
+
</div>
|
|
11
|
+
|
|
12
|
+
<div align = "justify">
|
|
13
|
+
|
|
14
|
+
AN AI-assisted content generation tool that can leverage both open-source and/or propritary Large Language Model (LLM) agent to
|
|
15
|
+
create high-quality, SEO-optimized contents for various needs. he system integrates a *human-in-the-loop workflow*, ensuring
|
|
16
|
+
that AI-generated drafts can be reviewed, edited, and refined before publishing.
|
|
17
|
+
|
|
18
|
+
## Project Overview
|
|
19
|
+
|
|
20
|
+
This project aims to simplify and accelerate the process of writing blog content by combining AI automation with human editorial
|
|
21
|
+
control. It provides a flexible framework where multiple LLM providers can be integrated to create and customize contents using
|
|
22
|
+
a [streamlit](https://streamlit.io/) dashboard (for local environment) or from GitHub PR reviews before being published to
|
|
23
|
+
various platforms like [GitHub Pages](https://docs.github.com/en/pages), [substack](https://substack.com/), etc.
|
|
24
|
+
|
|
25
|
+
## Getting Started
|
|
26
|
+
|
|
27
|
+
The repository provides two distinct services - a content generation tool that is built and developed using Python programming,
|
|
28
|
+
and can be installed using PyPI as below:
|
|
29
|
+
|
|
30
|
+
```shell
|
|
31
|
+
pip install autoblogs
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
The other is the local host development environment that can be used to quickly create contents. This uses a `streamlit`
|
|
35
|
+
interface when you can generate and review contents before final publishing.
|
|
36
|
+
|
|
37
|
+
## Contribution Guidelines
|
|
38
|
+
|
|
39
|
+
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome. A detailed
|
|
40
|
+
overview on how to contribute can be found in the **contributing guidelines**. If you run into an issue, please file a new
|
|
41
|
+
[issue](https://github.com/PyUtility/autoblogs/issues) for discussion. Create a pull request for a new feature or a fix to
|
|
42
|
+
an existing issue [here](https://github.com/PyUtility/autoblogs/pulls).
|
|
43
|
+
|
|
44
|
+
As contributors and maintainers to this project, you are expected to abide by [PyUtility](https://github.com/PyUtility)'s
|
|
45
|
+
code of conduct. More information can be found at: **Contributor Code of Conduct**.
|
|
46
|
+
|
|
47
|
+
</div>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
AutoBlogs - AI-Powered Content Generation Toolkit
|
|
5
|
+
=================================================
|
|
6
|
+
|
|
7
|
+
AN AI-assisted content generation tool that can leverage both
|
|
8
|
+
open-source and/or propritary Large Language Model (LLM) agent to
|
|
9
|
+
create high-quality, SEO-optimized contents for various needs. he
|
|
10
|
+
system integrates a *human-in-the-loop workflow*, ensuring that
|
|
11
|
+
AI-generated drafts can be reviewed, edited, and published.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__version__ = "v0.0.1.dev0"
|
|
15
|
+
|
|
16
|
+
# ? added init time options registrations from aptracker/api.py
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: autoblogs
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: Advanced Project Tracker and Manager Application
|
|
5
|
+
Home-page: https://github.com/PyUtility/autoblogs
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 Debmalya Pramanik
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Classifier: Development Status :: 1 - Planning
|
|
29
|
+
Classifier: Intended Audience :: Developers
|
|
30
|
+
Classifier: Intended Audience :: Education
|
|
31
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
32
|
+
Classifier: Operating System :: Unix
|
|
33
|
+
Classifier: Operating System :: POSIX
|
|
34
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
35
|
+
Classifier: Programming Language :: Python
|
|
36
|
+
Classifier: Programming Language :: Python :: 3
|
|
37
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
39
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
40
|
+
Requires-Python: >=3.12
|
|
41
|
+
Description-Content-Type: text/markdown
|
|
42
|
+
License-File: LICENSE
|
|
43
|
+
Dynamic: home-page
|
|
44
|
+
Dynamic: license-file
|
|
45
|
+
Dynamic: requires-python
|
|
46
|
+
|
|
47
|
+
<div align = "center">
|
|
48
|
+
|
|
49
|
+
# Auto Blogs - AI-Powered Content Generation Toolkit
|
|
50
|
+
|
|
51
|
+
[](https://github.com/PyUtility/autoblogs/issues)
|
|
52
|
+
[](https://github.com/PyUtility/autoblogs/network)
|
|
53
|
+
[](https://github.com/PyUtility/autoblogs/stargazers)
|
|
54
|
+
[](https://github.com/PyUtility/autoblogs/blob/master/LICENSE)
|
|
55
|
+
|
|
56
|
+
</div>
|
|
57
|
+
|
|
58
|
+
<div align = "justify">
|
|
59
|
+
|
|
60
|
+
AN AI-assisted content generation tool that can leverage both open-source and/or propritary Large Language Model (LLM) agent to
|
|
61
|
+
create high-quality, SEO-optimized contents for various needs. he system integrates a *human-in-the-loop workflow*, ensuring
|
|
62
|
+
that AI-generated drafts can be reviewed, edited, and refined before publishing.
|
|
63
|
+
|
|
64
|
+
## Project Overview
|
|
65
|
+
|
|
66
|
+
This project aims to simplify and accelerate the process of writing blog content by combining AI automation with human editorial
|
|
67
|
+
control. It provides a flexible framework where multiple LLM providers can be integrated to create and customize contents using
|
|
68
|
+
a [streamlit](https://streamlit.io/) dashboard (for local environment) or from GitHub PR reviews before being published to
|
|
69
|
+
various platforms like [GitHub Pages](https://docs.github.com/en/pages), [substack](https://substack.com/), etc.
|
|
70
|
+
|
|
71
|
+
## Getting Started
|
|
72
|
+
|
|
73
|
+
The repository provides two distinct services - a content generation tool that is built and developed using Python programming,
|
|
74
|
+
and can be installed using PyPI as below:
|
|
75
|
+
|
|
76
|
+
```shell
|
|
77
|
+
pip install autoblogs
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
The other is the local host development environment that can be used to quickly create contents. This uses a `streamlit`
|
|
81
|
+
interface when you can generate and review contents before final publishing.
|
|
82
|
+
|
|
83
|
+
## Contribution Guidelines
|
|
84
|
+
|
|
85
|
+
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome. A detailed
|
|
86
|
+
overview on how to contribute can be found in the **contributing guidelines**. If you run into an issue, please file a new
|
|
87
|
+
[issue](https://github.com/PyUtility/autoblogs/issues) for discussion. Create a pull request for a new feature or a fix to
|
|
88
|
+
an existing issue [here](https://github.com/PyUtility/autoblogs/pulls).
|
|
89
|
+
|
|
90
|
+
As contributors and maintainers to this project, you are expected to abide by [PyUtility](https://github.com/PyUtility)'s
|
|
91
|
+
code of conduct. More information can be found at: **Contributor Code of Conduct**.
|
|
92
|
+
|
|
93
|
+
</div>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"setuptools==82.0.1",
|
|
4
|
+
"wheel==0.46.3"
|
|
5
|
+
]
|
|
6
|
+
build-backend = "setuptools.build_meta"
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "autoblogs"
|
|
10
|
+
dynamic = ["version"]
|
|
11
|
+
description = "Advanced Project Tracker and Manager Application"
|
|
12
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
|
13
|
+
requires-python = ">=3.12"
|
|
14
|
+
license = {file = "LICENSE" }
|
|
15
|
+
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Intended Audience :: Education",
|
|
20
|
+
"Intended Audience :: End Users/Desktop",
|
|
21
|
+
"Operating System :: Unix",
|
|
22
|
+
"Operating System :: POSIX",
|
|
23
|
+
"Operating System :: Microsoft :: Windows",
|
|
24
|
+
"Programming Language :: Python",
|
|
25
|
+
"Programming Language :: Python :: 3",
|
|
26
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"License :: OSI Approved :: MIT License"
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[tool.setuptools]
|
|
32
|
+
py-modules = []
|
|
33
|
+
|
|
34
|
+
[tool.setuptools.packages.find]
|
|
35
|
+
exclude = ["tests*", "examples*"]
|
|
36
|
+
|
|
37
|
+
[tool.setuptools.dynamic]
|
|
38
|
+
version = {attr = "autoblogs.__version__"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
import sys
|
|
5
|
+
|
|
6
|
+
from setuptools import setup
|
|
7
|
+
from setuptools import find_packages
|
|
8
|
+
|
|
9
|
+
sys.path.append(
|
|
10
|
+
os.path.join(os.path.dirname(__file__))
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
import autoblogs
|
|
14
|
+
|
|
15
|
+
setup(
|
|
16
|
+
name = "autoblogs",
|
|
17
|
+
version = autoblogs.__version__,
|
|
18
|
+
description = "AI-Assited Content Generation Toolkit",
|
|
19
|
+
long_description = open("README.md", "r").read(),
|
|
20
|
+
long_description_content_type = "text/markdown",
|
|
21
|
+
url = "https://github.com/PyUtility/autoblogs",
|
|
22
|
+
packages = find_packages(
|
|
23
|
+
exclude = ["tests*", "examples*"]
|
|
24
|
+
),
|
|
25
|
+
classifiers = [
|
|
26
|
+
"Development Status :: 1 - Planning",
|
|
27
|
+
"Intended Audience :: Developers",
|
|
28
|
+
"Intended Audience :: Education",
|
|
29
|
+
"Intended Audience :: End Users/Desktop",
|
|
30
|
+
"Operating System :: Unix",
|
|
31
|
+
"Operating System :: POSIX",
|
|
32
|
+
"Operating System :: Microsoft :: Windows",
|
|
33
|
+
"Programming Language :: Python",
|
|
34
|
+
"Programming Language :: Python :: 3",
|
|
35
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
36
|
+
"Programming Language :: Python :: 3.12",
|
|
37
|
+
"License :: OSI Approved :: MIT License"
|
|
38
|
+
],
|
|
39
|
+
python_requires = ">=3.12"
|
|
40
|
+
)
|