Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/muneeb706/django-s3-file-upload
- Owner: muneeb706
- Created: 2022-01-30T00:17:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-16T08:47:47.000Z (9 months ago)
- Last Synced: 2024-02-16T09:39:45.773Z (9 months ago)
- Topics: boto3, django, multipart-uploads, multithreading, python, s3
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.