This file contains 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
from django.http import HttpResponse | |
class ApiResource: | |
@classmethod | |
def dispatch(cls, request, *args, **kwargs): | |
if args or 'object_id' in kwargs: | |
if request.method == 'GET': | |
return cls.read(request, *args, **kwargs) | |
elif request.method == 'PUT': |
This file contains 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
{ | |
"title": "the title", | |
"description": "the description", | |
"images": ["data:image/jpeg;base64,...", "data:image/png;base64,..."], | |
"price": 100 | |
} |
This file contains 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
# This is an auto-generated Django model module. | |
# You'll have to do the following manually to clean this up: | |
# * Rearrange models' order | |
# * Make sure each model has one field with primary_key=True | |
# * Make sure each ForeignKey has `on_delete` set to the desired behavior. | |
# * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table | |
# Feel free to rename the models, but don't rename db_table values or field names. | |
from __future__ import unicode_literals | |
from django.db import models |
This file contains 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
#!/bin/bash | |
fswatch -r "$1" -0 | while read -d "" file | |
do | |
rsync -a "$1" "$2" | |
echo "$file synced" | |
done |
OlderNewer