https://github.com/fspv/vk-memes-to-nft
Get meme pictures from vk community and upload them to opensea collection
https://github.com/fspv/vk-memes-to-nft
Last synced: 2 months ago
JSON representation
Get meme pictures from vk community and upload them to opensea collection
- Host: GitHub
- URL: https://github.com/fspv/vk-memes-to-nft
- Owner: fspv
- Created: 2022-07-20T16:27:48.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T21:19:42.000Z (over 2 years ago)
- Last Synced: 2025-01-10T12:16:27.831Z (4 months ago)
- Language: Python
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This app follows vk public and emits events with the post data as new posts are created
# Run
Set secrets```
export METAMASK_PASSWORD="xxx"
export METAMASK_RECOVERY_PHRASE="yyy"
export TWO_CAPTCHA_KEY="zzz"
# Community to get memes from
export VK_COMMUNITY=""
export VK_SERVICE_TOKEN=""
# Collection to upload memes to (slug from the url is to be put here)
export OPENSEA_COLLECTION=""
# Uploader location within the docker container
export OPENSEA_UPLOADER_DIR="/src/opensea-automatic-bulk-upload-and-sale/"
``````
sudo docker build -t vkmemes .
sudo docker run -e METAMASK_PASSWORD="${METAMASK_PASSWORD}" -e METAMASK_RECOVERY_PHRASE="${METAMASK_RECOVERY_PHRASE}" -e TWO_CAPTCHA_KEY="${TWO_CAPTCHA_KEY}" -e VK_COMMUNITY="${VK_COMMUNITY}" -e VK_SERVICE_TOKEN="${VK_SERVICE_TOKEN}" -e OPENSEA_COLLECTION="${OPENSEA_COLLECTION}" -e OPENSEA_UPLOADER_DIR="${OPENSEA_UPLOADER_DIR}" -it vkmemes bashcd /src/
. ~/.venv/bin/activateipython uploader/scheduler.py
ipython uploader/processor.py
```# High-level design
