![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.
americano-cozy
Advanced tools
When you want to write Cozy applications with Americano, you don't have the good helpers to write your models. Here are some that could make your life easier, notably about declaring your requests.
Add americano-cozy to the list of your plugins in the Americano configuration file. Then add it as a dependency of your project:
npm install americano-cozy -g
Do no think about including JugglingDB and its configuration for Cozy anymore, Americano Cozy does the job for you:
americano = require 'americano-cozy'
module.exports = americano.getModel 'Task',
done: Boolean
completionDate: Date
Describe your Data System requests in a single file:
# server/models/requests.coffee
americano = require 'americano-cozy'
module.exports =
task:
all: americano.defaultRequests.all
analytics:
map: (doc) ->
if doc.completionDate? and doc.done
date = new Date doc.completionDate
dateString = "#{date.getFullYear()}-"
dateString += "#{date.getMonth() + 1}-#{date.getDate()}"
emit dateString, 1
reduce: (key, values, rereduce) ->
sum values
Here is what I would like to do next:
I didn't start any development yet, so you're welcome to participate!
Cozy is a platform that brings all your web services in the same private space. With it, your web apps and your devices can share data easily, providing you with a new experience. You can install Cozy on your own hardware where no one profiles you. You install only the applications you want. You can build your own one too.
You can reach the Cozy community via various support:
FAQs
Americano helpers to build Cozy applications faster
The npm package americano-cozy receives a total of 11 weekly downloads. As such, americano-cozy popularity was classified as not popular.
We found that americano-cozy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.