Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tomazjunior/tus-ia-team-project

Engineering Team Project for IA Master
https://github.com/tomazjunior/tus-ia-team-project

Last synced: 11 days ago
JSON representation

Engineering Team Project for IA Master

Awesome Lists containing this project

README

        

# tus-ia-team-project

Engineering Team Project for IA Master

### Configuration

#### Installing the necessary packages

1. All packages are listed in the requirements.txt
2. Simply run 'pip install -r requirements.txt' in your projects virtual environment

#### Setting up config.json

1. Create a file named config.json in the root directory of the project.
2. Open config.json and structure it as follows:

```json
{
"twitter": {
"consumer_key": "YOUR_CONSUMER_KEY",
"consumer_secret": "YOUR_CONSUMER_SECRET",
"access_token": "YOUR_ACCESS_TOKEN",
"access_token_secret": "YOUR_ACCESS_TOKEN_SECRET"
}
}
```

3. Replace `YOUR_CONSUMER_KEY`, `YOUR_CONSUMER_SECRET`, `YOUR_ACCESS_TOKEN`, and `YOUR_ACCESS_TOKEN_SECRET` with your actual Twitter API credentials.
**Note**: `config.json` is included in the .gitignore file to prevent accidental exposure of sensitive information.