<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Listing files using Dropbox Python in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624833#M28899</link>
    <description>&lt;P&gt;Do I need some special permissions to download the files using this API, if I am a newly added member to the Dropbox group? I have given myself the permission for&amp;nbsp;&lt;SPAN&gt;files.content.read.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 24 Sep 2022 20:26:02 GMT</pubDate>
    <dc:creator>sambapy</dc:creator>
    <dc:date>2022-09-24T20:26:02Z</dc:date>
    <item>
      <title>Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624819#M28893</link>
      <description>&lt;P&gt;I am trying to access files stored on my Dropbox using the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-python/tree/master" target="_blank" rel="nofollow noopener noreferrer"&gt;offical Dropbox SDK for Python.&lt;/A&gt;. I tried a few ways of putting in the directory name whose contents I wanted to have listed based off of a script taken from this link&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://practicaldatascience.co.uk/data-science/how-to-use-the-dropbox-api-with-python" target="_blank" rel="nofollow noopener noreferrer"&gt;https://practicaldatascience.co.uk/data-science/how-to-use-the-dropbox-api-with-python&lt;/A&gt;. Following the instructions in this website, I created an App, generated a dropbox access token (which produced&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;'long-gibberish'), and gave myself read permissions for&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Files and Folders.&lt;/P&gt;
&lt;P&gt;When I login to Dropbox through the website, the folder structure for the folder that I want to access looks like so: Folder/ SubFolder/ SubSubFolder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I get the following error when calling the function:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;dropbox_list_files(&lt;SPAN class=""&gt;'Folder/SubFolder/SubSubFolder'&lt;/SPAN&gt;)


Error getting &lt;SPAN class=""&gt;list&lt;/SPAN&gt; of files &lt;SPAN class=""&gt;from&lt;/SPAN&gt; Dropbox: ApiError(&lt;SPAN class=""&gt;'short-gibberish'&lt;/SPAN&gt;, ListFolderError(&lt;SPAN class=""&gt;'path'&lt;/SPAN&gt;, LookupError(&lt;SPAN class=""&gt;'not_found'&lt;/SPAN&gt;, &lt;SPAN class=""&gt;None&lt;/SPAN&gt;)))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DROPBOX_ACCESS_TOKEN = &lt;SPAN class=""&gt;'long-gibberish'&lt;/SPAN&gt; 
&lt;SPAN class=""&gt;def&lt;/SPAN&gt; &lt;SPAN class=""&gt;dropbox_connect&lt;/SPAN&gt;():
    &lt;SPAN class=""&gt;"""Create a connection to Dropbox."""&lt;/SPAN&gt;

    &lt;SPAN class=""&gt;try&lt;/SPAN&gt;:
        dbx = dropbox.Dropbox(DROPBOX_ACCESS_TOKEN)
    &lt;SPAN class=""&gt;except&lt;/SPAN&gt; AuthError &lt;SPAN class=""&gt;as&lt;/SPAN&gt; e:
        &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Error connecting to Dropbox with access token: '&lt;/SPAN&gt; + &lt;SPAN class=""&gt;str&lt;/SPAN&gt;(e))
    &lt;SPAN class=""&gt;return&lt;/SPAN&gt; dbx

