├── .gitmodules ├── LICENSE.md ├── README.md ├── clinical_trials ├── __init__.py └── clinical_trials.py ├── setup.py └── test_clinical_trials.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clinical_trials_python/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clinical_trials_python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clinical_trials_python/HEAD/README.md -------------------------------------------------------------------------------- /clinical_trials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clinical_trials_python/HEAD/clinical_trials/__init__.py -------------------------------------------------------------------------------- /clinical_trials/clinical_trials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clinical_trials_python/HEAD/clinical_trials/clinical_trials.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clinical_trials_python/HEAD/setup.py -------------------------------------------------------------------------------- /test_clinical_trials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clinical_trials_python/HEAD/test_clinical_trials.py --------------------------------------------------------------------------------