{"id":19874156,"url":"https://github.com/pythoninthegrass/nft_meetup","last_synced_at":"2025-08-01T23:10:28.791Z","repository":{"id":85073769,"uuid":"458056727","full_name":"pythoninthegrass/nft_meetup","owner":"pythoninthegrass","description":"Generate NFTs with Python. Follows the Medium guide, \"Create Your Own NFT Collection With Python\"","archived":false,"fork":false,"pushed_at":"2025-02-07T23:33:42.000Z","size":202,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-01T01:25:32.390Z","etag":null,"topics":["ethereum","javascript","nft","python","solidity"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pythoninthegrass.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-11T05:24:58.000Z","updated_at":"2022-03-13T23:59:32.000Z","dependencies_parsed_at":"2023-03-08T20:00:46.147Z","dependency_job_id":null,"html_url":"https://github.com/pythoninthegrass/nft_meetup","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pythoninthegrass/nft_meetup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythoninthegrass%2Fnft_meetup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythoninthegrass%2Fnft_meetup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythoninthegrass%2Fnft_meetup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythoninthegrass%2Fnft_meetup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pythoninthegrass","download_url":"https://codeload.github.com/pythoninthegrass/nft_meetup/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythoninthegrass%2Fnft_meetup/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268310797,"owners_count":24230185,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ethereum","javascript","nft","python","solidity"],"created_at":"2024-11-12T16:22:01.659Z","updated_at":"2025-08-01T23:10:28.762Z","avatar_url":"https://github.com/pythoninthegrass.png","language":"Python","readme":"# nft_meetup\n\nTakes the Medium article [Create Your Own NFT Collection With Python](https://betterprogramming.pub/create-your-own-nft-collection-with-python-82af40abf99f) and cleans up the code to generate NFT images.\n\n## Setup\n* ~~Clone the [substrapunks](https://github.com/usetech-llc/substrapunks) repo files and extract into the current directory~~\n    ```bash\n    git clone https://github.com/UniqueNetwork/substrapunks.git\n    ```\n    * **NOTE**: this was integrated into the script with `gitpython`. No need to run manually\n* Install \n    * [editorconfig](https://editorconfig.org/)\n    * [asdf](https://asdf-vm.com/manage/core.html#installation-setup)\n    * [poetry](https://python-poetry.org/docs/)\n\n## Usage\n### asdf\n```bash\n# add python plugin\nasdf plugin-add python\n\n# install stable python\nasdf install python latest\n\n# refresh symlinks for installed python runtimes\nasdf reshim python\n\n# set stable to system python\nasdf global python latest\n\n# optional: local python (e.g., python 3.11)\ncd $work_dir\nasdf local python latest\n\n# check installed python\nasdf list python\n```\n\n### Poetry\n```bash\n# Change config\npoetry config virtualenvs.in-project true           # .venv in `pwd`\npoetry config experimental.new-installer false      # fixes JSONDecodeError on Python3.10\n\n# Activate virtual environment (venv)\npoetry shell\n\n# Install all dependencies\npoetry install\n\n# Add multiple libraries\npoetry add Pillow ipython\n\n# Run script and exit environment\npoetry run python main.py\n\n# Deactivate venv\nexit  # ctrl-d\n```\n\n## TODO\n* ~~asdf~~\n* wsl\n    * enable\n    * `.wslconfig` options\n* `.vscode` settings\n    * add arguments\n    * env  \n* debug path / dependencies\n\n## Further Reading\n[Introduction | Documentation | Poetry - Python dependency management and packaging made easy](https://python-poetry.org/docs/)\n\n[Commands | Documentation | Poetry - Python dependency management and packaging made easy](https://python-poetry.org/docs/cli#export)\n\n[Set up a WSL development environment | Microsoft Docs](https://docs.microsoft.com/en-us/windows/wsl/setup/environment)\n\n[Advanced settings configuration in WSL | Microsoft Docs](https://docs.microsoft.com/en-us/windows/wsl/wsl-config)\n\n[Understanding The Python Path Environment Variable in Python](https://www.simplilearn.com/tutorials/python-tutorial/python-path)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpythoninthegrass%2Fnft_meetup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpythoninthegrass%2Fnft_meetup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpythoninthegrass%2Fnft_meetup/lists"}