Home - schoolofcities/zoetrope GitHub Wiki

Welcome to the Zoetrope Wiki!

Please use the side menu to navigate.

How to contribute to the project

Adding a new Sampling Strategy

  1. Refer to samplingstrategies/__init__.py for a guide on adding new Sampling Strategies

General contribution guidelines

  1. Please commit your changes on a new branch and create a Pull Request. Do not merge your own changes without review.

FAQ

Q: How do I reset a user's remaining API calls?

A: Access the Django shell python manage.py shell, run from accounts.models import Profile, then update with Profile.objects.filter(email=USER_EMAIL).update(api_calls_remaining=DESIRED_NUMBER)