├── .gitignore ├── IMDShift ├── AWS.py ├── __init__.py ├── imdshift.py └── utilities.py ├── LICENSE.md ├── README.md ├── img └── imdshift-demo.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/.gitignore -------------------------------------------------------------------------------- /IMDShift/AWS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/IMDShift/AWS.py -------------------------------------------------------------------------------- /IMDShift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IMDShift/imdshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/IMDShift/imdshift.py -------------------------------------------------------------------------------- /IMDShift/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/IMDShift/utilities.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/README.md -------------------------------------------------------------------------------- /img/imdshift-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/img/imdshift-demo.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushpriya10/IMDShift/HEAD/setup.py --------------------------------------------------------------------------------