How can I move my python code and assets from a windows Laptop to an android phone?

Viewed 28

I've made a discord.py bot and want to run it on my spare phone with pydroid3 but I cant figure out how to move the main.py file and the 55 asset files (most of them are .png but some are .json and .txt) from my laptop to my phone.

The file structure is

bot_folder
║
╠ main.py
╚ assets
  ╠ Text_file_1.txt
  ╠ Text_file_2.txt
  ╠ Text_file_2.txt
  ╠ File_1.json
  ╠ File_2.json
  ╚ Images
    ╚ 49 PNG files
1 Answers

Upload your files to Github by creating a new reposority. After you uploaded them, reach for your mobile Phone, open Chrome (so that you can request the desktop site of github) and go to that same reposority. By tilting your Phone, you should get a view that looks like the Image below. Click the green Code button, choose "Download ZIP" and download your files.

Related