├── .github └── ISSUE_TEMPLATE │ ├── monthly-meeting.md │ └── project-proposal.md ├── .gitignore ├── README.md ├── notes ├── 2019 │ ├── 011_09_2019.md │ ├── 05_06_2019.md │ ├── 06_05_2019.md │ ├── 11-12-2019.md │ ├── 11_10_2019.md │ ├── 13_11_2019.md │ ├── 14_08_2019.md │ └── 29_07_2019.md └── 2020 │ ├── 2020_02_13.md │ ├── 2020_03_11.md │ ├── 2020_07_08.md │ ├── 2020_09_09.md │ └── 2020_10_23.md ├── process ├── create_new_chapter.md ├── images │ └── Girlgeek_w_workmark.png ├── monthly_meeting_checklist.md ├── pyladies-projects-overview.md ├── pyladies_global_council_election_proposals.md ├── slack_etiquette.md └── slack_new_member_welcome.md ├── scripts ├── meetup-scraper │ ├── .env │ ├── README.md │ ├── ngrok-example.png │ ├── pyladies-meetup-scraper.py │ ├── requirements.txt │ └── simple_server.py ├── twitter-scraper │ ├── .env │ ├── README.md │ ├── pyladies-twitter-scraper.py │ └── requirements.txt ├── update-active-chapters │ ├── get_chapter_last_activity.py │ └── requirements.txt └── update-chapter-directory │ ├── .env │ ├── README.md │ ├── requirements.txt │ ├── send_surveys.py │ └── share_file.png └── surveys └── 2019 └── chapter_organizers └── Analysis.ipynb /.github/ISSUE_TEMPLATE/monthly-meeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/.github/ISSUE_TEMPLATE/monthly-meeting.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/project-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/.github/ISSUE_TEMPLATE/project-proposal.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/README.md -------------------------------------------------------------------------------- /notes/2019/011_09_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/011_09_2019.md -------------------------------------------------------------------------------- /notes/2019/05_06_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/05_06_2019.md -------------------------------------------------------------------------------- /notes/2019/06_05_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/06_05_2019.md -------------------------------------------------------------------------------- /notes/2019/11-12-2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/11-12-2019.md -------------------------------------------------------------------------------- /notes/2019/11_10_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/11_10_2019.md -------------------------------------------------------------------------------- /notes/2019/13_11_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/13_11_2019.md -------------------------------------------------------------------------------- /notes/2019/14_08_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/14_08_2019.md -------------------------------------------------------------------------------- /notes/2019/29_07_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2019/29_07_2019.md -------------------------------------------------------------------------------- /notes/2020/2020_02_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2020/2020_02_13.md -------------------------------------------------------------------------------- /notes/2020/2020_03_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2020/2020_03_11.md -------------------------------------------------------------------------------- /notes/2020/2020_07_08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2020/2020_07_08.md -------------------------------------------------------------------------------- /notes/2020/2020_09_09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2020/2020_09_09.md -------------------------------------------------------------------------------- /notes/2020/2020_10_23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/notes/2020/2020_10_23.md -------------------------------------------------------------------------------- /process/create_new_chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/process/create_new_chapter.md -------------------------------------------------------------------------------- /process/images/Girlgeek_w_workmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/process/images/Girlgeek_w_workmark.png -------------------------------------------------------------------------------- /process/monthly_meeting_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/process/monthly_meeting_checklist.md -------------------------------------------------------------------------------- /process/pyladies-projects-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/process/pyladies-projects-overview.md -------------------------------------------------------------------------------- /process/pyladies_global_council_election_proposals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/process/pyladies_global_council_election_proposals.md -------------------------------------------------------------------------------- /process/slack_etiquette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/process/slack_etiquette.md -------------------------------------------------------------------------------- /process/slack_new_member_welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/process/slack_new_member_welcome.md -------------------------------------------------------------------------------- /scripts/meetup-scraper/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/meetup-scraper/.env -------------------------------------------------------------------------------- /scripts/meetup-scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/meetup-scraper/README.md -------------------------------------------------------------------------------- /scripts/meetup-scraper/ngrok-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/meetup-scraper/ngrok-example.png -------------------------------------------------------------------------------- /scripts/meetup-scraper/pyladies-meetup-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/meetup-scraper/pyladies-meetup-scraper.py -------------------------------------------------------------------------------- /scripts/meetup-scraper/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | geopy 3 | pyyaml -------------------------------------------------------------------------------- /scripts/meetup-scraper/simple_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/meetup-scraper/simple_server.py -------------------------------------------------------------------------------- /scripts/twitter-scraper/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/twitter-scraper/.env -------------------------------------------------------------------------------- /scripts/twitter-scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/twitter-scraper/README.md -------------------------------------------------------------------------------- /scripts/twitter-scraper/pyladies-twitter-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/twitter-scraper/pyladies-twitter-scraper.py -------------------------------------------------------------------------------- /scripts/twitter-scraper/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv -------------------------------------------------------------------------------- /scripts/update-active-chapters/get_chapter_last_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/update-active-chapters/get_chapter_last_activity.py -------------------------------------------------------------------------------- /scripts/update-active-chapters/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/update-active-chapters/requirements.txt -------------------------------------------------------------------------------- /scripts/update-chapter-directory/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/update-chapter-directory/.env -------------------------------------------------------------------------------- /scripts/update-chapter-directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/update-chapter-directory/README.md -------------------------------------------------------------------------------- /scripts/update-chapter-directory/requirements.txt: -------------------------------------------------------------------------------- 1 | gspread 2 | oauth2client -------------------------------------------------------------------------------- /scripts/update-chapter-directory/send_surveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/update-chapter-directory/send_surveys.py -------------------------------------------------------------------------------- /scripts/update-chapter-directory/share_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/scripts/update-chapter-directory/share_file.png -------------------------------------------------------------------------------- /surveys/2019/chapter_organizers/Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyladies/global-organizing/HEAD/surveys/2019/chapter_organizers/Analysis.ipynb --------------------------------------------------------------------------------