-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final draft for presentation on 8/20/2020 (#27)
Final draft for presentation on 8/20/2020 Co-authored-by: stephen lowery <[email protected]> Co-authored-by: Stephen Lowery <[email protected]> Co-authored-by: Brian Cohan <[email protected]> Co-authored-by: Stephen Lowery <[email protected]> Co-authored-by: Chris May <[email protected]> Co-authored-by: Mike Alfare <[email protected]>
- Loading branch information
1 parent
4aa5bb8
commit d0eb41e
Showing
38 changed files
with
1,308 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# IDE | ||
.idea | ||
.vscode | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: sh setup.sh && streamlit run src/pyrva_talk/streamlit/app.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# RVATech Webinar - 7/21/2020 | ||
# Python 201: Taking It to the Next Level | ||
|
||
We will demonstrate how to collect data from a Twitter feed on a regular basis and display the results in a publicly available chart | ||
PyRVA will present at RVATECH's #TechItYourself series on Thursday, August 20th, 2020. | ||
|
||
We will demonstrate how to collect data from a Twitter feed on a regular basis and display the results in a | ||
publicly available Streamlit app. | ||
|
||
View the app: https://pyrva-rvatech.herokuapp.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[pytest] | ||
junit_family=xunit2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as f: | ||
long_description = f.read() | ||
|
||
dev_req = [] | ||
|
||
test_req = [ | ||
"pytest>=5.4.3", | ||
] | ||
|
||
setuptools.setup( | ||
name="pyrva_talk", | ||
version="0.0.1", | ||
author="PyRVA", | ||
author_email="[email protected]", | ||
description="Code used for a PyRVA talk", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/pyrva/rvatech-2020-07-21/tree/twitter_data", | ||
package_dir={"": "src"}, | ||
install_requires=[ | ||
"python-dotenv>=0.13.0", | ||
"streamlit>=0.61.0", | ||
"tweepy>=3.8.0", | ||
"matplotlib>=3.3.0", | ||
], | ||
extras_require={"dev": test_req + dev_req, "test": test_req,}, | ||
packages=setuptools.find_packages("src"), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires=">=3.6", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
mkdir -p ~/.streamlit/ | ||
|
||
echo "\ | ||
[general]\n\ | ||
email = \"[email protected]\"\n\ | ||
" > ~/.streamlit/credentials.toml | ||
|
||
echo "\ | ||
[server]\n\ | ||
headless = true\n\ | ||
enableCORS=false\n\ | ||
port = $PORT\n\ | ||
" > ~/.streamlit/config.toml |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.