Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/neulandagentur/adobe-stock-image-bot

📷 Adobe-Stock image id => author name
https://github.com/neulandagentur/adobe-stock-image-bot

adobe adobe-stock bot puppeteer

Last synced: about 1 month ago
JSON representation

📷 Adobe-Stock image id => author name

Awesome Lists containing this project

README

        

---

Helper function that returns an author of an adobe stock image id.

---

## Install

``` npm
npm i adobe-stock-image-bot
```

## Usage
``` nodejs
const getAuthor = require('adobe-stock-image-bot');

const test = '184567447';

(async () => {
const author = await getAuthor(test);
console.log(author);
})();

```