pythonpune / meetup-talks

Collection of slides and other details of the talks delivered in PythonPune meetups
https://pythonpune.in/
36 stars 15 forks source link

PythonPune Meetup Talks

Welcome to meetup repository of PythonPune. This repository contains details of monthly events conducted as part of this group.

Submit a talk/workshop

If you want to submit a talk for upcoming events, then you can create a new issue on this repository. Just fill in the requested details and one of us will take care of scheduling the talk/workshop.

When a talk/workshop proposal is created, it gets labeled with talk-proposal. Once it's confirmed and the date is decided, scheduled label will be added to it.

After the event, the event page will be updated with summary, slides and code snippets of the talk. Once done, the issue will be closed.

Monthly newsletter

At the beginning of every month an issue will be created. It will have 'Newsletter Collection Box' in it's name. This issue will have newsletter label on it. Anyone can post links to blog posts, news articles related to Python on this issue.

All the links will be compiled together and saved as community_news.md in that months directory. It will be presented during the meetup as well.

Summary of past events

This is the index of summaries of past events.

2021 * [January](./content/2021/January/README.md)
2020 * [January](./content/2020/January/README.md) * [February](./content/2020/February/README.md) * [March](./content/2020/March/README.md) * [April](./content/2020/April/README.md) * [May](./content/2020/May/README.md) * [June](./content/2020/June/README.md) * [July](./content/2020/July/README.md) * [August](./content/2020/August/README.md) * [September](./content/2020/September/README.md) * [October](./content/2020/October/README.md) * [November](./content/2020/November/README.md) * [December](./content/2020/December/README.md)
2019 * [January](./content/2019/January/README.md) * [February](./content/2019/February/README.md) * [March](./content/2019/March/README.md) * [April](./content/2019/April/README.md) * [May](./content/2019/May/README.md) * [June](./content/2019/June/README.md) * [July](./content/2019/July/README.md) * [August](./content/2019/August/README.md) * [September](./content/2019/September/README.md) * [October](./content/2019/October/README.md) * [November](./content/2019/November/README.md) * [December](./content/2019/December/README.md)

How to add newsletter and event summary

To add newsletter file (community_news.md) or event summary (README.md) for the current month run following commands. Make sure you have installed Hugo and Go on your machine.

Note: It will not overwrite the existing files from the directory.

$ make event
Creating summary files in 'content/2020/March'.
mkdir --parents content/2020/March
hugo new content/2020/March/README.md --kind "event"
content/2020/March/README.md created
$ make newsletter
Creating newsletter files in 'content/2020/March'.
mkdir --parents content/2020/March
hugo new content/2020/March/community_news.md --kind "newsletter"
content/2020/March/community_news.md created

It's possible to generate the files for a specific year and month combination by setting the value of DATE_DIR variable.

$ DATE_DIR="2020/April" make event
Creating summary files in 'content/2020/April'.
mkdir --parents content/2020/April
hugo new content/2020/April/README.md --kind "event"
content/2020/April/README.md created

Code of Conduct

Code of Conduct for PythonPune meetup group can be found here.

License

This repository is licensed under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). The slides, code snippets or any other images in this repository might have a different license as well as copyright, please check before reusing the material. See LICENSE for the full license text.