Skip to main content

6 posts tagged with "opencollective"

View All Tags

March 2025 Update

· 2 min read
Brian Pepple
Founder of the Metron Project / Code Monkey

Monthly Statistics

During March the Metron Project added the following to its database:

  • Users: 55
  • Issues: 4,564
  • Creators: 1,686
  • Characters: 1,470

Thanks to everyone that contributed!

Rate Limiting

On March 10th, the API rate limit for the site was modified by adding another limit of 10,000 requests per day to the existing limit of 30 requests per minute. Most users shouldn't see any change, but this will allow the site to better manage a sudden influx of new users like what happened when Comic Vine went down last fall.

Recent Work

Finished working on an internal tool that uses Metron's POST API to add series to the database, and have chosen a handful of users to give the appropriate permissions needed to run it. With any luck, this should free up some of my time so that I can spend more time working on the site's code.

One side effect of allowing some users to use the POST API is that I needed to disable the ability to create creators from the issue form. This is something I had already been thinking about doing, since it had created a fairly annoying amount of extra work on my end to remove the duplicate entries that had been created in error.

OpenCollective

We've recently set up an account at Open Collective if you wish to help defray the server costs and help with increasing future server capacity. Any help would be greatly appreciated.

Anyway, that's all I got for this month. Take care!

February 2025 Update

· 4 min read
Brian Pepple
Founder of the Metron Project / Code Monkey

Monthly Statistics

During February the Metron Project added the following to its database:

  • Users: 51
  • Issues: 2,674
  • Creators: 526
  • Characters: 879

Thanks to everyone that contributed!

Recent Work

One of my goals for 2025 was to make the project less dependent on me, and for most of this month I've been working on the tooling to allowing some users to use the POST API to add comics to the database. This will allow other folks to handle requests to add series to Metron. With luck, I should finish next month, and I'll start looking at what users to promote.

Comic Book Reading Lists

Recently, I've been looking at Comic Book Reading Lists since a bug report was opened to add support for generating them. Currently, users use CBL's that are imported into their comic server of choice (Kavita, Codex, etc.), which seems non-optimal primarily since, in essence, it's another database of information. Now, this makes sense, since for a long time the only source of usable data via an API was Comic Vine, which hasn't had a developer presence in years, and having a new feature added to their site is extremely unlikely.

I think a better solution would be for the other databases that offer an API (GCD & Metron) to have the option for users to create reading lists (similar to MovieDB) and have that data available either by generating a file or through an API call. Now, to do this we would need to work with the comic server developers to determine exactly what data they would need, though it would probably look similar to this:

{
  "arc": {
    "name": "Foo Bar Wars"
  }
  "issues": {
    "issue": {
      "id": {
      "cv_id": 9999
      "metron": 5678
      "gcd": 9856
      }
      "index": 0
    }
    "issue": {
      "id": {
      "cv_id": 12345
      "metron": 9999
      "gcd": 123
      }
      "index": 1
    }
  }
}

The current standard (CBL) and the recent json-cbl-standard contains a look of information that I can't see a comic server needing, primarily all the series-level info which the comic servers should already have in their databases. Of course, I'd love to hear from any developer in this space to verify that.

Once the basic functionality was added, importing any existing CBL into GCD or Metron should be fairly trivial, since Metron links other sites issue id's (GCD would be able to use Metron's API to link since they don't track this information).

Anyway, those are some of my quick thoughts on what the future of Comic Book Reading Lists could look like, and if anyone has interest in working on this potential future project, contact me on GitHub or Matrix.

Rate Limiting

One thing I've been debating is whether to modify our Rate Limiting policy. The primary reason for this is there are a lot of user that hammer the API for 24+ hours straight for days on end, and I'm contemplating adding a total number of API hits per day (maybe something like 10,000) in addition to the 30/hour to ease the server load.

Now doing this will make it a bit harder implement to write software for the API since the developer will need to track the API rate between sessions, but there are libraries like pyrate-limiter which use a SQLite or Redis backend to make this easier to implement.

Anyway, this is something I'm just mulling over and if you want to weigh-in you can on Matrix or in a GitHub Discussion.

OpenCollective

We've recently set up an account at Open Collective if you wish to help defray the server costs and help with increasing future server capacity. Any help would be greatly appreciated.

Anyway, that's all I got for this month. Take care!

January 2025 Update

· 2 min read
Brian Pepple
Founder of the Metron Project / Code Monkey

Monthly Statistics

During January the Metron Project added the following to its database:

  • Users: 52
  • Issues: 1,038
  • Creators: 326
  • Characters: 326

Thanks to everyone that contributed!

Grand Comics Database (GCD) IDs

Recently support for GCD ID support was added and currently about 92% of the issues on the site has had them added.

Alternative / Legacy Numbering

Recently, Metron added a new field to track alternative / legacy numbering, which are used primarily with DC & Marvel comics with their long-running characters.

In addition, I've also made changes to the filter so that issue numbers will be not case-sensitive when searched, which will improve matching for issue like The Amazing Spider-Man (2022) #65.DEATHS.

