updated version and date

This commit is contained in:
Linus E 2022-04-26 12:46:20 +02:00
parent 4ec8125393
commit dbc93cc31a
3 changed files with 6 additions and 8 deletions

View File

@ -3,8 +3,8 @@
script for telegram bot and its functions script for telegram bot and its functions
""" """
__author__ = "Florian Kellermann, Linus Eickhoff" __author__ = "Florian Kellermann, Linus Eickhoff"
__date__ = "11.03.2022" __date__ = "26.04.2022"
__version__ = "0.0.4" __version__ = "1.2.2"
__license__ = "None" __license__ = "None"
# side-dependencies: none # side-dependencies: none

View File

@ -2,8 +2,8 @@
script for regularly sending updates on shares and news based on user interval script for regularly sending updates on shares and news based on user interval
""" """
__author__ = "Florian Kellermann, Linus Eickhoff" __author__ = "Florian Kellermann, Linus Eickhoff"
__date__ = "05.04.2022" __date__ = "26.04.2022"
__version__ = "1.0.1" __version__ = "1.0.2"
__license__ = "None" __license__ = "None"
from asyncio.windows_events import NULL from asyncio.windows_events import NULL

View File

@ -2,15 +2,13 @@
script for news fetching (by keywords) script for news fetching (by keywords)
""" """
__author__ = "Florian Kellermann, Linus Eickhoff" __author__ = "Florian Kellermann, Linus Eickhoff"
__date__ = "15.03.2022" __date__ = "26.04.2022"
__version__ = "0.0.1" __version__ = "1.0.0"
__license__ = "None" __license__ = "None"
import sys import sys
import os import os
import json
import requests import requests
import datetime as dt
from newsapi import NewsApiClient from newsapi import NewsApiClient
from dotenv import load_dotenv from dotenv import load_dotenv