Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tomazjunior/tus-ia-team-project
- Owner: TomazJunior
- Created: 2024-02-14T22:40:45.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-03-24T11:05:37.000Z (8 months ago)
- Last Synced: 2024-10-11T15:43:44.584Z (about 1 month ago)
- Language: Jupyter Notebook
- Size: 72.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.