I'm planning to add a new param to the API that will allow you to search the number and alternative number fields at the same time, but there isn't an ETA when that will be added.

URL Redirects

Recently, support for ID URL Redirects was added, so if you know the Metron ID number for an issue it will redirect to the correct page. For example, https://metron.cloud/issue/133777/ will redirect you to the detail page for The Amazing Spider-Man (2022) #66.

Digital Releases

Recently a decision was made not to include digital releases that are 5 pages or less, like the Marvel Legacy Primer Pages. If you have questions whether a release should be added or not, you can ask on the Discussions Page or on Matrix.

International Support

In the effort to add support to the site for Non-US publishers, a country field has been added to the Publisher model, though only the United States will be valid. Modifying the price field for an issue to handle different currencies still needs to be done, but with some luck I'll find some time to do it this year.

OpenCollective

We've recently set up an account at Open Collective if you wish to help defray the server costs and help with increasing future server capacity.

Anyway, I think that covers most of the changes to the site that were made this month. Take care!

December 2024 Update

· 2 min read
Brian Pepple
Founder of the Metron Project / Code Monkey

Monthly Statistics

During December the Metron Project added the following to its database:

  • Users: 39
  • Issues: 823
  • Creators: 259
  • Characters: 413

2024 Annual Statistics

During 2024 the Metron Project added the following to its database:

  • Users: 566
  • Issues: 33,784
  • Creators: 2,283
  • Characters: 7,748

Thanks to everyone that contributed!

Grand Comics Database (GCD) ID Support

Recently support for GCD ID's was added to the site, and we've currently linked about 50% of the issues on the site, and with luck, should be completed in the next week or so.

Potential January Projects

I'm looking at some small projects to work on in January, and some potential ones I'm thinking about are:

  • Add Legacy Numbering field
  • Alternative Series Name field
  • Advanced Resources (Series, Issues, etc) Search
  • Resource ID URLS

Not sure which ones (or any) will be implemented, but I'm planning to dig into them a bit more in the next few weeks.

OpenCollective

We've recently set up an account at Open Collective if you wish to help defray the server costs and help with increasing future server capacity.

Anyway, that's all I got for now, hope everyone had a great holiday and are enjoying New Years day. Take Care!

Donating to the Project

· One min read
Brian Pepple
Founder of the Metron Project / Code Monkey

One of the items I've been asked about the most for the project, especially when Comic Vine goes down, is how to donate to the project to help the server keep up with the demands from our users. Well, I finally found some time yesterday to set up an account with Open Collective, so the project can now accept donations to help cover server and development costs. The page currently doesn't have much beyond some basic financial contributions options, but once I read through the documentation a bit more I'll look into filling it out a bit more.

I've been asked about adding a paid tiered for an increase in the API rate limit, but at this time I'm not planning on adding that, but who knows maybe sometime in the future if there is enough demand (and I have the time to implement it) it might be worthwhile to pursue.

If you have any questions or suggestions, don't hesitate to e-mail me or ping me on Matrix.

November 2024 Update

· 3 min read
Brian Pepple
Founder of the Metron Project / Code Monkey

Monthly Statistics

During November the Metron Project added the following to its database:

  • Users: 31
  • Issues: 2,210
  • Creators: 104
  • Characters: 426

Thanks to everyone that contributed!

Metron-Tagger v3.1.0

I released a new version of Metron-Tagger today that adds the ability to migrate data from a comic that contains a ComicInfo.xml.

The conversion from ComicInfo.xml -> MetronInfo.xml does have some caveats though:

  • Elements containing data with a comma in a delimited ComicInfo element. If for example, the Title element contained a story call "Babs: True Blue, I Love You" and it was originally written with a tool other than Metron-Tagger it will split the story into two element items: Babs: True Blue and I Love You .
  • Ratings. We map these to the enums used in MetronInfo, but it's not perfect since the ComicInfo documentation isn't terribly clear how it defines it values, so if you feel our mapping is incorrect please notify us and explain what it should be. Also, I've seen some users use non-valid values which obviously won't work.
  • Series Format. We've also done our best to map the series format, but this is even less defined the age rating since this is just a text element in the schema, and could be anything. We've used the values in Comic-Tagger to handle the conversion, but this isn't perfect.

To migrate your ComicInfo.xml to MetronInfo.xml without any online lookup would simply run:

metron-tagger --migrate /path/to/comics

If you wanted to tag you comics with data from the Metron Comic Book Database, and migrate the data from the existing ComicInfo.xml for those comics not on Metron, you would run:

metron-tagger -om --migrate /path/to/comics

If you run across any bugs or have suggestions for improvements, please file a Bug Report or Feature Request.

Server Upgrade

Finally got around to upgrading the server, and it was fairly uneventful. Yay! 🎉

OpenCollective

The main repository has finally reached 100 stars, and so most likely in the next week or two, I'll set up a funding option at Open Collective to help defray the server costs and help with increasing future server capacity.

Future

Now the bulk of the work is done with getting the MetronInfo out the door and some initial tooling to generate them, I'm planning to work on some low-hanging bugs with the website over the next month or so, before starting any large scale projects.

Anyway, that's all I've got for this month. Take care!