Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/99bruno/nosql_lnu

A repository for works with NoSQL
https://github.com/99bruno/nosql_lnu

mongodb neo4j nosql nosql-database sqlserver-2017

Last synced: 2 months ago
JSON representation

A repository for works with NoSQL

Awesome Lists containing this project

README

        

# NoSQL Labs - Ivan Franko University

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.

## Table of Contents

- [Repository Structure](#repository-structure)
- [Getting Started](#getting-started)
- [Running the Labs](#running-the-labs)
- [MongoDB Connection](#mongodb-connection)
- [License](#license)

## Repository Structure

- **[Hw_2/](Hw_2/)**: Contains the second laboratory work.
- **[Trends_of_NoSQL.md](Hw_2%2FTrends_of_NoSQL.md)**: Trends of NoSQL databases.
- **[SQL-NoSql_Comparison.md](Hw_2/SQL-NoSql_Comparison.md)**: Comparison between relational and NoSQL databases.
- **[README.md](Hw_2/README.md)**: Instructions and details for the second lab.
- **[Hw_3/](Hw_3/)**: Contains the third laboratory work.
- **[Connect_to_MongoDB.py](Hw_3/Connect_to_MongoDB.py)**: Python script to connect to MongoDB.
- **[README.md](Hw_3/README.md)**: Instructions and details for the third lab.
- **[Hw_4/](Hw_4/)**: Contains the fourth laboratory work.
- **[Create_and_load_data_to_MongoDB.ipynb](Hw_4/Create_and_load_data_to_MongoDB.ipynb)**: Ipynb file to work with MongoDB collections.
- **[README.md](Hw_4/README.md)**: Instructions and details for the fourth lab.
- **[Hw_5/](Hw_5/)**: Contains the fifth laboratory work.
- **[Creating_and_Editing_db.ipynb](Hw_5/2FCreating_and_Editing_db.ipynb)**: Ipynb file to create and edit a database.
- **[README.md](Hw_5/README.md)**: Instructions and details for the fifth lab.
- **[Hw_6/](Hw_6/)**: Contains the sixth laboratory work.
- **[Working_with_data.ipynb](Hw_6/Working_with_data.ipynb)**: Ipynb file to work with data in MongoDB.
- **[README.md](Hw_6/README.md)**: Instructions and details for the sixth lab.
- **[Hw_7/](Hw_7/)**: Contains the seventh laboratory work.
- **[Working_with_requests.ipynb](Hw_7/Working_with_requests.ipynb)**: Ipynb file to work with requests in MongoDB.
- **[README.md](Hw_7/README.md)**: Instructions and details for the seventh lab.

- **[.gitignore](.gitignore)**: Specifies files and directories to be ignored by Git.
- **[README.md](README.md)**: This file, providing an overview of the repository.
- **[LICENSE](LICENSE)**: The license for the repository.
- **[requirements.txt](requirements.txt)**: Contains the required Python packages for the labs.

## Getting Started

1. **Clone the repository:**
```sh
git clone https://github.com/99bruno/NoSQL_LNU.git
```
2. **Go to the repository directory:**
```sh
cd NoSQL_LNU
```

3. **Create a virtual environment:**
```sh
python -m venv .venv
```

4. **Set up the virtual environment:**
```sh
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
```

5. **Install the required packages:**
```sh
pip install -r requirements.txt
```

## Running the Labs

Each lab can be run independently. Navigate to the respective lab directory and execute the Python script.

- ### For example, to run the third lab:

1. **Navigate to the third lab directory:**
```sh
cd Hw_3
```

2. **Run the Python script:**
```sh
python Connect_to_MongoDB.py
```

Repeat the above steps for others.

## MongoDB Connection

Ensure you have a MongoDB instance running and update the connection URI in each script as needed.

## License

This project is licensed under the MIT **[LICENSE](LICENSE)**. See the LICENSE file for details.