All Projects â†’ ellisonleao â†’ Pyzeef

ellisonleao / Pyzeef

Licence: bsd-3-clause
🔌 Python lib to consume the ZEEF's API (Unmaintained)

Programming Languages

python
139335 projects - #7 most used programming language

pyzeef

Code Health Build Status PyPI

Welcome to the Python Zeef API lib.

Table of contents

Installing

Using pip:

pip install pyzeef

or cloning installing the current build

	git clone https://github.com/ellisonleao/pyzeef.git
	cd pyzeef
	python setup.py develop

I strong recommend using a virtualenv before installing any of the methods above.

Basic Usage

Before get things started, you will need a ZEEF Token in order to use the lib. To generate a new token, please go here

After generating your token:

from pyzeef import Zeef

	z = Zeef('YOUR-TOKEN')
	print z.pages
	# Output
	[
		<Page ID>,
		...
	]

The ZEEF Class

Zeef(token, persist_pages=True, get_scratchpad=True)

When instantiating a new Zeef class all of your pages and the scratchpad will also be persisted by default. If you don't want to fetch the pages and/or the scratchpad you can pass persist_pages and get_scratchpad kwargs when creating the new class

Methods

authorize(token=None, persist_pages=True)

That method will be called on the object creation if persist_pages=True. It will authorize and persist your token through all the API requests and also fetch/persist your ZEEF pages. You can also pass a new token when instantiating the class. That token will be persisted to be used on the future requests.

get_page(page_id=int, alias=string, username=string)

You can fetch a page by passing the page_id or passing both alias and username This wil return a Page class.

get_block(block_id)

This will return a Block class object, if any block is found with the block_id provided.

get_link(link_id)

This will return a Link class objects, if any link is found with the link_id provided.

create_page(name, language='en', type=['SUBJECT', 'COMPANY', 'PERSONAL'])

Quick method to create a new page, given the name, language and the type. This will return a Page instance with the new page information.

Main properties

  • page - This will return the fetched pages list, as Page objects.

The Page Class

When fetching the pages, there is a helper class which can help you make Zeef Page CRUD operations.

Methods

update(type=['SUBJECT', 'COMPANY'], description='your description')

Updates the current page. Both fields are optional.

to_markdown()

This will output your ZEEF page in a markdown format.

Main Properties

  • blocks - A page can contain multiple blocks. When retrieving a page, the blocks property will return a list of Block objects to help on block API operations.
  • title - Page's title.

The Block Class

Methods

update(data)

Updates the current block with given data dict. data keys can be:

  • title - String
  • promoted - Boolean
  • publicly_visible - Boolean

For link type blocks, we can add:

  • description - String

For feed type blocks, we can add:

  • feed_url - URL String
  • max_links - Integer
  • refresh_minutes - Integer

delete()

Deletes the block from the Page

Main Properties

  • links - A list of Link objects to help links API operations
  • title - Block's title
  • type - Block's type

The Link Class

Methods

update(link='http://mylink.com', description='text', title='title')

Updates the current link with the provided kwargs.

delete()

Deletes the link

Main Properties

  • title - Link's title
  • url - Link's URL
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].