Skip to content

Commit

Permalink
Merge pull request #117 from chennesy/resolved
Browse files Browse the repository at this point in the history
major lesson update
  • Loading branch information
chennesy committed Jun 17, 2024
2 parents 9351d4a + 1ab956f commit c8280dc
Show file tree
Hide file tree
Showing 84 changed files with 5,404 additions and 4,739 deletions.
Empty file modified .github/workflows/README.md
100755 → 100644
Empty file.
Empty file modified .github/workflows/pr-close-signal.yaml
100755 → 100644
Empty file.
Empty file modified .github/workflows/pr-comment.yaml
100755 → 100644
Empty file.
Empty file modified .github/workflows/pr-post-remove-branch.yaml
100755 → 100644
Empty file.
Empty file modified .github/workflows/pr-preflight.yaml
100755 → 100644
Empty file.
Empty file modified .github/workflows/pr-receive.yaml
100755 → 100644
Empty file.
Empty file modified .github/workflows/sandpaper-main.yaml
100755 → 100644
Empty file.
Empty file modified .github/workflows/update-cache.yaml
100755 → 100644
Empty file.
Empty file modified .github/workflows/update-workflows.yaml
100755 → 100644
Empty file.
64 changes: 23 additions & 41 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,62 +1,44 @@
# Library Carpentry
# Library Carpentry: Python Intro for Libraries

