Dataset Viewer
Auto-converted to Parquet Duplicate
id
int64
number
int64
title
string
user.login
string
state
string
comments
int64
created_at
string
updated_at
string
labels
list
html_url
string
body
string
title_length
int64
body_length
int64
num_labels
int64
is_bug
bool
is_doc
bool
is_feature_request
bool
3,604,518,921
5,845
docs: Add explanation of reloader types and terminal output
commitWithTisha
open
0
2025-11-09T06:28:20Z
2025-11-09T06:29:03Z
[]
https://github.com/pallets/flask/pull/5845
## Summary This PR adds documentation explaining the different reloader types that Flask uses and the terminal output users see when running in debug mode. ## Problem When running Flask with debug mode enabled, users see messages like: - `* Restarting with stat` - `* Restarting with watchdog (windowsapi)` -...
59
1,478
0
false
true
false
3,592,054,000
5,844
pre-commit: Add codespell
cclauss
open
0
2025-11-05T17:14:08Z
2025-11-05T17:43:11Z
[]
https://github.com/pallets/flask/pull/5844
* #5833 on the `stable` branch. The `stable` branch contains no codespell discoverable typos, but the default branch contains: ``` ./docs/appcontext.rst:122: requet ==> request ./docs/quickstart.rst:465: interanlly ==> internally ./docs/templating.rst:186: avaialble ==> available ``` <!-- Before opening a P...
25
1,143
0
false
false
false
3,544,098,523
5,835
Add Seenode deployment instructions to documentation
GeoSegun
open
0
2025-10-23T10:30:06Z
2025-10-23T10:30:06Z
[]
https://github.com/pallets/flask/pull/5835
Hey. Just wanted to add seenode to the listed providers, as we have [first class support for flask](https://seenode.com/docs/frameworks/python/flask/). Thanks! <!-- Before opening a PR, open a ticket describing the issue or feature the PR will address. An issue is not required for fixing typos in documentation, or ...
52
1,008
0
false
true
false
3,497,902,807
5,827
docs: clarify 415 vs 400 errors for request.json
adityasah104
open
0
2025-10-09T07:06:09Z
2025-10-09T07:06:09Z
[]
https://github.com/pallets/flask/pull/5827
## Description Clarifies the distinction between 415 and 400 error codes when using `request.json`, aligning the JavaScript patterns documentation with the API reference. ## Changes - Updated "Receiving JSON in Views" section to specify: - 400 Bad Request: for invalid JSON body - 415 Unsupported Media Type: ...
48
549
0
false
true
false
3,492,022,759
5,825
Document 415 on the receiving json section
elafonta
open
1
2025-10-07T15:41:58Z
2025-10-07T16:08:22Z
[ { "color": "0e8a16", "default": false, "description": null, "id": 32876, "name": "docs", "node_id": "MDU6TGFiZWwzMjg3Ng==", "url": "https://api.github.com/repos/pallets/flask/labels/docs" } ]
https://github.com/pallets/flask/issues/5825
Documentation on "json" request throwing a 415 as well as 400. The problem text is on https://flask.palletsprojects.com/en/stable/patterns/javascript/#receiving-json-in-views ``` Receiving JSON in Views Use the [json](https://flask.palletsprojects.com/en/stable/api/#flask.Request.json) property of the [request](ht...
42
1,552
1
false
true
false
3,465,874,895
5,824
Clarify asyncio and gevent incompatibility in docs (#5817)
relu101
open
0
2025-09-29T17:11:11Z
2025-10-09T13:33:43Z
[]
https://github.com/pallets/flask/pull/5824
Updated the _async_await.rst documentation to clarify that Flask's asynchronous support (using asgiref) is **not compatible with gevent or eventlet**. Added a recommendation to use ASGI servers like `uvicorn` or `hypercorn` for proper async support, giving users a clear alternative until issue #5817 is address...
58
325
0
false
true
false
3,422,081,693
5,817
asyncio is not compatible with gevent
awoimbee
open
6
2025-09-16T12:28:32Z
2025-09-19T23:32:18Z
[ { "color": "0e8a16", "default": false, "description": null, "id": 32876, "name": "docs", "node_id": "MDU6TGFiZWwzMjg3Ng==", "url": "https://api.github.com/repos/pallets/flask/labels/docs" } ]
https://github.com/pallets/flask/issues/5817
See #5256 async-await: <https://flask.palletsprojects.com/en/stable/async-await/> > Using async with greenlet > When using gevent or eventlet to serve an application or patch the runtime, greenlet>=1.0 is required. When using PyPy, PyPy>=7.3.7 is required. Flask uses asgiref, which is not compatible with gevent: <ht...
37
1,090
1
false
false
false
3,415,264,936
5,816
deprecate `should_ignore_error`
davidism
open
3
2025-09-14T16:38:15Z
2025-11-11T17:13:32Z
[]
https://github.com/pallets/flask/issues/5816
This was added in f1918093ac70d589a4d67af0d77140734c06c13d as part of the original code to keep the context around for use in the debugger, tests, etc. It was not part of a PR, and there's no linked issue or explanation on why it was added. The intention seems to be to allow ignoring certain errors during debugging, s...
31
855
0
false
false
false
3,390,483,645
5,808
Changed the static annotated type filename parameter of select_jinja_autoescape method in src/flask/sansio/app.py
subhajitsaha01
open
2
2025-09-06T16:33:44Z
2025-10-29T01:47:37Z
[]
https://github.com/pallets/flask/pull/5808
Inside the code of the method the filename is checked against a None value and returns True, but the static annotated type is a str. I have changed the static annotation type to `str` to `str | None`.
113
200
0
false
false
false
3,372,901,713
5,804
3.1.2 regression: `stream_with_context` triggers `teardown_request()` calls before response generation
noirbee
open
6
2025-09-01T14:24:02Z
2025-09-29T18:03:07Z
[]
https://github.com/pallets/flask/issues/5804
<!-- This issue tracker is a tool to address bugs in Flask itself. Please use GitHub Discussions or the Pallets Discord for questions about your own code. Replace this comment with a clear outline of what the bug is. --> <!-- Describe how to replicate the bug. Include a minimal reproducible example that demonstrates...
102
5,402
0
false
false
false
2,766,647,591
5,665
Workflow
pgjones
open
4
2025-01-02T21:10:36Z
2025-03-29T22:19:39Z
[]
https://github.com/pallets/flask/pull/5665
<!-- Before opening a PR, open a ticket describing the issue or feature the PR will address. An issue is not required for fixing typos in documentation, or other simple non-code changes. Replace this comment with a description of the change. Describe how it addresses the linked ticket. --> <!-- Link to rele...
8
847
0
false
false
false
2,758,244,613
5,660
Move parts of the session code to sansio
pgjones
open
0
2024-12-24T20:09:08Z
2024-12-24T20:12:45Z
[]
https://github.com/pallets/flask/pull/5660
This will allow it to be used in Quart, thereby reducing duplication, and ensuring the APIs match. <!-- Before opening a PR, open a ticket describing the issue or feature the PR will address. An issue is not required for fixing typos in documentation, or other simple non-code changes. Replace this comment with...
40
949
0
false
false
false

🗂️ Dataset Card: GitHub Issues Dataset for Flask (Augmented)

Author: FA678945 Version: 1.0 (2025) License: CC BY 4.0 Source: pallets/flask GitHub Repository

📘 Dataset Summary

This dataset contains a curated collection of public GitHub Issues from the Flask web framework repository (pallets/flask). It has been augmented with derived metadata to support educational and research applications including sentiment analysis, text classification, and semantic search.

Created for BSBDAT501, ICTDAT401, and BSBCRT404 assessment tasks, this dataset demonstrates ethical, compliant, and reproducible dataset creation using a public API.

📚 Supported Tasks & Benchmarks

This dataset is suited for:

Sentiment Analysis

Text Classification (bug vs non-bug, topic categorisation)

Semantic Search using FAISS

Keyword Extraction / Text Cleaning

EDA & NLP Demonstrations

Curriculum-Based Training for Dataset Creation and Documentation

This dataset is not intended for real-world decision-making or automated actions affecting individuals.

📡 Data Source GitHub API Endpoint https://api.github.com/repos/pallets/flask/issues

Collection Method

Data was retrieved using Python’s requests library:

import requests

url = "https://api.github.com/repos/pallets/flask/issues" response = requests.get(url) data = response.json()

Only public issues were collected. No authentication, private repos, or sensitive data were involved.

🛠️ Data Fields Raw Fields Field Type Description id int GitHub issue ID title string Issue title body string Issue body text state string “open” or “closed” labels list List of label objects user string GitHub username (public) created_at string ISO timestamp updated_at string ISO timestamp Augmented Fields Field Type Description title_length int Character count of title issue_length int Character count of body num_labels int Number of labels applied is_bug bool True if issue text contains “bug” created_month int Month extracted from timestamp text_clean string Lowercased, punctuation-removed text sentiment float/label Optional sentiment score/class keyword_present bool Checks for keywords like “error” or “exception” 📁 Dataset Structure

Each record represents one GitHub Issue. The dataset is provided as a structured table (e.g., JSON, CSV, Parquet, HF Dataset format).

🧪 Dataset Creation Process

  1. Data Extraction

Retrieved via GitHub REST API

Limited to public issues

Includes only publicly visible usernames

  1. Cleaning

Removed empty descriptions

Normalised whitespace

Lowercased and stripped punctuation

  1. Augmentation

Added fields for length, sentiment, and keyword features to support NLP tasks.

  1. Validation

Checked for malformed timestamps

Ensured all fields had consistent types

Verified no personal/sensitive data included

🔐 Ethical & Legal Considerations Compliance with Policies

This dataset complies with:

Koorliny Kaatijin AI Use Policy

Only public data used

Full transparency and documentation

Data Access & Classification Policy

Classified as Public

Privacy Policy

No personal or sensitive information collected

Information Security & Acceptable Use Policy

Stored on an approved cloud repository (Hugging Face)

Data Retention & Disposal Policy

Dataset may be removed after academic use

Privacy

This dataset uses only publicly available GitHub usernames, which are explicitly non-sensitive.

No email addresses, private repositories, or personal data were collected.

Copyright & Licensing

Original GitHub content is subject to GitHub Terms of Service.

Augmented dataset is released under CC BY 4.0.

Attribution is required (see below).

⚠️ Limitations

Informal writing style in issues

Small sample size

Heuristic fields like is_bug may be noisy

Label and topic imbalance

Possible contributor-style bias

Not suitable for production ML systems.

🌐 Intended Uses

This dataset is intended for:

Classroom/academic demonstrations

Text preprocessing and NLP tutorials

Training on dataset creation & documentation processes

Experimenting with FAISS search

Exploratory data analysis

Not suited for:

Automated decision-making

High-risk AI applications

Profiling individuals

📜 Licensing Dataset License

Creative Commons Attribution 4.0 (CC BY 4.0)

Attribution Requirements

Please credit:

Original Source Data: pallets/flask GitHub repository

Issue Authors & Contributors

Dataset Creator: FA678945 (2025)

Dataset URL: Hugging Face link

🧾 Citation FA678945 (2025). GitHub Issues Dataset for Flask (Augmented). Hugging Face Datasets. Source data from the pallets/flask GitHub repository. Licensed under CC BY 4.0.

📈 Future Work

Possible enhancements:

Embeddings for FAISS (Task 3)

Larger set of issues

Label-based classification tasks

Triage prediction model

Topic modelling

Downloads last month
20