8000 GitHub - pegler/python-kit: Development kit for the Python language
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

pegler/python-kit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python development kit for prismic.io

Getting started

Install the kit for your project

Simply run:

pip install prismic

Get started with prismic.io

You can find out how to get started with prismic.io on our prismic.io developer's portal.

Get started using the kit

Also on our prismic.io developer's portal, on top of our full documentation, you will:

Kit's detailed documentation

You can find the documentation of the Python kit right here: http://prismic.readthedocs.org/en/latest/

Here is a basic example of use:

>>> import prismic
>>> api = prismic.get("http://your-lesbonneschoses.prismic.io/api", "access_token")
>>> form = api.form("everything")

>>> # Set the ref and the query to get all documents of type "product"
>>> form.ref(api.get_master()).query("""[[:d = any(document.type, ["product"])]]""")

>>> response = form.submit()
>>> response.documents[0].get_text("product.name")
u'Speculoos Macaron'

Using Memcached (or any other cache)

By default, the kit will not cache the requests. It is highly recommended to do so, for example using Python Memcached.

You can pass a Memcached client to the prismic.get call:

>>> import memcache
>>> api = prismic.get("http://your-lesbonneschoses.prismic.io/api", "access_token", memcache.Client(['127.0.0.1:11211']))

By duck typing you can pass any object that implement the set and get methods (see the NoCache object for the methods to implement).

Changelog

Need to see what changed, or to upgrade your kit? We keep our changelog on this repository's "Releases" tab.

Contribute to the kit

Contribution is open to all developer levels, read our "Contribute to the official kits" documentation to learn more.

Install the kit locally

This kit gets installed like any Python library.

(Feel free to detail the proper steps for beginners by submitting a pull request.)

Test

Please write tests for any bugfix or new feature.

If you find existing code that is not optimally tested and wish to make it better, we really appreciate it; but you should document it on its own branch and its own pull request.

Documentation

Please document any bugfix or new feature.

If you find existing code that is not optimally documented and wish to make it better, we really appreciate it; but you should document it on its own branch and its own pull request.

Licence

This software is licensed under the Apache 2 license, quoted below.

Copyright 2013 Zengularity (http://www.zengularity.com).

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Development kit for the Python language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%
0