Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Transform transcribed content into various formats for content marketing. See the documentation
Converts text input into artificial speech using Hamsa. See the documentation
Automatically transcribe Arabic videos from YouTube URLs or direct links. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hamsa: {
type: "app",
app: "hamsa",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tryhamsa.com/v1/projects/by-api-key`,
headers: {
"authorization": `Token ${this.hamsa.$auth.api_key}`,
},
})
},
})