Debug package
This commit is contained in:
parent
5c0cc8e2f4
commit
a7217345e1
14 changed files with 86 additions and 65 deletions
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
|
@ -0,0 +1 @@
|
|||
recursive-include bcst/themes/ **
|
45
README.md
45
README.md
|
@ -4,28 +4,29 @@ BCST allow you to create a beautiful start page very quickly. To install the dep
|
|||
|
||||
> pip install jinja2
|
||||
|
||||
Simple right a simple json resource file:
|
||||
|
||||
{
|
||||
"title": "Default Theme",
|
||||
"bookmarks": {
|
||||
"engines": {
|
||||
"Qwant": "https://www.qwant.com/",
|
||||
"DDG": "https://duckduckgo.com/",
|
||||
"Google": "http://google.fr"
|
||||
},
|
||||
"Reddit": {
|
||||
"Home": "https://www.reddit.com/",
|
||||
"Unixporn": "https://www.reddit.com/r/Unixporn",
|
||||
"Linux": "https://www.reddit.com/me/m/linux"
|
||||
},
|
||||
"Social": {
|
||||
"Discord": "https://discordapp.com/channels/@me",
|
||||
"Twitter": "https://twitter.com/",
|
||||
"LinuxRocks": "https://linuxrocks.online/web/getting-started"
|
||||
}
|
||||
}
|
||||
}
|
||||
Simple write a simple json resource file:
|
||||
```
|
||||
{
|
||||
"title":"Default Theme",
|
||||
"bookmarks":{
|
||||
"engines":{
|
||||
"Qwant":"https://www.qwant.com/",
|
||||
"DDG":"https://duckduckgo.com/",
|
||||
"Google":"http://google.fr"
|
||||
},
|
||||
"Reddit":{
|
||||
"Home":"https://www.reddit.com/",
|
||||
"Unixporn":"https://www.reddit.com/r/Unixporn",
|
||||
"Linux":"https://www.reddit.com/me/m/linux"
|
||||
},
|
||||
"Social":{
|
||||
"Discord":"https://discordapp.com/channels/@me",
|
||||
"Twitter":"https://twitter.com/",
|
||||
"LinuxRocks":"https://linuxrocks.online/web/getting-started"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
Then simply run:
|
||||
|
||||
> ./src/bcst.py \<resource-file-path> \<start-page-destination>
|
||||
|
|
11
bcst
11
bcst
|
@ -1,11 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from libs.args import args
|
||||
from libs.resource import Resource
|
||||
from libs.theme import Theme
|
||||
|
||||
|
||||
res=Resource(args.resource)
|
||||
t=Theme("themes/default",res.json)
|
||||
|
||||
t.deploy(args.destination)
|
9
bcst/bcst
Executable file
9
bcst/bcst
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from bcst.args import args
|
||||
from bcst.resource import Resource
|
||||
from bcst.theme import Theme
|
||||
|
||||
res=Resource(args.resource)
|
||||
t=Theme("default",res.json)
|
||||
t.deploy(args.destination)
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from os import path
|
||||
import json, jsonschema
|
||||
import json
|
||||
|
||||
|
||||
class Resource:
|
48
bcst/theme.py
Normal file
48
bcst/theme.py
Normal file
|
@ -0,0 +1,48 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from bcst.resource import Resource
|
||||
from shutil import copytree, ignore_patterns
|
||||
from jinja2 import Template
|
||||
import os
|
||||
from os import path
|
||||
|
||||
themes_location=path.join(path.dirname(path.abspath(__file__)),"themes")
|
||||
|
||||
|
||||
def list_themes():
|
||||
themes=list()
|
||||
for f in os.listdir(themes_location):
|
||||
if(not(os.path.isfile(os.path.join(themes_location,f)))):
|
||||
themes.append(f)
|
||||
return(themes)
|
||||
|
||||
def get_theme_path(name):
|
||||
p=path.join(themes_location,name)
|
||||
if(path.isdir(p)):
|
||||
return(p)
|
||||
else:
|
||||
print("Could not find theme: "+name)
|
||||
exit(1)
|
||||
|
||||
class Theme:
|
||||
|
||||
def __init__(self, name, resource_data):
|
||||
self.theme_path=get_theme_path(name)
|
||||
res=Resource(self.theme_path+"/resources.json")
|
||||
self.data=res.json
|
||||
self.data.update(resource_data)
|
||||
# Read theme
|
||||
try:
|
||||
with open(self.theme_path+"/index.html",'r') as f:
|
||||
self.template=Template(f.read())
|
||||
except IOError:
|
||||
print("Unable to found "+resource)
|
||||
exit(1)
|
||||
|
||||
|
||||
def deploy(self, dest_path):
|
||||
copytree(self.theme_path, dest_path, dirs_exist_ok=True,ignore=ignore_patterns("*.json","index.html"))
|
||||
themes_dir=os.path.split(self.theme_path)[0]
|
||||
theme_dir=os.path.split(self.theme_path)[1]
|
||||
with open(dest_path+"/index.html", "w") as index:
|
||||
index.write(self.template.render(self.data))
|
|
@ -1,29 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from resource import Resource
|
||||
from shutil import copytree, ignore_patterns
|
||||
from jinja2 import Template
|
||||
import os
|
||||
|
||||
class Theme:
|
||||
|
||||
def __init__(self, path, resource_data):
|
||||
res=Resource(path+"/resources.json")
|
||||
self.theme_path=path.strip('/')
|
||||
self.data=res.json
|
||||
self.data.update(resource_data)
|
||||
# Read theme
|
||||
try:
|
||||
with open(path+"/index.html",'r') as f:
|
||||
self.template=Template(f.read())
|
||||
except IOError:
|
||||
print("Unable to found "+resource)
|
||||
exit(1)
|
||||
|
||||
|
||||
def deploy(self, path):
|
||||
copytree(self.theme_path, path, dirs_exist_ok=True,ignore=ignore_patterns("*.json","index.html"))
|
||||
themes_dir=os.path.split(self.theme_path)[0]
|
||||
theme_dir=os.path.split(self.theme_path)[1]
|
||||
with open(path+"/index.html", "w") as index:
|
||||
index.write(self.template.render(self.data))
|
6
setup.py
6
setup.py
|
@ -5,14 +5,16 @@ with open("README.md", "r") as readme:
|
|||
|
||||
setuptools.setup(
|
||||
name="bcst",
|
||||
version="0.0.1",
|
||||
scripts=['bcst'],
|
||||
version="0.0.3",
|
||||
scripts=["bcst/bcst"],
|
||||
author="Loic Guegan",
|
||||
author_email="manzerbredes@mailbox.org",
|
||||
description="A web browser start page generator.",
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
url="https://gitlab.com/manzerbredes/bcst",
|
||||
install_requires=["jinja2"],
|
||||
include_package_data=True,
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue