Add Python-related files

This commit is contained in:
2021-06-24 20:58:39 +02:00
parent ab3f786357
commit 66061d5823
5 changed files with 48 additions and 0 deletions

0
src/manga-up/__init__.py Normal file
View File

4
src/manga-up/manga-up.py Normal file
View File

@ -0,0 +1,4 @@
import requests
response = requests.get('https://httpbin.org/ip')
print('Code is {0}.'.format(response.status_code))