Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/muneeb706/django-s3-file-upload

AWS S3 File Upload using boto3
https://github.com/muneeb706/django-s3-file-upload

boto3 django multipart-uploads multithreading python s3

Last synced: 24 days ago
JSON representation

AWS S3 File Upload using boto3

Awesome Lists containing this project

README

        

# AWS S3 File Upload using boto3 with and without multi-threading

Follow the steps below to run this project:

1. Make sure you have the following development environment:

1. Python 3.8.10 (You can be flexible with the version but, Implementation is tested with this version only).
2. Django 4.0.1 (You can be flexible with the version but, Implementation is tested with this version only).
3. Any IDE or text editor of your choice.
4. Access to Command-Line or Terminal.

1. Clone this repository.
1. Open the terminal or command line.
1. Navigate to the location where you cloned this repository
1. Install the dependencies by typing following command:

`pip install -r requirements.txt`

1. Go to s3_file_upload folder and run the Django server by entering following command:

`python manage.py runserver`

Now, the project should be up and running. By default django server runs in localhost:8000 and you should be able to access the

- simple_file_upload app by typing http://localhost:8000/simple-file-upload address in the address bar of the browser.
- multipart_upload app by typing http://localhost:8000/multipart-upload address in the address bar of the browser.