Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Лошкарев Сергей Алексеевич
PS page generation
Commits
f6977898
Commit
f6977898
authored
3 years ago
by
Zergey Loshkarev
Browse files
Options
Download
Patches
Plain Diff
add output of users informations
parent
6c5da2d1
master
1.0
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+3
-0
.gitignore
config.py
+26
-0
config.py
main.py
+13
-0
main.py
with
42 additions
and
0 deletions
+42
-0
.gitignore
0 → 100644
+
3
−
0
View file @
f6977898
venv/
/*.ini
/__pycache__/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
config.py
0 → 100644
+
26
−
0
View file @
f6977898
from
configparser
import
ConfigParser
import
taiga
_CONFIG_FILE
=
'config.ini'
# config file
def
_valid_taiga_config
(
config
:
ConfigParser
)
->
(
bool
):
if
'taiga'
in
config
.
sections
():
taiga_dict
=
dict
(
config
[
'taiga'
])
if
(
'host'
in
taiga_dict
and
\
'username'
in
taiga_dict
and
\
'password'
in
taiga_dict
and
\
'project_name'
in
taiga_dict
):
return
True
return
False
def
read_config
(
config_filename
:
str
)
->
(
ConfigParser
):
config
=
ConfigParser
()
if
config
.
read
(
config_filename
)
==
[]:
raise
Exception
(
'Config file not found'
)
if
not
_valid_taiga_config
(
config
):
raise
Exception
(
'Unvalid data-format in Taiga
\'
s config'
)
return
config
\ No newline at end of file
This diff is collapsed.
Click to expand it.
main.py
0 → 100644
+
13
−
0
View file @
f6977898
from
config
import
read_config
from
taiga
import
TaigaAPI
config
=
read_config
(
'config.ini'
)
api
=
TaigaAPI
(
host
=
config
[
'taiga'
][
'host'
])
api
.
auth
(
username
=
config
[
'taiga'
][
'username'
],
password
=
config
[
'taiga'
][
'password'
]
)
users
=
api
.
projects
.
get_by_slug
(
config
[
'taiga'
][
'project_name'
]).
list_memberships
()
for
user
in
users
[:]:
# print(dir(user))
print
(
f
"name:
{
user
.
full_name
}
role_name:
{
user
.
role_name
}
photo:
{
user
.
photo
}
"
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets