Skip to content

Commit

Permalink
Final draft for presentation on 8/20/2020 (#27)
Browse files Browse the repository at this point in the history
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
7 people authored Aug 20, 2020
1 parent 4aa5bb8 commit d0eb41e
Show file tree
Hide file tree
Showing 38 changed files with 1,308 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
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]
Expand Down
1 change: 1 addition & 0 deletions Procfile
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
9 changes: 7 additions & 2 deletions README.md
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/
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pytest]
junit_family=xunit2
36 changes: 36 additions & 0 deletions setup.py
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",
)
13 changes: 13 additions & 0 deletions setup.sh
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 added slides.podium/Podium-0.2-x86_64.AppImage
Binary file not shown.
Binary file added slides.podium/altair-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added slides.podium/auto-tweets-over-time.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added slides.podium/brian-cohan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added slides.podium/chris-may.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions slides.podium/matplotlib_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added slides.podium/mike-alfare.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added slides.podium/pyrva-attendance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added slides.podium/pyrva-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d0eb41e

Please sign in to comment.