This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gruszczy
Recipients alexis, eric.araujo, gruszczy, tarek
Date 2011-06-17.19:07:49
SpamBayes Score 0.0001332181
Marked as misclassified No
Message-id <1308337670.57.0.398529302108.issue12348@psf.upfronthosting.co.za>
In-reply-to
Content
When I started looking at this I noticed following behaviour:

>>> from packaging.pypi.simple import Crawler
>>> client = Crawler()
>>> client.get_releases('webob')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/gruszczy/Projects/python/Lib/packaging/pypi/simple.py", line 192, in get_releases
    self._process_index_page(predicate.name)
packaging.pypi.errors.ProjectNotFound
>>> client.search_projects('webob')
[<Project "WebOb">, <Project "webob_view">, <Project "yafowil.webob">]
>>> client.get_releases('webob')
<Project "WebOb">

Shouldn't this be made consistent?
History
Date User Action Args
2011-06-17 19:07:50gruszczysetrecipients: + gruszczy, tarek, eric.araujo, alexis
2011-06-17 19:07:50gruszczysetmessageid: <1308337670.57.0.398529302108.issue12348@psf.upfronthosting.co.za>
2011-06-17 19:07:50gruszczylinkissue12348 messages
2011-06-17 19:07:49gruszczycreate