FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
code-examples-python/app/eSignature/utils.py at master · docusign/code-examples-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
docusign
/
code-examples-python
Public
Notifications
You must be signed in to change notification settings
Fork
56
Star
55
Code
Issues
1
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
code-examples-python
/
app
/
eSignature
/
utils.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
10 lines (9 loc) · 404 Bytes
Breadcrumbs
code-examples-python
/
app
/
eSignature
/
utils.py
Copy path
File metadata and controls
10 lines (9 loc) · 404 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
def
get_folder_id_by_name
(
folders
,
folder_name
):
for
folder
in
folders
:
if
folder
.
name
.
lower
()
==
folder_name
.
lower
():
return
folder
.
folder_id
subfolders
=
folder
.
folders
if
subfolders
is
not
None
and
len
(
subfolders
)
>
0
:
folder_id
=
get_folder_id_by_name
(
subfolders
,
folder_name
)
if
folder_id
is
not
None
:
return
folder_id
Back
|
FazBrowse Home
|
New Git URL