An open API service indexing awesome lists of open source software.

https://github.com/mingderwang/python-api-vercel


https://github.com/mingderwang/python-api-vercel

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# python api server run on vercel
To have your account on https://vercel.com/ first.

# debug on localhost
```
vercel dev
```
瀏覽 http://localhost:3000
# deploy
```
vercel
```
以下 demo 網址 (python-api.ming-taiwan.vercel.app) 是我部署的 URL, 你們部署回有你們新的 URL
# demo hello
```
curl https://python-api.ming-taiwan.vercel.app/api/hello
```
[click here](https://python-api.ming-taiwan.vercel.app/api/hello)
# demo date
```
curl https://python-api.ming-taiwan.vercel.app/api/date
```
[click here](https://python-api.ming-taiwan.vercel.app/api/date)
# demo star
```
curl https://python-api.ming-taiwan.vercel.app/api/star
```
[click here](https://python-api.ming-taiwan.vercel.app/api/star)
# 你們部署的 URL 會在執行 vercel 時, 得到 (如下圖)
when you run "vercel" it will show your endpoint of the api server
![](https://paper-attachments.dropbox.com/s_ABC4EF72CAE6330A7110BF5598F7628D572897B760F2581D1EDFC941719A6DF4_1602345294957_Screen+Shot+2020-10-10+at+11.54.31+PM.png)

# production
```
vercel --prod
```
[click here](https://python-api-alpha.vercel.app/api/star)