├── .gitignore ├── README.md ├── ap.py ├── bot ├── prisons.csv ├── reviews ├── Correctional_Institution_D_Ray_James.json ├── Correctional_Institution_Willacy_County.json ├── FCI_Dublin.json ├── Federal_Correctional_Facility.json ├── Federal_Correctional_Facility_Dublin.json ├── Federal_Correctional_Institution_Tallahassee.json ├── Fort_Dix_Federal_Correctional_Institution.json ├── Honolulu_Federal_Detention_Center.json ├── Metropolitan_Correctional_Center_Chicago.json ├── Metropolitan_Detention_Center_Brooklyn.json ├── Metropolitan_Detention_Center_Los_Angeles.json ├── Philadelphia_Federal_Detention_Center.json ├── Sing_Sing_Correctional_Facility.json └── United_States_Penitentiary_Leavenworth.json ├── scraper.py ├── yelp_monitor.py └── yelp_scraper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/README.md -------------------------------------------------------------------------------- /ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/ap.py -------------------------------------------------------------------------------- /bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/bot -------------------------------------------------------------------------------- /prisons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/prisons.csv -------------------------------------------------------------------------------- /reviews/Correctional_Institution_D_Ray_James.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Correctional_Institution_D_Ray_James.json -------------------------------------------------------------------------------- /reviews/Correctional_Institution_Willacy_County.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Correctional_Institution_Willacy_County.json -------------------------------------------------------------------------------- /reviews/FCI_Dublin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/FCI_Dublin.json -------------------------------------------------------------------------------- /reviews/Federal_Correctional_Facility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Federal_Correctional_Facility.json -------------------------------------------------------------------------------- /reviews/Federal_Correctional_Facility_Dublin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Federal_Correctional_Facility_Dublin.json -------------------------------------------------------------------------------- /reviews/Federal_Correctional_Institution_Tallahassee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Federal_Correctional_Institution_Tallahassee.json -------------------------------------------------------------------------------- /reviews/Fort_Dix_Federal_Correctional_Institution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Fort_Dix_Federal_Correctional_Institution.json -------------------------------------------------------------------------------- /reviews/Honolulu_Federal_Detention_Center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Honolulu_Federal_Detention_Center.json -------------------------------------------------------------------------------- /reviews/Metropolitan_Correctional_Center_Chicago.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Metropolitan_Correctional_Center_Chicago.json -------------------------------------------------------------------------------- /reviews/Metropolitan_Detention_Center_Brooklyn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Metropolitan_Detention_Center_Brooklyn.json -------------------------------------------------------------------------------- /reviews/Metropolitan_Detention_Center_Los_Angeles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Metropolitan_Detention_Center_Los_Angeles.json -------------------------------------------------------------------------------- /reviews/Philadelphia_Federal_Detention_Center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Philadelphia_Federal_Detention_Center.json -------------------------------------------------------------------------------- /reviews/Sing_Sing_Correctional_Facility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/Sing_Sing_Correctional_Facility.json -------------------------------------------------------------------------------- /reviews/United_States_Penitentiary_Leavenworth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/reviews/United_States_Penitentiary_Leavenworth.json -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/scraper.py -------------------------------------------------------------------------------- /yelp_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/yelp_monitor.py -------------------------------------------------------------------------------- /yelp_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/prison_fax/HEAD/yelp_scraper.py --------------------------------------------------------------------------------