![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
fauna-dumpify
Advanced tools
Library responsible for iterating over given collections and write a CSV file per collection on a given path.
Usage API:
faunaDump (key: string, outputPath: string, options?: {
collections?: Array<string>, // defaults to all collections
headers?: (collection: string) => Array<string>, // allows you to specify which headers to be sent to the csv file
startPointInTime?: Date, // sets the starting point of what documents to filter, use this with `faunaLambda` for better results
endPointInTime?: Date, // at what point in time are the results valid
pageSize?: Number, // how many documents to paginate for performance reasons (default: 1000)
headerTransformer?: (header: string) => string, // allows you to rename headers
dataTransformer?: (header, data) => data[header], // allows you to make changes to each row data
appendData?: (_, data) => data, // appends data to each row data
faunaLambda?: (faunaQueryBuilder, collection), => faunaQueryBuilder // allows you to modify the fauna query to your own needs
onCollectionProgress?: (progress) => {} // reports on the progress of each collection fetching process.
}): Promise<string>
Example:
faunaDump(faunaKey, outputPath, {
collections: ['Token', 'User'],
headers: (collection) => {
if (collection === 'User') {
return ['id', 'name', 'picture', 'email', 'issuer', 'github', 'public_address', 'inserted_at', 'updated_at']
}
return ['id']
},
dataTransformer: (header, allData, collection) => {
if (header === 'inserted_at') return allData.created?.value
return allData[header]
}
})
FAQs
Javascript package to dump fauna data into a CSV
The npm package fauna-dumpify receives a total of 0 weekly downloads. As such, fauna-dumpify popularity was classified as not popular.
We found that fauna-dumpify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.