IP : 172.31.102.29
PORT : 3128
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
from mavsdk import System | |
async def run(): | |
print("Code Initialized---") | |
drone = System() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
from mavsdk import System | |
async def run(): | |
drone = System() | |
await drone.connect(system_address="udp://:14540") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
from mavsdk import System | |
async def run(): | |
drone = System() | |
await drone.connect(system_address="udp://:14540") |
- Create Python Module.
- Make desired changes in
setup.py
that you want to reflect on Pypi website. - Building your Project
python setup.py sdist bdist_wheel
- Check on builded files
twine check dist/*
- Test Publish
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
- Version Publish
twine upload dist/*
Complete Tutorial : Link
OlderNewer