Git-ignore test.py.

davteutil should be considered third party module since it is homed in a 
separate repository.
This commit is contained in:
Davte 2018-11-20 20:08:06 +01:00
parent 51b27e2a0d
commit 121e3c370c
3 changed files with 6 additions and 5 deletions

3
.gitignore vendored
View File

@ -14,6 +14,9 @@ local_*
# my_config.sh # my_config.sh
my_config.sh my_config.sh
# Test
davtelepot/test.py
# ---> Python # ---> Python
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/

View File

@ -7,7 +7,7 @@ __author__ = "Davide Testa"
__email__ = "davte@libero.it" __email__ = "davte@libero.it"
__credits__ = "Marco Origlia" __credits__ = "Marco Origlia"
__license__ = "GNU General Public License v3.0" __license__ = "GNU General Public License v3.0"
__version__ = "1.3.5" __version__ = "1.3.6"
__maintainer__ = "Davide Testa" __maintainer__ = "Davide Testa"
__contact__ = "t.me/davte" __contact__ = "t.me/davte"

View File

@ -23,15 +23,13 @@ import os
# Third party modules # Third party modules
import dataset import dataset
import telepot
import telepot.aio
# Project modules
from davteutil.utilities import ( from davteutil.utilities import (
Gettable, escape_html_chars, get_cleaned_text, line_drawing_unordered_list, Gettable, escape_html_chars, get_cleaned_text, line_drawing_unordered_list,
make_lines_of_buttons, markdown_check, MyOD, pick_most_similar_from_list, make_lines_of_buttons, markdown_check, MyOD, pick_most_similar_from_list,
remove_html_tags, sleep_until remove_html_tags, sleep_until
) )
import telepot
import telepot.aio
def split_text_gracefully(text, limit, parse_mode): def split_text_gracefully(text, limit, parse_mode):