Metadata-Version: 2.0
Name: bloggertool
Version: 0.4.2
Summary: Command line tool to communicate with blogger.com and blogspot.com.
Home-page: https://github.com/asvetlov/bloggertool
Author: Andrew Svetlov
Author-email: andrew.svetlov@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
Requires-Dist: python-dateutil
Requires-Dist: keyring
Requires-Dist: jinja2
Requires-Dist: markdown
Requires-Dist: PyYAML
Requires-Dist: pyinotify
Requires-Dist: googleapiclient
Requires-Dist: transliterate

This project contains single (and simple enough) console command named 'blog'.
Typical usage scenario:
init project
$ blog init path/to/blog/articles
$ cd path/to/blog/articles
setup user
$ blog user --email <user@gmail.com> --blogid <id of blog at blogger.com>
make and edit article file
$ touch article.md
add post to local database
$ blog add article.md
open in browser locally generated html file for article.md
$ blog open article.md
set labels
$ blog label article.md --add "bloggertool, console, blogspot.com"
publish post on blosgspot.com
$ blog publish article.md
edit article.md making some changes
$ ...
synchronize remote presentation with local md file
$ blog push article.md

For other available commands please see
$ blog --help


