Trello » TrelloPy Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

pystache removed support for pystache.View in future versions. Add note about using earlier version of pystache for the time being so that we can generate the API.

Changeset ca51a068a2a8

Parent b61dc9da6c57

by Profile picture of User 476Ben McCormack <benm@fogcreek.com>

Changes to one file · Browse files at ca51a068a2a8 Showing diff from parent b61dc9da6c57 Diff from another changeset...

Change 1 of 1 Show Entire File trello_api_gen.py Stacked
 
1
2
3
4
 
 
 
 
 
 
 
5
6
7
 
1
2
3
 
4
5
6
7
8
9
10
11
12
13
@@ -1,7 +1,13 @@
 import os  import re  import requests -import pystache +import pystache # requires pystache 0.4.1 or ealier because pystache.View has been deprecated +#to get pystache 0.4.1: +# > git clone https://github.com/defunkt/pystache.git +# > cd ./pystache +# > git checkout v0.4.1 +# > python setup.py install +# TODO: change ApiClass and TrelloApi to not use pystache.View  from urlparse import urljoin  from BeautifulSoup import BeautifulSoup as Soup