This repository contains laboratory works for the NoSQL course at Ivan Franko University. The labs are designed to provide hands-on experience with NoSQL databases.
-
Hw_2/: Contains the second laboratory work.
- Trends_of_NoSQL.md: Trends of NoSQL databases.
- SQL-NoSql_Comparison.md: Comparison between relational and NoSQL databases.
- README.md: Instructions and details for the second lab.
-
Hw_3/: Contains the third laboratory work.
- Connect_to_MongoDB.py: Python script to connect to MongoDB.
- README.md: Instructions and details for the third lab.
-
Hw_4/: Contains the fourth laboratory work.
- Create_and_load_data_to_MongoDB.ipynb: Ipynb file to work with MongoDB collections.
- README.md: Instructions and details for the fourth lab.
-
Hw_5/: Contains the fifth laboratory work.
- Creating_and_Editing_db.ipynb: Ipynb file to create and edit a database.
- README.md: Instructions and details for the fifth lab.
-
Hw_6/: Contains the sixth laboratory work.
- Working_with_data.ipynb: Ipynb file to work with data in MongoDB.
- README.md: Instructions and details for the sixth lab.
-
Hw_7/: Contains the seventh laboratory work.
- Working_with_requests.ipynb: Ipynb file to work with requests in MongoDB.
- README.md: Instructions and details for the seventh lab.
-
.gitignore: Specifies files and directories to be ignored by Git.
-
README.md: This file, providing an overview of the repository.
-
LICENSE: The license for the repository.
-
requirements.txt: Contains the required Python packages for the labs.
-
Clone the repository:
git clone https://github.com/99bruno/NoSQL_LNU.git
-
Go to the repository directory:
cd NoSQL_LNU
-
Create a virtual environment:
python -m venv .venv
-
Set up the virtual environment:
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
-
Install the required packages:
pip install -r requirements.txt
Each lab can be run independently. Navigate to the respective lab directory and execute the Python script.
-
-
Navigate to the third lab directory:
cd Hw_3
-
Run the Python script:
python Connect_to_MongoDB.py
-
Repeat the above steps for others.
Ensure you have a MongoDB instance running and update the connection URI in each script as needed.
This project is licensed under the MIT LICENSE. See the LICENSE file for details.