facebookarchive / fbconsole

A micro api client for writing scripts against the Facebook Graph API.
Other
325 stars 74 forks source link

fbconsole-0.2.tar.gz doesn't include graph_url #9

Closed leonjohnson closed 12 years ago

leonjohnson commented 12 years ago

Hi pcardune,

I think the version downloaded by pip is an old one. The graph_url function returned: 'NameError: name 'graph_url' is not defined'.

I downloaded fbconsole-0.2.tar.gz via pip (an hour ago) and the fbconsole.py file omitts the graph_url function and optional reference in the 'all' list.

When I copied the graph_url function from the github page into my fbconsole.py file it now works.

Really nice API btw :-)

pcardune commented 12 years ago

That is correct. Pip will download the latest release by default. The Github repository will almost always be ahead of the latest release. You can either wait for a release to be made, or you can point pip directly to the Github repository if you want to stay on the bleeding edge.

On Nov 26, 2011, at 6:23 AM, leonjohnsonreply@reply.github.com wrote:

Hi pcardune,

I think the version downloaded by pip is an old one. The graph_url function returned: 'NameError: name 'graph_url' is not defined'.

I downloaded fbconsole-0.2.tar.gz via pip (an hour ago) and the fbconsole.py file omitts the graph_url function and optional reference in the 'all' list.

When I copied the graph_url function from the github page into my fbconsole.py file it now works.

Really nice API btw :-)


Reply to this email directly or view it on GitHub: https://github.com/facebook/fbconsole/issues/9

leonjohnson commented 12 years ago

Thanks.