File: faq.rst

package info (click to toggle)
python-yarg 0.1.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 752 kB
  • sloc: python: 732; xml: 59; makefile: 47
file content (45 lines) | stat: -rw-r--r-- 1,133 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FAQ
===

My package isn't being found
----------------------------

PyPI is cAsE sEnsItIvE, make sure you're looking for the package with
the correct case.

.. code-block:: python

    >>> yarg.get('Yarg')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "yarg/client.py", line 52, in get
        reason=response.reason)
    yarg.exceptions.HTTPError: 404 Not Found

    >>> yarg.get('yarg')
    <Package yarg>


Why is my `docs` url empty?
---------------------------

`docs_url` is only available when you're using `pythonhosted.org
<https://pythonhosted.org/>`_.

Why does my `docs` url have an extra slash?
-------------------------------------------

This an issue with PyPI itself, it returns an additional slash inside
the URL to your pythonhosted docs.

.. code-block:: python

    >>> yarg.get('yarg').docs
    u'http://pythonhosted.org//yarg'

Why is my `bugtracker` url empty?
---------------------------------

A: This does not seem to work when being set through setup.py, if you
go to your package on PyPI and click edit, one of the available fields
is called *bugtrack url*.