ankipandas


Nameankipandas JSON
Version 0.3.15 PyPI version JSON
download
home_pagehttps://github.com/klieret/ankipandas
SummaryLoad your anki database as a pandas DataFrame with just one line of code!
upload_time2023-10-11 13:32:41
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords anki pandas dataframe
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            <div align="center">
<a href="https://ankipandas.readthedocs.io/">
<img src="https://raw.githubusercontent.com/klieret/AnkiPandas/master/misc/logo/logo_github.png"></a>
<p align="center">
<em>Analyze and manipulate your Anki collection using pandas!</em>
</p>
</a>
<p>

[![Documentation Status](https://readthedocs.org/projects/ankipandas/badge/?version=latest)](https://ankipandas.readthedocs.io/) [![Gitter](https://img.shields.io/gitter/room/ankipandas/community.svg)](https://matrix.to/#/#AnkiPandas_community:gitter.im)
[![License](https://img.shields.io/github/license/klieret/ankipandas.svg)](https://github.com/klieret/ankipandas/blob/master/LICENSE.txt)
[![PR welcome](https://img.shields.io/badge/PR-Welcome-%23FF8300.svg)](https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project)

</p>
<p>

[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/klieret/AnkiPandas/master.svg)](https://results.pre-commit.ci/latest/github/klieret/AnkiPandas/master)
[![gh actions](https://github.com/klieret/AnkiPandas/workflows/testing/badge.svg)](https://github.com/klieret/AnkiPandas/actions) [![Coveralls](https://coveralls.io/repos/github/klieret/AnkiPandas/badge.svg?branch=master)](https://coveralls.io/github/klieret/AnkiPandas?branch=master)
[![CodeQL](https://github.com/klieret/AnkiPandas/actions/workflows/codeql.yml/badge.svg)](https://github.com/klieret/AnkiPandas/actions/workflows/codeql.yml)
[![gitmoji](https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg)](https://gitmoji.dev) [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)
[![Pypi status](https://badge.fury.io/py/ankipandas.svg)](https://pypi.org/project/ankipandas/)

</p>
</div>

## 📝 Description

> **Note**
> This package needs a new maintainer, as I currently do not have enough time to continue development
> of this package. Writing modifications back into the Anki database is currently disabled,
> in particular because of issue [#137](https://github.com/klieret/AnkiPandas/issues/137).
> Please reach out to me if you are interested in getting involved!

[Anki](https://apps.ankiweb.net/) is one of the most popular flashcard
system for spaced repetition learning,
[pandas](https://pandas.pydata.org/) is the most popular python package
for data analysis and manipulation. So what could be better than to
bring both together?

With `AnkiPandas` you can use `pandas` to easily analyze or manipulate
your Anki flashcards.

**Features**:

-   **Select**: Easily select arbitrary subsets of your cards, notes or
    reviews using `pandas` ([one of many
    introductions](https://medium.com/dunder-data/6fcd0170be9c),
    [official
    documentation](https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html))
-   **Visualize**: Use pandas\' powerful [built in
    tools](https://pandas.pydata.org/pandas-docs/stable/user_guide/visualization.html)
    or switch to the even more versatile
    [seaborn](https://seaborn.pydata.org/) (statistical analysis) or
    [matplotlib](https://matplotlib.org/) libraries
-   **Manipulate**: Apply fast bulk operations to the table (e.g. add
    tags, change decks, set field contents, suspend cards, \...) or
    iterate over the table and perform these manipulations step by step.
    **⚠️ This functionality is currently disabled until [#137](https://github.com/klieret/AnkiPandas/issues/137) has been resolved! ⚠️**
-   **Import and Export**: Pandas can export to (and import from) csv,
    MS Excel, HTML, JSON, \... ([io
    documentation](https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html))

**Pros**:

-   **Easy installation**: Install via python package manager
    (independent of your Anki installation)
-   **Simple**: Just one line of code to get started
-   **Convenient**: Bring together information about
    [cards](https://apps.ankiweb.net/docs/manual.html#cards),
    [notes](https://apps.ankiweb.net/docs/manual.html#notes-&-fields),
    [models](https://apps.ankiweb.net/docs/manual.html#note-types),
    [decks](https://apps.ankiweb.net/docs/manual.html#decks) and more in
    just one table!
-   **Fully documented**: Documentation on [readthedocs](https://ankipandas.readthedocs.io/)
-   **Well tested**: More than 100 unit tests to keep everything in
    check

Alternatives: If your main goal is to add new cards, models and more,
you can also take a look at the
[genanki](https://github.com/kerrickstaley/genanki) project.

## 📦 Installation

`AnkiPandas` is available as [pypi
package](https://pypi.org/project/ankipandas/) and can be installed or
upgrade with the [python package
manager](https://pip.pypa.io/en/stable/):

```sh
pip3 install --user --upgrade ankipandas
```

### Development installation

For the latest development version you can also work from a cloned
version of this repository:

```sh
git clone https://github.com/klieret/ankipandas/
cd ankipandas
pip3 install --user --upgrade --editable .
```

If you want to help develop this package further, please also install the
[pre-commit](https://pre-commit.ci/) hooks and use [gitmoji](https://gitmoji.dev/):

```sh
pre-commit install
gitmoji -i
```

## 🔥 Let's get started!

Starting up is as easy as this:

```python
from ankipandas import Collection

col = Collection()
```

And `col.notes` will be dataframe containing all notes, with additional
methods that make many things easy. Similarly, you can access cards or
reviews using `col.cards` or `col.revs`.

If called without any argument `Collection()` tries to find your Anki
database by itself. However this might take some time. To make it
easier, simply supply (part of) the path to the database and (if you
have more than one user) your Anki user name, e.g.
`Collection(".local/share/Anki2/", user="User 1")` on many Linux
installations.

To get information about the interpretation of each column, use
`print(col.notes.help_cols())`.

Take a look at the [documentation](https://ankipandas.readthedocs.io/)
to find out more about more about the available methods!

Some basic examples:

## 📈 Analysis

**More examples**: [Analysis
documentation](https://ankipandas.readthedocs.io/en/latest/examples.html),
[projects that use `AnkiPandas`](https://ankipandas.readthedocs.io/en/latest/projects_with_ap.html).

Show a histogram of the number of reviews (repetitions) of each card for
all decks:

```python
col.cards.hist(column="creps", by="cdeck")
```

Show the number of leeches per deck as pie chart:

```python
cards = col.cards.merge_notes()
selection = cards[cards.has_tag("leech")]
selection["cdeck"].value_counts().plot.pie()
```

Find all notes of model `MnemoticModel` with empty `Mnemotic` field:

```python
notes = col.notes.fields_as_columns()
notes.query("model=='MnemoticModel' and 'Mnemotic'==''")
```

## 🛠️ Manipulations

> **Warning**
> Writing the database has currently been disabled until
> [#137](https://github.com/klieret/AnkiPandas/issues/137) has been resolved.
> Help is much appreciated!

> **Warning**
> **Please be careful and test this well!**
> Ankipandas will create a backup of your database before writing, so you can always restore the previous state. Please make sure that everything is working before continuing to use Anki normally!

Add the `difficult-japanese` and `marked` tag to all notes that contain
the tags `Japanese` and `leech`:

```python
notes = col.notes
selection = notes[notes.has_tags(["Japanese", "leech"])]
selection = selection.add_tag(["difficult-japanese", "marked"])
col.notes.update(selection)
col.write(modify=True)  # Overwrites your database after creating a backup!
```

Set the `language` field to `English` for all notes of model
`LanguageModel` that are tagged with `English`:

```python
notes = col.notes
selection = notes[notes.has_tag(["English"])].query("model=='LanguageModel'").copy()
selection.fields_as_columns(inplace=True)
selection["language"] = "English"
col.notes.update(selection)
col.write(modify=True)
```

Move all cards tagged `leech` to the deck `Leeches Only`:

```python
cards = col.cards
selection = cards[cards.has_tag("leech")]
selection["cdeck"] = "Leeches Only"
col.cards.update(selection)
col.write(modify=True)
```

## 🐞 Troubleshooting

See the [troubleshooting section in the
documentation](https://ankipandas.readthedocs.io/en/latest/troubleshooting.html).

## 💖 Contributing

Your help is greatly appreciated! Suggestions, bug reports and feature
requests are best opened as [github
issues](https://github.com/klieret/ankipandas/issues). You could also
first discuss in the [gitter
community](https://matrix.to/#/#AnkiPandas_community:gitter.im). If you want to code
something yourself, you are very welcome to submit a [pull
request](https://github.com/klieret/AnkiPandas/pulls)!

Bug reports and pull requests are credited with the help of the [allcontributors bot](https://allcontributors.org/).

## 📃 License & Disclaimer

This software is licenced under the [MIT
license](https://github.com/klieret/ankipandas/blob/master/LICENSE.txt)
and (despite best testing efforts) comes **without any warranty**. The
logo is inspired by the [Anki
logo](https://github.com/ankitects/anki/blob/main/qt/aqt/data/web/imgs/anki-logo-thin.png)
([license](https://github.com/ankitects/anki/blob/main/LICENSE)) and
the logo of the pandas package
([license2](https://github.com/pandas-dev/pandas/blob/main/LICENSE)).
This library and its author(s) are not affiliated/associated with the
main Anki or pandas project in any way.

## ✨ Contributors

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tbody>
    <tr>
      <td align="center"><a href="https://github.com/Blocked"><img src="https://avatars.githubusercontent.com/u/4366503?v=4?s=100" width="100px;" alt="Blocked"/><br /><sub><b>Blocked</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/issues?q=author%3ABlocked" title="Bug reports">🐛</a></td>
      <td align="center"><a href="https://github.com/CalculusAce"><img src="https://avatars3.githubusercontent.com/u/42630988?v=4?s=100" width="100px;" alt="CalculusAce"/><br /><sub><b>CalculusAce</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/issues?q=author%3ACalculusAce" title="Bug reports">🐛</a></td>
      <td align="center"><a href="http://frnsys.com"><img src="https://avatars.githubusercontent.com/u/1059947?v=4?s=100" width="100px;" alt="Francis Tseng"/><br /><sub><b>Francis Tseng</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/issues?q=author%3Afrnsys" title="Bug reports">🐛</a> <a href="https://github.com/klieret/AnkiPandas/commits?author=frnsys" title="Code">💻</a></td>
      <td align="center"><a href="https://github.com/khughitt"><img src="https://avatars.githubusercontent.com/u/125001?v=4?s=100" width="100px;" alt="Keith Hughitt"/><br /><sub><b>Keith Hughitt</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/issues?q=author%3Akhughitt" title="Bug reports">🐛</a></td>
      <td align="center"><a href="https://github.com/eumiro"><img src="https://avatars0.githubusercontent.com/u/6774676?v=4?s=100" width="100px;" alt="Miroslav Šedivý"/><br /><sub><b>Miroslav Šedivý</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/commits?author=eumiro" title="Tests">⚠️</a> <a href="https://github.com/klieret/AnkiPandas/commits?author=eumiro" title="Code">💻</a></td>
      <td align="center"><a href="https://github.com/bollwyvl"><img src="https://avatars.githubusercontent.com/u/45380?v=4?s=100" width="100px;" alt="Nicholas Bollweg"/><br /><sub><b>Nicholas Bollweg</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/commits?author=bollwyvl" title="Code">💻</a></td>
      <td align="center"><a href="http://thomasbrownback.com/"><img src="https://avatars2.githubusercontent.com/u/26754?v=4?s=100" width="100px;" alt="Thomas Brownback"/><br /><sub><b>Thomas Brownback</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/issues?q=author%3Abrownbat" title="Bug reports">🐛</a></td>
    </tr>
    <tr>
      <td align="center"><a href="http://esrh.sdf.org"><img src="https://avatars.githubusercontent.com/u/16175276?v=4?s=100" width="100px;" alt="eshrh"/><br /><sub><b>eshrh</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/commits?author=eshrh" title="Documentation">📖</a></td>
      <td align="center"><a href="https://github.com/exc4l"><img src="https://avatars3.githubusercontent.com/u/74188442?v=4?s=100" width="100px;" alt="exc4l"/><br /><sub><b>exc4l</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/issues?q=author%3Aexc4l" title="Bug reports">🐛</a> <a href="https://github.com/klieret/AnkiPandas/commits?author=exc4l" title="Code">💻</a></td>
      <td align="center"><a href="https://github.com/p4nix"><img src="https://avatars1.githubusercontent.com/u/7038116?v=4?s=100" width="100px;" alt="p4nix"/><br /><sub><b>p4nix</b></sub></a><br /><a href="https://github.com/klieret/AnkiPandas/issues?q=author%3Ap4nix" title="Bug reports">🐛</a></td>
    </tr>
  </tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/klieret/ankipandas",
    "name": "ankipandas",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "anki,pandas,dataframe",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/6e/a9/42bb4bfa687468cbd890c7da56d94ed945f0f687d509359be4c3c0c8c4df/ankipandas-0.3.15.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n<a href=\"https://ankipandas.readthedocs.io/\">\n<img src=\"https://raw.githubusercontent.com/klieret/AnkiPandas/master/misc/logo/logo_github.png\"></a>\n<p align=\"center\">\n<em>Analyze and manipulate your Anki collection using pandas!</em>\n</p>\n</a>\n<p>\n\n[![Documentation Status](https://readthedocs.org/projects/ankipandas/badge/?version=latest)](https://ankipandas.readthedocs.io/) [![Gitter](https://img.shields.io/gitter/room/ankipandas/community.svg)](https://matrix.to/#/#AnkiPandas_community:gitter.im)\n[![License](https://img.shields.io/github/license/klieret/ankipandas.svg)](https://github.com/klieret/ankipandas/blob/master/LICENSE.txt)\n[![PR welcome](https://img.shields.io/badge/PR-Welcome-%23FF8300.svg)](https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project)\n\n</p>\n<p>\n\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/klieret/AnkiPandas/master.svg)](https://results.pre-commit.ci/latest/github/klieret/AnkiPandas/master)\n[![gh actions](https://github.com/klieret/AnkiPandas/workflows/testing/badge.svg)](https://github.com/klieret/AnkiPandas/actions) [![Coveralls](https://coveralls.io/repos/github/klieret/AnkiPandas/badge.svg?branch=master)](https://coveralls.io/github/klieret/AnkiPandas?branch=master)\n[![CodeQL](https://github.com/klieret/AnkiPandas/actions/workflows/codeql.yml/badge.svg)](https://github.com/klieret/AnkiPandas/actions/workflows/codeql.yml)\n[![gitmoji](https://img.shields.io/badge/gitmoji-%20\ud83d\ude1c%20\ud83d\ude0d-FFDD67.svg)](https://gitmoji.dev) [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)\n[![Pypi status](https://badge.fury.io/py/ankipandas.svg)](https://pypi.org/project/ankipandas/)\n\n</p>\n</div>\n\n## \ud83d\udcdd Description\n\n> **Note**\n> This package needs a new maintainer, as I currently do not have enough time to continue development\n> of this package. Writing modifications back into the Anki database is currently disabled,\n> in particular because of issue [#137](https://github.com/klieret/AnkiPandas/issues/137).\n> Please reach out to me if you are interested in getting involved!\n\n[Anki](https://apps.ankiweb.net/) is one of the most popular flashcard\nsystem for spaced repetition learning,\n[pandas](https://pandas.pydata.org/) is the most popular python package\nfor data analysis and manipulation. So what could be better than to\nbring both together?\n\nWith `AnkiPandas` you can use `pandas` to easily analyze or manipulate\nyour Anki flashcards.\n\n**Features**:\n\n-   **Select**: Easily select arbitrary subsets of your cards, notes or\n    reviews using `pandas` ([one of many\n    introductions](https://medium.com/dunder-data/6fcd0170be9c),\n    [official\n    documentation](https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html))\n-   **Visualize**: Use pandas\\' powerful [built in\n    tools](https://pandas.pydata.org/pandas-docs/stable/user_guide/visualization.html)\n    or switch to the even more versatile\n    [seaborn](https://seaborn.pydata.org/) (statistical analysis) or\n    [matplotlib](https://matplotlib.org/) libraries\n-   **Manipulate**: Apply fast bulk operations to the table (e.g. add\n    tags, change decks, set field contents, suspend cards, \\...) or\n    iterate over the table and perform these manipulations step by step.\n    **\u26a0\ufe0f This functionality is currently disabled until [#137](https://github.com/klieret/AnkiPandas/issues/137) has been resolved! \u26a0\ufe0f**\n-   **Import and Export**: Pandas can export to (and import from) csv,\n    MS Excel, HTML, JSON, \\... ([io\n    documentation](https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html))\n\n**Pros**:\n\n-   **Easy installation**: Install via python package manager\n    (independent of your Anki installation)\n-   **Simple**: Just one line of code to get started\n-   **Convenient**: Bring together information about\n    [cards](https://apps.ankiweb.net/docs/manual.html#cards),\n    [notes](https://apps.ankiweb.net/docs/manual.html#notes-&-fields),\n    [models](https://apps.ankiweb.net/docs/manual.html#note-types),\n    [decks](https://apps.ankiweb.net/docs/manual.html#decks) and more in\n    just one table!\n-   **Fully documented**: Documentation on [readthedocs](https://ankipandas.readthedocs.io/)\n-   **Well tested**: More than 100 unit tests to keep everything in\n    check\n\nAlternatives: If your main goal is to add new cards, models and more,\nyou can also take a look at the\n[genanki](https://github.com/kerrickstaley/genanki) project.\n\n## \ud83d\udce6 Installation\n\n`AnkiPandas` is available as [pypi\npackage](https://pypi.org/project/ankipandas/) and can be installed or\nupgrade with the [python package\nmanager](https://pip.pypa.io/en/stable/):\n\n```sh\npip3 install --user --upgrade ankipandas\n```\n\n### Development installation\n\nFor the latest development version you can also work from a cloned\nversion of this repository:\n\n```sh\ngit clone https://github.com/klieret/ankipandas/\ncd ankipandas\npip3 install --user --upgrade --editable .\n```\n\nIf you want to help develop this package further, please also install the\n[pre-commit](https://pre-commit.ci/) hooks and use [gitmoji](https://gitmoji.dev/):\n\n```sh\npre-commit install\ngitmoji -i\n```\n\n## \ud83d\udd25 Let's get started!\n\nStarting up is as easy as this:\n\n```python\nfrom ankipandas import Collection\n\ncol = Collection()\n```\n\nAnd `col.notes` will be dataframe containing all notes, with additional\nmethods that make many things easy. Similarly, you can access cards or\nreviews using `col.cards` or `col.revs`.\n\nIf called without any argument `Collection()` tries to find your Anki\ndatabase by itself. However this might take some time. To make it\neasier, simply supply (part of) the path to the database and (if you\nhave more than one user) your Anki user name, e.g.\n`Collection(\".local/share/Anki2/\", user=\"User 1\")` on many Linux\ninstallations.\n\nTo get information about the interpretation of each column, use\n`print(col.notes.help_cols())`.\n\nTake a look at the [documentation](https://ankipandas.readthedocs.io/)\nto find out more about more about the available methods!\n\nSome basic examples:\n\n## \ud83d\udcc8 Analysis\n\n**More examples**: [Analysis\ndocumentation](https://ankipandas.readthedocs.io/en/latest/examples.html),\n[projects that use `AnkiPandas`](https://ankipandas.readthedocs.io/en/latest/projects_with_ap.html).\n\nShow a histogram of the number of reviews (repetitions) of each card for\nall decks:\n\n```python\ncol.cards.hist(column=\"creps\", by=\"cdeck\")\n```\n\nShow the number of leeches per deck as pie chart:\n\n```python\ncards = col.cards.merge_notes()\nselection = cards[cards.has_tag(\"leech\")]\nselection[\"cdeck\"].value_counts().plot.pie()\n```\n\nFind all notes of model `MnemoticModel` with empty `Mnemotic` field:\n\n```python\nnotes = col.notes.fields_as_columns()\nnotes.query(\"model=='MnemoticModel' and 'Mnemotic'==''\")\n```\n\n## \ud83d\udee0\ufe0f Manipulations\n\n> **Warning**\n> Writing the database has currently been disabled until\n> [#137](https://github.com/klieret/AnkiPandas/issues/137) has been resolved.\n> Help is much appreciated!\n\n> **Warning**\n> **Please be careful and test this well!**\n> Ankipandas will create a backup of your database before writing, so you can always restore the previous state. Please make sure that everything is working before continuing to use Anki normally!\n\nAdd the `difficult-japanese` and `marked` tag to all notes that contain\nthe tags `Japanese` and `leech`:\n\n```python\nnotes = col.notes\nselection = notes[notes.has_tags([\"Japanese\", \"leech\"])]\nselection = selection.add_tag([\"difficult-japanese\", \"marked\"])\ncol.notes.update(selection)\ncol.write(modify=True)  # Overwrites your database after creating a backup!\n```\n\nSet the `language` field to `English` for all notes of model\n`LanguageModel` that are tagged with `English`:\n\n```python\nnotes = col.notes\nselection = notes[notes.has_tag([\"English\"])].query(\"model=='LanguageModel'\").copy()\nselection.fields_as_columns(inplace=True)\nselection[\"language\"] = \"English\"\ncol.notes.update(selection)\ncol.write(modify=True)\n```\n\nMove all cards tagged `leech` to the deck `Leeches Only`:\n\n```python\ncards = col.cards\nselection = cards[cards.has_tag(\"leech\")]\nselection[\"cdeck\"] = \"Leeches Only\"\ncol.cards.update(selection)\ncol.write(modify=True)\n```\n\n## \ud83d\udc1e Troubleshooting\n\nSee the [troubleshooting section in the\ndocumentation](https://ankipandas.readthedocs.io/en/latest/troubleshooting.html).\n\n## \ud83d\udc96 Contributing\n\nYour help is greatly appreciated! Suggestions, bug reports and feature\nrequests are best opened as [github\nissues](https://github.com/klieret/ankipandas/issues). You could also\nfirst discuss in the [gitter\ncommunity](https://matrix.to/#/#AnkiPandas_community:gitter.im). If you want to code\nsomething yourself, you are very welcome to submit a [pull\nrequest](https://github.com/klieret/AnkiPandas/pulls)!\n\nBug reports and pull requests are credited with the help of the [allcontributors bot](https://allcontributors.org/).\n\n## \ud83d\udcc3 License & Disclaimer\n\nThis software is licenced under the [MIT\nlicense](https://github.com/klieret/ankipandas/blob/master/LICENSE.txt)\nand (despite best testing efforts) comes **without any warranty**. The\nlogo is inspired by the [Anki\nlogo](https://github.com/ankitects/anki/blob/main/qt/aqt/data/web/imgs/anki-logo-thin.png)\n([license](https://github.com/ankitects/anki/blob/main/LICENSE)) and\nthe logo of the pandas package\n([license2](https://github.com/pandas-dev/pandas/blob/main/LICENSE)).\nThis library and its author(s) are not affiliated/associated with the\nmain Anki or pandas project in any way.\n\n## \u2728 Contributors\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n  <tbody>\n    <tr>\n      <td align=\"center\"><a href=\"https://github.com/Blocked\"><img src=\"https://avatars.githubusercontent.com/u/4366503?v=4?s=100\" width=\"100px;\" alt=\"Blocked\"/><br /><sub><b>Blocked</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/issues?q=author%3ABlocked\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n      <td align=\"center\"><a href=\"https://github.com/CalculusAce\"><img src=\"https://avatars3.githubusercontent.com/u/42630988?v=4?s=100\" width=\"100px;\" alt=\"CalculusAce\"/><br /><sub><b>CalculusAce</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/issues?q=author%3ACalculusAce\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n      <td align=\"center\"><a href=\"http://frnsys.com\"><img src=\"https://avatars.githubusercontent.com/u/1059947?v=4?s=100\" width=\"100px;\" alt=\"Francis Tseng\"/><br /><sub><b>Francis Tseng</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/issues?q=author%3Afrnsys\" title=\"Bug reports\">\ud83d\udc1b</a> <a href=\"https://github.com/klieret/AnkiPandas/commits?author=frnsys\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\"><a href=\"https://github.com/khughitt\"><img src=\"https://avatars.githubusercontent.com/u/125001?v=4?s=100\" width=\"100px;\" alt=\"Keith Hughitt\"/><br /><sub><b>Keith Hughitt</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/issues?q=author%3Akhughitt\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n      <td align=\"center\"><a href=\"https://github.com/eumiro\"><img src=\"https://avatars0.githubusercontent.com/u/6774676?v=4?s=100\" width=\"100px;\" alt=\"Miroslav \u0160ediv\u00fd\"/><br /><sub><b>Miroslav \u0160ediv\u00fd</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/commits?author=eumiro\" title=\"Tests\">\u26a0\ufe0f</a> <a href=\"https://github.com/klieret/AnkiPandas/commits?author=eumiro\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\"><a href=\"https://github.com/bollwyvl\"><img src=\"https://avatars.githubusercontent.com/u/45380?v=4?s=100\" width=\"100px;\" alt=\"Nicholas Bollweg\"/><br /><sub><b>Nicholas Bollweg</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/commits?author=bollwyvl\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\"><a href=\"http://thomasbrownback.com/\"><img src=\"https://avatars2.githubusercontent.com/u/26754?v=4?s=100\" width=\"100px;\" alt=\"Thomas Brownback\"/><br /><sub><b>Thomas Brownback</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/issues?q=author%3Abrownbat\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n    </tr>\n    <tr>\n      <td align=\"center\"><a href=\"http://esrh.sdf.org\"><img src=\"https://avatars.githubusercontent.com/u/16175276?v=4?s=100\" width=\"100px;\" alt=\"eshrh\"/><br /><sub><b>eshrh</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/commits?author=eshrh\" title=\"Documentation\">\ud83d\udcd6</a></td>\n      <td align=\"center\"><a href=\"https://github.com/exc4l\"><img src=\"https://avatars3.githubusercontent.com/u/74188442?v=4?s=100\" width=\"100px;\" alt=\"exc4l\"/><br /><sub><b>exc4l</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/issues?q=author%3Aexc4l\" title=\"Bug reports\">\ud83d\udc1b</a> <a href=\"https://github.com/klieret/AnkiPandas/commits?author=exc4l\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\"><a href=\"https://github.com/p4nix\"><img src=\"https://avatars1.githubusercontent.com/u/7038116?v=4?s=100\" width=\"100px;\" alt=\"p4nix\"/><br /><sub><b>p4nix</b></sub></a><br /><a href=\"https://github.com/klieret/AnkiPandas/issues?q=author%3Ap4nix\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n    </tr>\n  </tbody>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Load your anki database as a pandas DataFrame with just one line of code!",
    "version": "0.3.15",
    "project_urls": {
        "Bug Tracker": "https://github.com/klieret/ankipandas/issues",
        "Documentation": "https://ankipandas.readthedocs.io/",
        "Homepage": "https://github.com/klieret/ankipandas",
        "Source Code": "https://github.com/klieret/ankipandas/"
    },
    "split_keywords": [
        "anki",
        "pandas",
        "dataframe"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96c28529f4516d8b3ec1d935a8bf7ef76117526dbc2415f10e25fc92d018624d",
                "md5": "49f3696ef5c23fb3a67074e7cf14cb3b",
                "sha256": "fb86d29e0fb43abc0303eeaa8d79f403618bc4051c4fedbe1dfc9e7f5ab77250"
            },
            "downloads": -1,
            "filename": "ankipandas-0.3.15-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "49f3696ef5c23fb3a67074e7cf14cb3b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 66525,
            "upload_time": "2023-10-11T13:32:40",
            "upload_time_iso_8601": "2023-10-11T13:32:40.088724Z",
            "url": "https://files.pythonhosted.org/packages/96/c2/8529f4516d8b3ec1d935a8bf7ef76117526dbc2415f10e25fc92d018624d/ankipandas-0.3.15-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ea942bb4bfa687468cbd890c7da56d94ed945f0f687d509359be4c3c0c8c4df",
                "md5": "2bba314a6a081d9123d4bae0e1a817fd",
                "sha256": "df59245f2b705077ae6ba4c164cc9fbaf9906bd28d29c2bf89e9700ea363dfbc"
            },
            "downloads": -1,
            "filename": "ankipandas-0.3.15.tar.gz",
            "has_sig": false,
            "md5_digest": "2bba314a6a081d9123d4bae0e1a817fd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 66247,
            "upload_time": "2023-10-11T13:32:41",
            "upload_time_iso_8601": "2023-10-11T13:32:41.496971Z",
            "url": "https://files.pythonhosted.org/packages/6e/a9/42bb4bfa687468cbd890c7da56d94ed945f0f687d509359be4c3c0c8c4df/ankipandas-0.3.15.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-11 13:32:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "klieret",
    "github_project": "ankipandas",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "ankipandas"
}
        
Elapsed time: 0.13186s