mirror of
https://github.com/kennethreitz/gistapi.py.git
synced 2026-06-05 23:10:17 +00:00
7 lines
174 B
Python
7 lines
174 B
Python
from gistapi import *
|
|
|
|
for gist in Gists.fetch_by_user('defunkt'):
|
|
if gist.description == 'A list of Gist clients.':
|
|
print gist.id
|
|
print gist.repo
|
|
print gist.embed_url |