How do I get a list of CIDs from IPFS - ipfs

I have uploaded a list of image to the IPFS, and now I need to get their CIDs to generate json files, upload them to IPFS and get the list of CIDs of the json files again for minting NFTs. Is there a way to batch fetch CIDs of a list of items through IPFS?

Related

Collect data from google analytics API v4 and stage JSON files

Following from this question: Downloading batch reports from google analytics API v4,
I would like to understand if it is possible to achieve the same result (extract all the data from google analytics, not just a sample) before transforming the data from JSON format to a pandas dataframe.
What I would like to achieve is this:
Extract the data from GA and store it (for example in an S3 bucket) in JSON format.
Then transform the data, obtain a pandas dataframe and eventually store it in another S3 bucket.
In the question linked above, the staging step is skipped since the format output data is already a table.
Thanks!

How to search for folders within Autodesk Forge, Data Management API

Does Autodesk Forge Data Management API have a tool for getting a list of folders?
I have only found a Search within Folders API that gets files, not folders...
What's the best approach to get this list? Is it to iterate through the folders hierarchy making new requests for each folder level?
You should be able to use the Get Top-Level Project Folders endpoint to retrieve the folders within a project at the top-level, and from there you can use the Get Folder Contents endpoint to retrieve the content of that folder (including any sub-folders).

Extracting data from REST API (JSON) in ADF to Azure Data Lake

I have ADF (Azure Data Factory) calling two REST API's in JSON.
Customer IDs
Customer Data. - Customer ID.
How to extract the Customer data (JSON2) based on Customer ID (JSON1), and store them in Parque file format in Datalake?
You can create a Web activity to send your first request to get Customer IDs. Then you can create a copy data activity which source is REST and sink is your Parque file. Finally you can put Web activity's output into REST's body to send the second request.

displayName of file not available when getting contents of folder in BIM 360 Docs

I am trying to list the names of the files in a folder in BIM 360, but I'm having trouble retrieving the names of the files.
When using the GET projects/:project_id/folders/:folder_id/contents endpoint of the Data Management API, I notice different results when listing files in an A360 project versus a BIM 360 project.
On A360, the value of key data[].attributes.displayName is the name of the file, such as Test.nwd. However, on BIM 360, the displayName seems to always be an empty string.
I did notice that if I use the GET projects/:project_id/items/:item_id endpoint to retrieve the details of an individual item, the data.attributes.displayName is still blank but the name of the file does appear in the included[].attributes.displayName key under the entry with "type": "versions".
Does anyone have an idea as to why the displayName of items are blank when listing folder contents in BIM 360?
In theory I could achieve my desired result by retrieving the folder contents and then retrieving the details of each item, but I would prefer not to have to make an additional API call for each item in a folder.

Google Maps API 3 MarkerClusterer with json

I have google maps reading a json file to show the lat/long. The json file was from the example provided but I added my own json data at the top of the file.
The problem is, when I start deleting some of the example json data, the map stops showing the markers. My json data set is about the first 100 records.
Right now, I'm limiting the count to show only the first 102 records, but would like to eliminate all the example json data?
Sample at http://www.dwellcation.com/maptest2.html