Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-add jsonfeed/converters/__init__.py #6

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ audit:
docs: docs/index.html
docs/index.html: $(source) README.md
rm -rf docs/*
pdoc --docformat "restructuredtext" jsonfeed jsonfeed.converters.feedparser -o docs
pdoc --docformat "restructuredtext" ./jsonfeed -o docs

clean:
rm -rf build dist
Expand Down
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<h2>Available Modules</h2>
<ul>
<li><a href="jsonfeed.html">jsonfeed</a></li>
<li><a href="jsonfeed/converters.html">jsonfeed.converters</a></li>
<li><a href="jsonfeed/converters/feedparser.html">jsonfeed.converters.feedparser</a></li>
</ul>
</div>
Expand Down
4 changes: 4 additions & 0 deletions docs/jsonfeed.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ <h2>Contents</h2>
</ul>


<h2>Submodules</h2>
<ul>
<li><a href="jsonfeed/converters.html">jsonfeed.converters</a></li>
</ul>

<h2>API Documentation</h2>
<ul class="memberlist">
Expand Down
243 changes: 243 additions & 0 deletions docs/jsonfeed/converters.html

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions docs/jsonfeed/converters/feedparser.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
<label id="navtoggle" for="togglestate" class="pdoc-button"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke-linecap='round' stroke="currentColor" stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg></label>
<input id="togglestate" type="checkbox">
<div>
<a class="pdoc-button module-list-button" href="./../../">
<a class="pdoc-button module-list-button" href="../converters.html">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-box-arrow-in-left" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10 3.5a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 1 1 0v2A1.5 1.5 0 0 1 9.5 14h-8A1.5 1.5 0 0 1 0 12.5v-9A1.5 1.5 0 0 1 1.5 2h8A1.5 1.5 0 0 1 11 3.5v2a.5.5 0 0 1-1 0v-2z"/>
<path fill-rule="evenodd" d="M4.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H14.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3z"/>
</svg> &nbsp;
Module Index
</a>
</svg> &nbsp;jsonfeed.converters</a>

<input type="search" placeholder="Search..." role="searchbox" aria-label="search"
pattern=".+" required>
Expand Down Expand Up @@ -60,7 +58,7 @@ <h2>API Documentation</h2>
<main class="pdoc">
<section>
<h1 class="modulename">
<a href="./../../jsonfeed.html">jsonfeed</a><wbr>.converters<wbr>.feedparser </h1>
<a href="./../../jsonfeed.html">jsonfeed</a><wbr>.<a href="./../converters.html">converters</a><wbr>.feedparser </h1>


<details>
Expand Down
2 changes: 1 addition & 1 deletion docs/search.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup

version = "1.0.0"

Expand All @@ -8,7 +8,7 @@
setup(
name="jsonfeed",
version=version,
packages=find_packages(),
py_modules=['jsonfeed', 'jsonfeed.converters.feedparser'],
# metadata for upload to PyPI
author="Lukas Schwab",
author_email="[email protected]",
Expand Down