&lt;SPAN class=""&gt;def&lt;/SPAN&gt; &lt;SPAN class=""&gt;dropbox_list_files&lt;/SPAN&gt;(&lt;SPAN class=""&gt;path&lt;/SPAN&gt;):
    &lt;SPAN class=""&gt;"""Return a Pandas dataframe of files in a given Dropbox folder path in the Apps directory.
    """&lt;/SPAN&gt;

    dbx = dropbox_connect()

    &lt;SPAN class=""&gt;try&lt;/SPAN&gt;:
        files = dbx.files_list_folder(path).entries
        files_list = []
        &lt;SPAN class=""&gt;for&lt;/SPAN&gt; file &lt;SPAN class=""&gt;in&lt;/SPAN&gt; files:
            &lt;SPAN class=""&gt;if&lt;/SPAN&gt; &lt;SPAN class=""&gt;isinstance&lt;/SPAN&gt;(file, dropbox.files.FileMetadata):
                metadata = {
                    &lt;SPAN class=""&gt;'name'&lt;/SPAN&gt;: file.name,
                    &lt;SPAN class=""&gt;'path_display'&lt;/SPAN&gt;: file.path_display,
                    &lt;SPAN class=""&gt;'client_modified'&lt;/SPAN&gt;: file.client_modified,
                    &lt;SPAN class=""&gt;'server_modified'&lt;/SPAN&gt;: file.server_modified
                }
                files_list.append(metadata)

        df = pd.DataFrame.from_records(files_list)
        &lt;SPAN class=""&gt;return&lt;/SPAN&gt; df.sort_values(by=&lt;SPAN class=""&gt;'server_modified'&lt;/SPAN&gt;, ascending=&lt;SPAN class=""&gt;False&lt;/SPAN&gt;)

    &lt;SPAN class=""&gt;except&lt;/SPAN&gt; Exception &lt;SPAN class=""&gt;as&lt;/SPAN&gt; e:
        &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Error getting list of files from Dropbox: '&lt;/SPAN&gt; + &lt;SPAN class=""&gt;str&lt;/SPAN&gt;(e))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;I would like to get some help on how to set the right&amp;nbsp;&lt;/SPAN&gt;path&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 12:29:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624819#M28893</guid>
      <dc:creator>sambapy</dc:creator>
      <dc:date>2022-09-26T12:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624820#M28894</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575339"&gt;@sambapy&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;When I login to Dropbox through the website, the folder structure for the folder that I want to access looks like so: Folder/ SubFolder/ SubSubFolder.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575339"&gt;@sambapy&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Base on names posted by you (i.e. starting from your account root - Folder &amp;gt; SubFolder &amp;gt; SubSubFolder), the string describing the path should look like "/Folder/SubFolder/SubSubFolder". &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt; That's it.&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About access token: No, it 's not related in any way to your login (once the token already issued). Access token itself expires after 4 hours, at most! If you want long term access, you need refresh token too (together with access token).&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 18:54:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624820#M28894</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-24T18:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624826#M28897</link>
      <description>&lt;P&gt;Is a token sufficient to establish connection with my Dropbox or is there any other step before that?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 19:58:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624826#M28897</guid>
      <dc:creator>sambapy</dc:creator>
      <dc:date>2022-09-24T19:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624830#M28898</link>
      <description>&lt;P&gt;If you mean, what's needed to authenticate a regular call to API endpoint, Yes - valid access token is enough. As I said access token validity is limited in time to no more than 4 hours (could be less) - exact period is denoted on access token receiving. If you mean, additional steps for long term access, refreshing is usually performed automatically by SDK itself, but you need to supply refresh token on client object (dbx) realization (not access token only).&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 20:09:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624830#M28898</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-24T20:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624833#M28899</link>
      <description>&lt;P&gt;Do I need some special permissions to download the files using this API, if I am a newly added member to the Dropbox group? I have given myself the permission for&amp;nbsp;&lt;SPAN&gt;files.content.read.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 20:26:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624833#M28899</guid>
      <dc:creator>sambapy</dc:creator>
      <dc:date>2022-09-24T20:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624835#M28900</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575339"&gt;@sambapy&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Do I need some special permissions to ..&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you mean scopes, Yes (but they are not special &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;). Every operation falls to some group that expect particular scope. Your application (and all associated tokens) needs granted appropriate set of scopes to be able perform needed operations. Scopes can be changed in your application page &lt;A href="https://www.dropbox.com/developers/apps" target="_blank" rel="noopener"&gt;here&lt;/A&gt; (go to Permissions tap). The same (or needed, at least) scopes need to be granted on authorization time! Take in mind once a scope gets changed, new token are needed, so any changes can take effect (such type of changes are NOT retroactive).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One more thing. When you try files listing (such operations are granted by default), take in mind that first call does NOT mandatory return entire result, you may need to call follow up list continuation calls.&lt;/P&gt;&lt;P&gt;Don't try to interpret things you don't intend to use (like openID for instance). &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt; Go further with the basics (initially least).&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 21:03:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624835#M28900</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-24T21:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624836#M28901</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This is what my OpenID Scopes reads:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Scopes used for OpenID Connect.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;At this time, team-scoped apps&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;cannot&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;request OpenID Connect scopes.&lt;/DIV&gt;&lt;DIV class=""&gt;OpenID scopes must be explicity set in the "scope" parameter on&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize" target="_blank" rel="noopener noreferrer"&gt;/oauth2/authorize&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to be requested.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Should I interpret it to mean that I cannot list/access the files on my Dropbox?&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 24 Sep 2022 20:57:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624836#M28901</guid>
      <dc:creator>sambapy</dc:creator>
      <dc:date>2022-09-24T20:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624841#M28902</link>
      <description>&lt;P&gt;For an example using Python, take a look &lt;A href="https://github.com/dropbox/dropbox-sdk-python/blob/main/example/oauth/commandline-oauth-pkce.py" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. You can keep the refresh token and use for follow up instantiation without full OAuth flow. Just put file listing procedure on the place of 'users_get_current_account' method there. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 22:02:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624841#M28902</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-24T22:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624842#M28903</link>
      <description>&lt;P&gt;Thanks for sticking around, and patiently responding to my queries.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I get the following error:&lt;/P&gt;&lt;P&gt;Error (400)&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It seems the app you were using submitted a bad request. If you would like to report this error to the app's developer, include the information below.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;More details for developers&lt;/P&gt;&lt;P&gt;Invalid client_id: "this is long-gibberish"&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 22:09:45 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624842#M28903</guid>
      <dc:creator>sambapy</dc:creator>
      <dc:date>2022-09-24T22:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624843#M28904</link>
      <description>&lt;P&gt;Oh &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575339"&gt;@sambapy&lt;/a&gt;, Be more careful!!!&lt;/P&gt;&lt;P&gt;What's this: this is long-gibberish ??? 🤦 Seems you have NOT made even a small try to get familiar with structure of such code and just trying to "shot on directions". Take the real client id (or app key too) and put it there. Follow the same rule on all other places where you have to put something!&lt;/P&gt;&lt;P&gt;🙋 Fake ID -&amp;gt; Error (of course - can be expected &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@D88F213CAFB196B6AB70612B08AD9D31/emoticons/1f601.png" alt=":beaming_face_with_smiling_eyes:" title=":beaming_face_with_smiling_eyes:" /&gt; - would be strange if passed - real security &lt;STRONG&gt;HOLE&lt;/STRONG&gt;)&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 22:43:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624843#M28904</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-24T22:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624844#M28905</link>
      <description>&lt;P&gt;I didn't share the access token considering security reasons, and replaced it instead.&lt;BR /&gt;&lt;BR /&gt;For e.g. the app key looks like in my case&amp;nbsp;&amp;nbsp;like 'ge.BP55pDouXGwKHtJ-Z2ohkoWUDiDIUvHDATvcBeCsNxEpCT7-HLGuWHWI6rl15UBimLfsAhi7N7XJ4n2sP31P_Tzxp13Izab44hsCxDEFP3qXYZw'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it supposed to be like that or something else?&lt;BR /&gt;&lt;BR /&gt;Sorry, I am unfamiliar with these new concepts. Thanks for your responses.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 23:52:44 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624844#M28905</guid>
      <dc:creator>sambapy</dc:creator>
      <dc:date>2022-09-24T23:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624845#M28906</link>
      <description>&lt;P&gt;OMG!&lt;/P&gt;&lt;P&gt;Yes, such things don't have to be shared (can be dangerous - direct access to your account on the wider public)!&lt;/P&gt;&lt;P&gt;That what you are sharing looks like access token. It's &lt;U&gt;NOT&lt;/U&gt; application key.&lt;/P&gt;&lt;P&gt;The application key is ID of the application you have registered. You need this key, not the access token. The last error comes from erroneous places free text on place where client ID is expected (nothing related to access token). You application ID (or key) can be seen on your application page when you select your application &lt;A title="My apps" href="https://www.dropbox.com/developers/apps" target="_blank" rel="noopener"&gt;here&lt;/A&gt; (the same link I post above, but seems you skipped it). Find out your application key there and put it on the APP_KEY var initialization into the example.&lt;/P&gt;&lt;P&gt;Hope now all will be Ok.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 23:07:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624845#M28906</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-24T23:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Listing files using Dropbox Python</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624854#M28907</link>
      <description>&lt;P&gt;Thanks for helping resolving the issue.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 01:36:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Listing-files-using-Dropbox-Python/m-p/624854#M28907</guid>
      <dc:creator>sambapy</dc:creator>
      <dc:date>2022-09-25T01:36:55Z</dc:date>
    </item>
  </channel>
</rss>

