Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tweet_model
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
serpucga
tweet_model
Commits
6c1cf454
Commit
6c1cf454
authored
Mar 26, 2019
by
Serbaf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added necessary production dependency and updated HISTORY
parent
5c99fa21
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
HISTORY.rst
HISTORY.rst
+20
-0
setup.py
setup.py
+2
-2
No files found.
HISTORY.rst
View file @
6c1cf454
...
...
@@ -31,3 +31,23 @@ History
a 5.7 MB as a list of 'Tweet's. This could be troublesome with very large
collections in a future if the progression of time was proportional with the
file size (estimation would be 25 minutes for a 5 GB file)
0.4.0 (2019-03-26)
------------------
Since the last release the main improvements have been:
* Raise a custom exception instead of sysexiting when confronted with a wrong
CSV file.
* Change prints for logger messages.
* Modularize the "get_tweets_from_csv" dividing it into 3 functions to provide
more isolated functions. Now this function makes use of
"get_tweet_from_csv_line", which returns a single Tweet object when provided
with two lists representing the contents of a CSV header and one of its
entries. There is also a "raw" alternative of that function, which works
with raw lines and converts them to lists to then call the "non-raw" version.
Version 4.1:
The tweet-manager dependency, necessary for the core functions, has been added
into production (in setup.py).
setup.py
View file @
6c1cf454
...
...
@@ -11,7 +11,7 @@ with open('README.rst') as readme_file:
with
open
(
'HISTORY.rst'
)
as
history_file
:
history
=
history_file
.
read
()
requirements
=
[
'Click>=6.0'
,
]
requirements
=
[
'Click>=6.0'
,
'tweetmanager-serpucga==1.1.4'
,
]
setup_requirements
=
[]
...
...
@@ -51,6 +51,6 @@ setup(
test_suite
=
'tests'
,
tests_require
=
test_requirements
,
url
=
'https://github.com/Serbaf/tweet_model'
,
version
=
'0.4.
0
'
,
version
=
'0.4.
1
'
,
zip_safe
=
False
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment