![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.
@fdy/faraday-js
Advanced tools
This is autogenerated Typescript client library to consume the Faraday API.
npm install @fdy/faraday-js --save
To create a simple script, initialize a new project, install the libraries, and run using tsx
or your preffered Typescript compiler.
npm tsc --init
npm install @fdy/faraday-js
-- if using outside of the browser
npm install isomorphic-fetch
touch index.ts
-- populate file, and then run using
npx tsx ./index.ts
Example usage:
import { Configuration, FaradayClient } from "@fdy/faraday-js";
import "isomorphic-fetch";
const configuration = new Configuration({
headers: {
authorization: "Bearer YOUR_API_KEY",
},
});
const faraday = new FaradayClient(configuration);
const testClient = async () => {
// Create a dataset if you do not already have one.
// Create a cohort
const cohort = await faraday.cohorts.createCohort({
name: "Customers",
stream_name: "orders",
});
// Create a persona set
const personaSet = await faraday.personaSets.createPersonaSet({
name: "Customers",
cohort_id: cohort.id,
});
// Create an outcome
const outcome = await faraday.outcomes.createOutcome({
attainment_cohort_id: cohort.id,
name: "Likely Customers",
});
// Create a scope
const scope = await faraday.scopes.createScope({
name: "Customers Scores",
preview: true,
population: {
cohort_ids: [cohort.id],
},
payload: {
persona_set_ids: [personaSet.id],
},
});
};
testClient().catch((err) => console.log(err));
FAQs
OpenAPI client for @fdy/faraday-js
The npm package @fdy/faraday-js receives a total of 0 weekly downloads. As such, @fdy/faraday-js popularity was classified as not popular.
We found that @fdy/faraday-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.