https://github.com/mbrsagor/pythonfirestore
Python FireStore simple CRUD app
https://github.com/mbrsagor/pythonfirestore
firestore python-3
Last synced: about 1 year ago
JSON representation
Python FireStore simple CRUD app
- Host: GitHub
- URL: https://github.com/mbrsagor/pythonfirestore
- Owner: mbrsagor
- Created: 2020-04-06T18:53:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T09:04:03.000Z (almost 2 years ago)
- Last Synced: 2024-06-27T10:29:14.270Z (almost 2 years ago)
- Topics: firestore, python-3
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.Md
Awesome Lists containing this project
README
# python FireStore
> Python firestore realtime simple CRUD app.
### Setup
The following steps will walk you through installation on a Mac. Linux should be similar.
It's also possible to develop on a Windows machine, but I have not documented the steps.
If you've developed Django apps on Windows, you should have little problem getting
up and running.
#### Dependencies
###### Prerequisites
- Python 3.10
```bash
git clone https://github.com/mbrsagor/pythonFireStore.git
cd pythonFireStore
```
> Then,
> Create virtualenv in your system then follow the comments:
```bash
virtualenv venv --python=python3.10
```
> If you successfully create the virtualenv then activate:
```bash
source venv/bin/activate
pip install -r requirements.txt
```
> Lambda function simple example:
```python
import json
def lambda_handler(event, context):
# TODO implement
return {
'status_code': 200,
'body': json.dumps('Hello, MR. Bozlur Rosid Sagor')
}
```