Update package
This commit is contained in:
parent
a7217345e1
commit
24ef10da65
5 changed files with 45 additions and 40 deletions
44
README.md
44
README.md
|
@ -1,32 +1,18 @@
|
||||||
Beautiful Custom Start Page
|
# Beautiful Custom Start Page
|
||||||
===
|
|
||||||
BCST allow you to create a beautiful start page very quickly. To install the dependencies, simply run:
|
|
||||||
|
|
||||||
> pip install jinja2
|
### Basic usage
|
||||||
|
**bcst** allow you to create a beautiful start page very quickly. To install **bcst** run
|
||||||
|
`pip install bcst`. Then choose a theme (screenshots are availaible on the package repository):
|
||||||
|
> bcst -l
|
||||||
|
>
|
||||||
|
Next step, extract the theme resources:
|
||||||
|
> bcst -e \<your-theme>
|
||||||
|
|
||||||
Simple write a simple json resource file:
|
This, will create a `resources.json` in the current directory. Now, you can customize it to your needs. Then, generate your start page:
|
||||||
```
|
> bcst resources.json \<start-page-destination>
|
||||||
{
|
|
||||||
"title":"Default Theme",
|
Voilà!
|
||||||
"bookmarks":{
|
|
||||||
"engines":{
|
### Submit your own theme
|
||||||
"Qwant":"https://www.qwant.com/",
|
TODO
|
||||||
"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>
|
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
args_parser = argparse.ArgumentParser()
|
args_parser = argparse.ArgumentParser()
|
||||||
args_parser.add_argument("resource", help="A JSON resource file.")
|
args_parser.add_argument("resource", nargs="?", help="A JSON resource file.")
|
||||||
args_parser.add_argument("destination", help="Start page folder name.")
|
args_parser.add_argument("destination", nargs="?",help="Start page folder name.")
|
||||||
|
args_parser.add_argument("-l","--list", dest="list",action="store_true", help="List available themes.")
|
||||||
|
args_parser.add_argument("-e","--extract", metavar="theme",dest="extract", help="Extract theme resource.")
|
||||||
args = args_parser.parse_args()
|
args = args_parser.parse_args()
|
||||||
|
|
||||||
|
|
17
bcst/bcst
17
bcst/bcst
|
@ -2,8 +2,17 @@
|
||||||
|
|
||||||
from bcst.args import args
|
from bcst.args import args
|
||||||
from bcst.resource import Resource
|
from bcst.resource import Resource
|
||||||
from bcst.theme import Theme
|
from bcst.theme import *
|
||||||
|
|
||||||
res=Resource(args.resource)
|
if args.list:
|
||||||
t=Theme("default",res.json)
|
for theme in list_themes():
|
||||||
t.deploy(args.destination)
|
print("- "+theme)
|
||||||
|
exit(0)
|
||||||
|
elif args.extract:
|
||||||
|
t=Theme("default")
|
||||||
|
t.extract("resources.json")
|
||||||
|
exit(0)
|
||||||
|
elif args.resource and args.destination:
|
||||||
|
t=Theme("default")
|
||||||
|
t.update_resource(args.resource)
|
||||||
|
t.deploy(args.destination)
|
||||||
|
|
|
@ -26,11 +26,10 @@ def get_theme_path(name):
|
||||||
|
|
||||||
class Theme:
|
class Theme:
|
||||||
|
|
||||||
def __init__(self, name, resource_data):
|
def __init__(self, name):
|
||||||
self.theme_path=get_theme_path(name)
|
self.theme_path=get_theme_path(name)
|
||||||
res=Resource(self.theme_path+"/resources.json")
|
self.res_path=self.theme_path+"/resources.json"
|
||||||
self.data=res.json
|
self.data=Resource(self.res_path).json
|
||||||
self.data.update(resource_data)
|
|
||||||
# Read theme
|
# Read theme
|
||||||
try:
|
try:
|
||||||
with open(self.theme_path+"/index.html",'r') as f:
|
with open(self.theme_path+"/index.html",'r') as f:
|
||||||
|
@ -39,6 +38,15 @@ class Theme:
|
||||||
print("Unable to found "+resource)
|
print("Unable to found "+resource)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
|
def update_resource(self,resource_path):
|
||||||
|
r=Resource(resource_path)
|
||||||
|
self.data.update(r.json)
|
||||||
|
|
||||||
|
|
||||||
|
def extract(self, dest):
|
||||||
|
with open(dest, "w") as resFile:
|
||||||
|
resFile.write(self.data.data)
|
||||||
|
|
||||||
|
|
||||||
def deploy(self, dest_path):
|
def deploy(self, dest_path):
|
||||||
copytree(self.theme_path, dest_path, dirs_exist_ok=True,ignore=ignore_patterns("*.json","index.html"))
|
copytree(self.theme_path, dest_path, dirs_exist_ok=True,ignore=ignore_patterns("*.json","index.html"))
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as readme:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="bcst",
|
name="bcst",
|
||||||
version="0.0.3",
|
version="0.0.4",
|
||||||
scripts=["bcst/bcst"],
|
scripts=["bcst/bcst"],
|
||||||
author="Loic Guegan",
|
author="Loic Guegan",
|
||||||
author_email="manzerbredes@mailbox.org",
|
author_email="manzerbredes@mailbox.org",
|
||||||
|
|
Loading…
Add table
Reference in a new issue