Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/neulandagentur/adobe-stock-image-bot
- Owner: neulandagentur
- License: mit
- Created: 2019-01-09T19:15:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T23:34:21.000Z (almost 3 years ago)
- Last Synced: 2024-10-11T20:02:19.284Z (about 1 month ago)
- Topics: adobe, adobe-stock, bot, puppeteer
- Language: JavaScript
- Homepage:
- Size: 170 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
})();```