Skip to content

Commit 8128222

Browse files
committed
Push to PyPI
1 parent e88e8eb commit 8128222

File tree

2 files changed

+46
-8
lines changed

2 files changed

+46
-8
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,41 @@ pytest-report.html
3131
set_w
3232
snafu.py
3333
set_infra
34+
35+
36+
*.py[cod]
37+
38+
# C extensions
39+
*.so
40+
41+
# Packages
42+
*.egg
43+
*.egg-info
44+
dist
45+
build
46+
eggs
47+
parts
48+
bin
49+
var
50+
sdist
51+
develop-eggs
52+
.installed.cfg
53+
lib
54+
lib64
55+
56+
# Installer logs
57+
pip-log.txt
58+
59+
# Unit test / coverage reports
60+
.coverage
61+
.tox
62+
nosetests.xml
63+
64+
# Translations
65+
*.mo
66+
67+
# Mr Developer
68+
.mr.developer.cfg
69+
.project
70+
.pydevproject
71+
.pypirc

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Most of the examples intend to demonstrate a single question type or feature:
101101
Take `type`, `name`, `message`, `choices`[, `default`, `filter`] properties. (Note that
102102
default must be the choice `index` in the array or a choice `value`)
103103

104-
![List prompt](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/input-prompt.png)
104+
![List prompt](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/input-prompt.png)
105105
s
106106
---
107107

@@ -110,7 +110,7 @@ s
110110
Take `type`, `name`, `message`, `choices`[, `default`, `filter`] properties. (Note that
111111
default must the choice `index` in the array)
112112

113-
![Raw list prompt](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/raw-list.png)
113+
![Raw list prompt](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/raw-list.png)
114114

115115
---
116116

@@ -123,8 +123,8 @@ Note that the `choices` object will take an extra parameter called `key` for the
123123

124124
See `examples/expand.py` for a running example.
125125

126-
![Expand prompt closed](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/expand-prompt-1.png)
127-
![Expand prompt expanded](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/expand-prompt-2.png)
126+
![Expand prompt closed](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/expand-prompt-1.png)
127+
![Expand prompt expanded](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/expand-prompt-2.png)
128128

129129
---
130130

@@ -136,31 +136,31 @@ Choices marked as `{checked: true}` will be checked by default.
136136

137137
Choices whose property `disabled` is truthy will be unselectable. If `disabled` is a string, then the string will be outputted next to the disabled choice, otherwise it'll default to `"Disabled"`. The `disabled` property can also be a synchronous function receiving the current answers as argument and returning a boolean or a string.
138138

139-
![Checkbox prompt](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/checkbox-prompt.png)
139+
![Checkbox prompt](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/checkbox-prompt.png)
140140

141141
---
142142

143143
#### Confirm - `{type: 'confirm'}`
144144

145145
Take `type`, `name`, `message`[, `default`] properties. `default` is expected to be a boolean if used.
146146

147-
![Confirm prompt](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/confirm-prompt.png)
147+
![Confirm prompt](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/confirm-prompt.png)
148148

149149
---
150150

151151
#### Input - `{type: 'input'}`
152152

153153
Take `type`, `name`, `message`[, `default`, `filter`, `validate`] properties.
154154

155-
![Input prompt](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/input-prompt.png)
155+
![Input prompt](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/input-prompt.png)
156156

157157
---
158158

159159
#### Password - `{type: 'password'}`
160160

161161
Take `type`, `name`, `message`[, `default`, `filter`, `validate`] properties.
162162

163-
![Password prompt](https://raw.githubusercontent.com/citguru/PyInquirer/develop/docs/images/password-prompt.png)
163+
![Password prompt](https://raw.githubusercontent.com/citguru/PyInquirer/master/docs/images/password-prompt.png)
164164

165165
---
166166

0 commit comments

Comments
 (0)