The Library Carpentry module '[Introduction to programming with Python](https://librarycarpentry.org/lc-python-intro/)' is maintained by [Konrad Foerstner](https://github.com/konrad), [Drew Heles](https://github.com/dheles), [Elizabeth Wickes](https://github.com/elliewix), *[Laura Wrubel](https://github.com/lwrubel)*, [Carlos Martinez](https://github.com/c-martinez) and [Richard Vankoningsveld](https://github.com/richyvk).
## Maintainers for Library Carpentry: Python Intro for Libraries
- [Cody Hennesy](https://github.com/chennesy) (lead)
- [Tim Dennis](https://github.com/jt14den)

## Status Note
The updated version of this lesson (June 2024) was developed with the assistance of [David Palmquist](https://github.com/quist00) and [Scott Peterson](https://github.com/scottcpeterson).

The maintainers of this lesson are currently working on a substantial redesign of this lesson. This means than large portions of the current lesson content will be removed or substantially rewritten. You are welcome to submit pull requests for changes that help make this lesson better in the short run, but please keep in mind that the changes you make may be on content slated for removal.
Lesson Maintainers communication is via the [team site](https://github.com/orgs/LibraryCarpentry/teams/lc-python-intro-maintainers).

## Background
## Past Maintainers for Library Carpentry: Python Intro for Libraries
- [Konrad Foerstner](https://github.com/konrad)
- [Drew Heles](https://github.com/dheles)
- [Elizabeth Wickes](https://github.com/elliewix)
- [Laura Wrubel](https://github.com/lwrubel)
- [Carlos Martinez](https://github.com/c-martinez)
- [Richard Vankoningsveld](https://github.com/richyvk)

Library Carpentry is a software skills training programme aimed at library and information professions. It builds on the work of [Software Carpentry](https://software-carpentry.org/) and [Data Carpentry](https://www.datacarpentry.org/).
## Library Carpentry

Library Carpentry is in the commons and for the commons. It is not tied to any institution of person. For more information on Library Carpentry, see our website [librarycarpentry.org](https://librarycarpentry.org/).
[Library Carpentry](https://librarycarpentry.org) is a software and data skills training programme for people working in library- and information-related roles. It builds on the work of [Software Carpentry](https://software-carpentry.org/) and [Data Carpentry](https://www.datacarpentry.org/). Library Carpentry is an official Lesson Program of [The Carpentries](https://carpentries.org/).

## Contribution
## License

There are many ways of contributing to Library Carpentry:
All Software, Data, and Library Carpentry instructional material is made available under the [Creative Commons Attribution
license](LICENSE.md).

- Join our [Gitter discussion forum](https://gitter.im/weaverbel/LibraryCarpentry).
- Follow updates on [Twitter](https://twitter.com/search?f=tweets&vertical=default&q=%23librarycarpentry&src=typd).
- Make a suggestion or correct an error by [raising an Issue](https://github.com/LibraryCarpentry/lc-python-intro/issues).
## Contributing

### Local Lesson Development

If you wish to contribute changes or additions to this module, you'll want to
setup a local development environment that allows you to easily test changes
locally. In order to do this, you'll want to do the following:

1. [Fork this repository](https://help.github.com/articles/fork-a-repo/)
2. Clone your fork of the repository:

```
git clone https://github.com/<your-github-username>/lc-python-intro.git
```

1. [Install Ruby](https://www.ruby-lang.org/en/downloads/)
2. Install Jekyll `gem install jekyll`
3. Run the Jekyll server locally

```
cd <path-to>/lc-python-intro
make serve
```

1. Browse to your local server: [http://localhost:4000/](https://localhost:4000/)
2. The `Makefile` has other options as well. To see them type `make`
There are many ways to discuss and contribute to Library Carpentry lessons. The easiest way to get started is to [file an issue](https://github.com/LibraryCarpentry/lc-python-intro/issues) to tell us about a spelling mistake, some awkward wording, or a factual error. This is a good way to introduce yourself and to meet some of our community members. See [Contributing](CONTRIBUTING.md) for more information about contributing Pull Requests and connecting with others in the Carpentries.

## Code of Conduct

All participants should agree to abide by the [Software Carpentry Code of Conduct](https://software-carpentry.org/conduct/).
All participants should agree to abide by The Carpentries [Code of Conduct](https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html).

## Authors

Library Carpentry is authored and maintained by the [community](https://github.com/LibraryCarpentry/lc-python-intro/network/members).
Library Carpentry is authored and maintained through issues, commits, and pull requests from the community.

## Citation

Please cite as:

Library Carpentry. Introduction to programming with Python. 2017. [https://librarycarpentry.org/lc-python-intro/](https://librarycarpentry.org/lc-python-intro/).
(Add citation once Zenodo is updated)


36 changes: 17 additions & 19 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ keywords: 'software, data, lesson, The Carpentries'

# Life cycle stage of the lesson
# possible values: pre-alpha, alpha, beta, stable
life_cycle: 'alpha'
life_cycle: 'beta'


# License of the lesson materials (recommended CC-BY 4.0)
license: 'CC-BY 4.0'
Expand Down Expand Up @@ -59,23 +60,20 @@ contact: '[email protected]'

# Order of episodes in your lesson
episodes:
- 01-getting-started.md
- 02-variables.md
- 03-types-conversion.md
- 04-built-in.md
- 05-coffee.md
- 06-libraries.md
- 10-lunch.md
- 11-lists.md
- 12-for-loops.md
- 13-looping-data-sets.md
- 14-writing-functions.md
- 15-scope.md
- 16-coffee.md
- 17-conditionals.md
- 18-style.md
- 19-wrap.md
- 20-feedback.md
- getting-started.md
- variables.md
- lists.md
- functions.md
- libraries.md
- for-loops.md
- looping-data-sets.md
- pandas.md
- conditionals.md
- writing-functions.md
- tidy.md
- data-visualisation.md
- wrap.md


# Information for Learners
learners:
Expand All @@ -92,6 +90,6 @@ profiles:
# sandpaper and varnish versions) should live


url: 'https://librarycarpentry.github.io/lc-python-intro'
url: https://librarycarpentry.github.io/lc-python-intro
analytics: carpentries
lang: en
133 changes: 0 additions & 133 deletions episodes/01-getting-started.md

This file was deleted.

Loading

0 comments on commit c8280dc

Please sign in to comment.