Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tracer755/e621-wrappers
e621 api wrappers for a bunch of languages
https://github.com/tracer755/e621-wrappers
e621 e621-api e621-downloader wrapper
Last synced: 9 days ago
JSON representation
e621 api wrappers for a bunch of languages
- Host: GitHub
- URL: https://github.com/tracer755/e621-wrappers
- Owner: tracer755
- License: mit
- Created: 2022-05-20T06:39:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-11T08:01:27.000Z (2 months ago)
- Last Synced: 2024-10-03T08:37:42.055Z (about 1 month ago)
- Topics: e621, e621-api, e621-downloader, wrapper
- Language: Python
- Homepage:
- Size: 10.6 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/funding.yml
- License: LICENSE
Awesome Lists containing this project
README
# E621 Wrappers
E621 Api wrappers for a bunch of languagesThese are not official wrappers as such things might be a bit broken
#### Languages
- [x] [Python](python)
- [ ] Node js (started)
- [ ] Js (planned)
- [ ] c# (started)
- [ ] java (started)
- [ ] c++ (probably not)## [Python](python)
[![Downloads](https://static.pepy.tech/personalized-badge/e621py-wrapper?period=total&units=international_system&left_color=black&right_color=orange&left_text=Downloads)](https://pepy.tech/project/e621py-wrapper)Install here: https://pypi.org/project/e621py-wrapper/ or use: pip install e621py-wrapper
Get started:
First import the library and create a e621 client
```python
import e621py_wrapper as e621
client = e621.client()
```
Now lets login, some api calls will require logging in
```python
client.login("username", "apikey")
```
Now lets try getting 3 posts with the tag wickerbeast and blacklisting rating:e
```python
print(client.posts.search("wickerbeast", "rating:e", 3))
```
[For full documentation click here](python/README.md)Todo:
Post management