Metadata-Version: 2.1
Name: entries
Version: 0.1.2
Summary: Micropub client for the terminal
Home-page: https://github.com/tsileo/entries
Author: Thomas Sileo
Author-email: t@a4.io
License: OSI Approved :: ISC License (ISCL)
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pyyaml
Requires-Dist: mf2py
Requires-Dist: click
Requires-Dist: requests

# entries

<a href="https://d.a4.io/tsileo/entries"><img src="https://d.a4.io/api/badges/tsileo/entries/status.svg" alt="Build Status"></a>
<a href="https://pypi.python.org/pypi/entries/"><img alt="PyPI" src="https://img.shields.io/pypi/v/entries.svg?color=blue"></a>
<a href="https://github.com/tsileo/entries/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-ISC-red.svg?style=flat" alt="License"></a>
<a href="https://github.com/ambv/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>

_entries_ is an open-source [Micropub](https://www.w3.org/TR/micropub/) client for the terminal ([source code](http://github.com/tsileo/entries))

Built as a client for [entries.pub](https://github.com/tsileo/entries.pub) but should work with any Micropub server.


## Features

 - Zero configuration (everything is "guessed" from the URL)
 - Create/update/delete articles directly within your favorite `$EDITOR`
 - Created with `article` [microformats2](http://microformats.org/wiki/microformats2) objects in mind
 - Support the [mp-slug](https://indieweb.org/Micropub-extensions#Slug) extension


## Install

The easiest way to install (and use) _entries_ is to use [pipx](https://pipxproject.github.io/pipx/):

    $ pipx install entries

Or using pip (requires Python3+):

    $ pip install entries


## Usage

See the help.

    $ entries -h

    # Create a new article
    $ entries create https://mywebsite.tld

    # Update an article
    $ entries update https://mywebsite.tld/posts/1

    # Delete an article
    $ entries delete https://mywebsite.tld/posts/1


