https://github.com/q00/book-recommend-django
deploy elasticBeanstalk, django
https://github.com/q00/book-recommend-django
aws deploy django eb elasticbeanstalk
Last synced: about 2 months ago
JSON representation
deploy elasticBeanstalk, django
- Host: GitHub
- URL: https://github.com/q00/book-recommend-django
- Owner: Q00
- Created: 2019-01-22T07:19:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T01:33:22.000Z (over 3 years ago)
- Last Synced: 2025-03-28T05:28:39.709Z (about 1 year ago)
- Topics: aws, deploy, django, eb, elasticbeanstalk
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django api server - for recommending book api
### how to use
- Method : post
- Data :
```
{
'books':['book1','book2','book3'],
'tags':['tag1','tag2','tag3']
}
```
### In nodejs server
- location : src/util/index.js
- import CallPython from 'util'
- How to call
- CallPython(book_list,tag_list)
- CallPython(
{'books':['book1','book2','book3']},
{'tags':['tag1','tag2','tag3']}
)
- return
- book order by score
- array
- ['book1','book2','book3']