Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harshcasper/pycon-india-2021
Slides and Code for the PyCon India 2021 talk
https://github.com/harshcasper/pycon-india-2021
Last synced: 3 days ago
JSON representation
Slides and Code for the PyCon India 2021 talk
- Host: GitHub
- URL: https://github.com/harshcasper/pycon-india-2021
- Owner: HarshCasper
- License: mit
- Created: 2021-09-19T06:02:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-19T06:48:20.000Z (over 3 years ago)
- Last Synced: 2024-11-08T05:41:40.554Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://pycon-india.harshcasper.com
- Size: 8.08 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyCon India 2021
This repository hosts the slides and examples for PyCon India 2021 talk on "Building Polyglot applications using MetaCall Core". The talk proposal for the conference can be viewed on the [Proposals Page](https://in.pycon.org/cfp/2021/proposals/building-polyglot-python-applications-using-metacall-core~av2QX/) and the schedule can be viewed on the [Schedule Page](https://in.pycon.org/2021/schedule/). The recordings would be soon released.
## Setup
To setup the slides on your local machine, follow these steps:
1. Install [hugo](https://gohugo.io/getting-started/installing/)
2. For development:```sh
hugo server -D
```3. In `config.toml` set `baseURL` to be the baseURL of your hosted website.
4. To build and serve it using Docker, push the following command:```sh
docker run --rm -it \
-v $(pwd):/src \
-p 1313:1313 \
klakegg/hugo:0.83.1 \
server
```## Examples
The instructions to run the examples are given in the individual `README.md` for each example. To make sure the examples run, install the MetaCall CLI:
```sh
curl -sL https://raw.githubusercontent.com/metacall/install/master/install.sh | sh
```- [Calculation Demo](examples/calculation-demo): Example to showcase cross-language function calls between Python and JavaScript.
- [Machine Learning-based News scrapper](examples/ml-news-article-scraper-example): Polyglot Node App using a Python script to scrap similar news articles from all over the Web using Machine Learning.## Acknowledgements
The slide format is inspired from [Anirudh Dagar's Quansight Labs Internship talk](https://github.com/AnirudhDagar/qs-intern-talk) and [Thomas J. Fan's Hugo+Reveal Slide template](https://github.com/thomasjpfan/slides-template-hugo).